diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 8a7eac0a77b..920014619ed 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Clothing; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Clothing.Upgrades.Components; // Corvax-Wega-UpgradableClothing using Content.Shared.DirtVisuals; // Corvax-Wega-Dirtable using Content.Shared.Humanoid; using Content.Shared.Inventory; @@ -13,6 +14,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; +using Robust.Shared.Containers; // Corvax-Wega-UpgradableClothing using Robust.Shared.GameStates; // Corvax-Wega-ToggleClothing using Robust.Shared.Serialization.TypeSerializers.Implementations; using Robust.Shared.Utility; @@ -58,6 +60,7 @@ public sealed class ClientClothingSystem : ClothingSystem [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly DisplacementMapSystem _displacement = default!; [Dependency] private readonly SpriteSystem _sprite = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; // Corvax-Wega-UpgradableClothing public override void Initialize() { @@ -113,8 +116,7 @@ private void OnGetVisuals(EntityUid uid, ClothingComponent item, GetEquipmentVis List? layers = null; // Corvax-Wega-ToggleClothing-start var suffix = TryComp(uid, out var toggleable) - ? toggleable.ActiveSuffix - : string.Empty; + ? toggleable.ActiveSuffix : string.Empty; // Corvax-Wega-ToggleClothing-end // first attempt to get species specific data. @@ -161,6 +163,26 @@ private void OnGetVisuals(EntityUid uid, ClothingComponent item, GetEquipmentVis })); // Corvax-Wega-ToggleClothing-Edit-end } + + // Corvax-Wega-UpgradableClothing-start + if (TryComp(uid, out var upgradeable)) + { + foreach (var upgrade in GetCurrentUpgrades(uid, upgradeable)) + { + if (upgrade.Comp.EquippedState is not SpriteSpecifier.Rsi rsi) + continue; + + var layerData = new PrototypeLayerData + { + RsiPath = rsi.RsiPath.ToString(), + State = rsi.RsiState, + }; + + var key = $"upgrade-{upgrade.Owner}-{args.Slot}"; + args.Layers.Add((key, layerData)); + } + } + // Corvax-Wega-UpgradableClothing-end } /// @@ -450,6 +472,7 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot RaiseLocalEvent(equipment, new EquipmentVisualsUpdatedEvent(equipee, slot, revealedLayers), true); } + // Corvax-Wega-Add-start // Corvax-Wega-ToggleClothing-start private bool StateExists(EntityUid uid, string state, string? speciesId) { @@ -489,4 +512,19 @@ private void UpdateClothingVisuals(EntityUid uid) RenderEquipment(parent, uid, clothing.InSlot, inventory, clothingComponent: clothing); } // Corvax-Wega-ToggleClothing-end + + // Corvax-Wega-UpgradableClothing-start + private IEnumerable> GetCurrentUpgrades(EntityUid clothing, UpgradeableClothingComponent component) + { + if (!_container.TryGetContainer(clothing, component.UpgradesContainerId, out var container)) + yield break; + + foreach (var contained in container.ContainedEntities) + { + if (TryComp(contained, out var upgradeComp)) + yield return (contained, upgradeComp); + } + } + // Corvax-Wega-UpgradableClothing-end + // Corvax-Wega-Add-end } diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index a716ae7c953..f423b7a2196 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -80,6 +80,10 @@ + + diff --git a/Content.Client/_Wega/Achievements/AchievementEntry.xaml.cs b/Content.Client/_Wega/Achievements/AchievementEntry.xaml.cs new file mode 100644 index 00000000000..dc65c41688d --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementEntry.xaml.cs @@ -0,0 +1,48 @@ +using Content.Shared.Achievements; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client._Wega.Achievements; + +[GenerateTypedNameReferences] +public sealed partial class AchievementEntry : Button +{ + public AchievementEntry(AchievementPrototype prototype, bool isUnlocked, SpriteSystem sprite) + { + RobustXamlLoader.Load(this); + + var spriteSpecifier = prototype.AchievementIcon; + AchievementIcon.Texture = sprite.Frame0(spriteSpecifier); + + AchievementName.Text = Loc.GetString(prototype.Name); + + AchievementStatus.Text = isUnlocked + ? Loc.GetString("ui-achievements-unlocked") + : Loc.GetString("ui-achievements-locked"); + AchievementStatus.FontColorOverride = isUnlocked ? Color.Gold : Color.Gray; + + if (prototype.Description != null) + { + var description = Loc.GetString(prototype.Description); + AchievementDescription.SetMessage(description); + } + + Container.OnPressed += args => SetSelected(true); + } + + public void SetSelected(bool selected) + { + Container.Pressed = selected; + + if (selected) + { + Container.StyleClasses.Add("ButtonOpenBoth"); + } + else + { + Container.StyleClasses.Remove("ButtonOpenBoth"); + } + } +} diff --git a/Content.Client/_Wega/Achievements/AchievementNotification.xaml b/Content.Client/_Wega/Achievements/AchievementNotification.xaml new file mode 100644 index 00000000000..8f025b02642 --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementNotification.xaml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/_Wega/Achievements/AchievementNotification.xaml.cs b/Content.Client/_Wega/Achievements/AchievementNotification.xaml.cs new file mode 100644 index 00000000000..cef6fbe0094 --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementNotification.xaml.cs @@ -0,0 +1,25 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client._Wega.Achievements; + +[GenerateTypedNameReferences] +public sealed partial class AchievementNotification : PanelContainer +{ + public AchievementNotification() + { + RobustXamlLoader.Load(this); + } + + public void Show(string name, string description, Texture? icon) + { + NotificationName.Text = name; + NotificationDescription.SetMessage(description); + NotificationIcon.Texture = icon; + + NotificationRoot.Visible = true; + } +} diff --git a/Content.Client/_Wega/Achievements/AchievementsSystem.cs b/Content.Client/_Wega/Achievements/AchievementsSystem.cs new file mode 100644 index 00000000000..df23528945b --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementsSystem.cs @@ -0,0 +1,187 @@ +using System.Linq; +using Content.Client._Wega.Achievements; +using Content.Shared.Achievements; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Client.Player; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; + +namespace Content.Client.Achievements; + +public sealed class AchievementsSystem : SharedAchievementsSystem +{ + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IUserInterfaceManager _ui = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public IReadOnlyList UnlockedAchievements => _unlockedAchievements; + private List _unlockedAchievements = new(); + + public event Action? OnAchievementsUpdated; + public event Action? OnAchievementUnlocked; + + private Queue<(AchievementsEnum achievement, TimeSpan showTime)> _notificationQueue = new(); + private AchievementNotification? _currentNotification; + private TimeSpan _notificationStartTime; + private const float NOTIFICATION_DURATION = 5f; + private const float NOTIFICATION_SLIDE_TIME = 0.5f; + private bool _achievementsRequested = false; + + public override void Initialize() + { + base.Initialize(); + + SubscribeNetworkEvent(OnAchievementsResponse); + SubscribeNetworkEvent(OnAchievementUnlockedEvent); + } + + public override void FrameUpdate(float frameTime) + { + base.FrameUpdate(frameTime); + + if (!_achievementsRequested) + { + _achievementsRequested = true; + RaiseNetworkEvent(new RequestAchievementsEvent()); + } + + ProcessNotificationQueue(); + } + + public override List GetUnlockedAchievements() + => _unlockedAchievements; + + private void ProcessNotificationQueue() + { + var currentTime = _timing.RealTime; + + if (_currentNotification != null && + currentTime - _notificationStartTime > TimeSpan.FromSeconds(NOTIFICATION_DURATION)) + { + _ui.WindowRoot.RemoveChild(_currentNotification); + _currentNotification = null; + } + + if (_currentNotification == null && _notificationQueue.Count > 0) + { + var (achievement, showTime) = _notificationQueue.Dequeue(); + if (currentTime - showTime < TimeSpan.FromSeconds(30)) + { + ShowAchievementNotification(achievement); + } + } + } + + private void OnAchievementsResponse(ResponseAchievementsEvent ev) + { + _unlockedAchievements = ev.Achievements; + OnAchievementsUpdated?.Invoke(); + } + + private void OnAchievementUnlockedEvent(AchievementUnlockedEvent ev) + { + if (_playerManager.LocalEntity != null && + GetNetEntity(_playerManager.LocalEntity) == ev.User) + { + if (!_unlockedAchievements.Contains(ev.Achievement)) + { + _unlockedAchievements.Add(ev.Achievement); + + _notificationQueue.Enqueue((ev.Achievement, _timing.RealTime)); + + OnAchievementUnlocked?.Invoke(ev.Achievement); + OnAchievementsUpdated?.Invoke(); + } + } + } + + private void ShowAchievementNotification(AchievementsEnum achievement) + { + var prototype = _prototype.EnumeratePrototypes() + .FirstOrDefault(p => p.Key == achievement); + + if (prototype == null) + return; + + if (_currentNotification == null) + { + _currentNotification = new AchievementNotification(); + + _ui.WindowRoot.AddChild(_currentNotification); + + LayoutContainer.SetAnchorRight(_currentNotification, 1.0f); + LayoutContainer.SetAnchorBottom(_currentNotification, 1.0f); + LayoutContainer.SetMarginRight(_currentNotification, -20); + LayoutContainer.SetMarginBottom(_currentNotification, -20); + } + + var icon = _sprite.Frame0(prototype.AchievementIcon); + + var name = Loc.GetString(prototype.Name); + var description = prototype.Description != null + ? Loc.GetString(prototype.Description) + : string.Empty; + + _currentNotification.Show(name, description, icon); + _notificationStartTime = _timing.RealTime; + + PlayAchievementSound(); + + StartNotificationAnimation(_currentNotification); + } + + private void PlayAchievementSound() + { + if (_playerManager.LocalSession is not { } session) + return; + + var soundPath = new SoundPathSpecifier("/Audio/_Wega/Achievements/achievement_unlocked.ogg"); + _audio.PlayGlobal(soundPath, Filter.SinglePlayer(session), false, AudioParams.Default); + } + + private void StartNotificationAnimation(AchievementNotification notification) + { + var control = notification.NotificationRoot; + control.Modulate = Color.Transparent; + + var animation = new Animation + { + Length = TimeSpan.FromSeconds(NOTIFICATION_SLIDE_TIME), + AnimationTracks = + { + new AnimationTrackControlProperty + { + Property = nameof(Control.Modulate), + KeyFrames = + { + new AnimationTrackProperty.KeyFrame(Color.White, 0f), + } + } + } + }; + + control.PlayAnimation(animation, "achievement_notification_show"); + } + + public void RequestAchievements() + { + if (_playerManager.LocalSession?.UserId is not { } userId) + return; + + RaiseNetworkEvent(new RequestAchievementsEvent()); + } + + public bool HasAchievement(AchievementsEnum achievement) + { + return _unlockedAchievements.Contains(achievement); + } +} diff --git a/Content.Client/_Wega/Achievements/AchievementsWindow.xaml b/Content.Client/_Wega/Achievements/AchievementsWindow.xaml new file mode 100644 index 00000000000..cfe2de2a9ef --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementsWindow.xaml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/_Wega/Achievements/AchievementsWindow.xaml.cs b/Content.Client/_Wega/Achievements/AchievementsWindow.xaml.cs new file mode 100644 index 00000000000..e9db17aac4f --- /dev/null +++ b/Content.Client/_Wega/Achievements/AchievementsWindow.xaml.cs @@ -0,0 +1,113 @@ +using System.Linq; +using Content.Client.Achievements; +using Content.Client.UserInterface.Controls; +using Content.Shared.Achievements; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.Player; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; + +namespace Content.Client._Wega.Achievements; + +[GenerateTypedNameReferences] +public sealed partial class AchievementsWindow : FancyWindow +{ + [Dependency] private readonly IDependencyCollection _dependencies = default!; + [Dependency] private readonly IEntitySystemManager _sysMan = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private readonly AchievementsSystem _achievements; + private readonly SpriteSystem _spriteSystem; + + private readonly Dictionary _entries = new(); + private List _allAchievements = new(); + + public AchievementsWindow() + { + RobustXamlLoader.Load(this); + _dependencies.InjectDependencies(this); + _achievements = _sysMan.GetEntitySystem(); + _spriteSystem = _sysMan.GetEntitySystem(); + + _achievements.OnAchievementsUpdated += OnAchievementsUpdated; + + LoadAchievements(); + } + + private void LoadAchievements() + { + _allAchievements = _prototypeManager.EnumeratePrototypes().ToList(); + _achievements.RequestAchievements(); + + UpdateAchievements(new List(), _allAchievements); + } + + private void OnAchievementsUpdated() + { + var unlocked = _achievements.UnlockedAchievements.ToList(); + UpdateAchievements(unlocked, _allAchievements); + } + + public void UpdateAchievements(List unlockedAchievements, List allAchievements) + { + AchievementsList.RemoveAllChildren(); + _entries.Clear(); + + int total = allAchievements.Count; + int unlocked = unlockedAchievements.Count; + + ProgressLabel.Text = total > 0 ? $"{unlocked * 100 / total}%" : "0%"; + + var sortedAchievements = allAchievements + .OrderByDescending(a => unlockedAchievements.Contains(a.Key)) + .ThenBy(a => a.Key).ToList(); + + foreach (var achievementProto in sortedAchievements) + { + var isUnlocked = unlockedAchievements.Contains(achievementProto.Key); + + var entry = new AchievementEntry(achievementProto, isUnlocked, _spriteSystem); + AchievementsList.AddChild(entry); + + _entries[achievementProto.Key] = entry; + + entry.OnPressed += _ => + { + SelectAchievement(achievementProto, isUnlocked); + + foreach (var otherEntry in _entries.Values) + { + if (otherEntry != entry) + { + otherEntry.SetSelected(false); + } + } + + entry.SetSelected(true); + }; + } + + SelectedAchievementPanel.Visible = false; + } + + private void SelectAchievement(AchievementPrototype prototype, bool isUnlocked) + { + SelectedAchievementPanel.Visible = true; + + var spriteSpecifier = prototype.AchievementIcon; + SelectedIcon.Texture = _spriteSystem.Frame0(spriteSpecifier); + + SelectedName.Text = Loc.GetString(prototype.Name); + + if (prototype.Description != null) + { + var description = Loc.GetString(prototype.Description); + SelectedDescription.SetMessage(description); + } + + SelectedStatus.Text = isUnlocked + ? Loc.GetString("ui-achievements-unlocked") + : Loc.GetString("ui-achievements-locked"); + SelectedStatus.FontColorOverride = isUnlocked ? Color.Gold : Color.Gray; + } +} diff --git a/Content.Client/_Wega/GPS/UI/GpsBoundUserInterface.cs b/Content.Client/_Wega/GPS/UI/GpsBoundUserInterface.cs new file mode 100644 index 00000000000..0e5e9533717 --- /dev/null +++ b/Content.Client/_Wega/GPS/UI/GpsBoundUserInterface.cs @@ -0,0 +1,43 @@ +using Content.Shared.GPS; +using JetBrains.Annotations; +using Robust.Client.UserInterface; + +namespace Content.Client._Wega.GPS.UI; + +[UsedImplicitly] +public sealed class GpsBoundUserInterface : BoundUserInterface +{ + private GpsWindow? _window; + + public GpsBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } + + protected override void Open() + { + base.Open(); + + _window = this.CreateWindow(); + + _window.OnUpdateGpsName += name => + SendMessage(new UpdateGpsNameMessage(name)); + + _window.OnUpdateGpsDescription += desc => + SendMessage(new UpdateGpsDescriptionMessage(desc)); + + _window.OnToggleBroadcast += enabled => + SendMessage(new ToggleGpsBroadcastMessage(enabled)); + + _window.OnClose += Close; + _window.OpenCentered(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (_window == null) + return; + + if (state is GpsUpdateState updateState) + _window.UpdateState(updateState, EntMan); + } +} diff --git a/Content.Client/_Wega/GPS/UI/GpsNavMapControl.cs b/Content.Client/_Wega/GPS/UI/GpsNavMapControl.cs new file mode 100644 index 00000000000..252f6a38c1b --- /dev/null +++ b/Content.Client/_Wega/GPS/UI/GpsNavMapControl.cs @@ -0,0 +1,434 @@ +using System.Linq; +using System.Numerics; +using Content.Shared.Atmos; +using Content.Shared.GPS; +using Content.Shared.Mining.Components; +using Content.Shared.Pinpointer; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Shared.Map.Components; +using Robust.Shared.Timing; + +namespace Content.Client._Wega.GPS.UI; + +public sealed class GpsNavMapControl : Control +{ + [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + + private EntityUid? _mapUid; + private List _gpsDevices = new(); + private List _navBeacons = new(); + private List _lavaTiles = new(); + private Vector2 _currentPosition; + + private float _zoom = 1.0f; + private const float MinZoom = 0.5f; + private const float MaxZoom = 4.0f; + + private readonly Color _rockColor = new(102, 217, 102); + private readonly Color _wallColor = new(66, 135, 245); + private readonly Color _floorColor = new(30, 67, 30, 180); + private readonly Color _gpsColor = new(76, 201, 240); + private readonly Color _currentPosColor = new(255, 71, 87); + private readonly Color _gridColor = new(100, 100, 100, 50); + private readonly Color _lavaDefaultColor = new(255, 69, 0); + + private bool _showBeaconLabels = true; + private float _updateTimer; + private const float UpdateInterval = 2.0f; + + public event Action? OnZoomChanged; + public Action? OnMapClicked; + + public float Zoom + { + get => _zoom; + set + { + _zoom = MathHelper.Clamp(value, MinZoom, MaxZoom); + OnZoomChanged?.Invoke(_zoom); + } + } + + public bool ShowBeaconLabels + { + get => _showBeaconLabels; + set + { + _showBeaconLabels = value; + } + } + + public GpsNavMapControl() + { + IoCManager.InjectDependencies(this); + + RectClipContent = true; + HorizontalExpand = true; + VerticalExpand = true; + MouseFilter = MouseFilterMode.Stop; + } + + public void UpdateData( + EntityUid? mapUid, + Vector2 currentPosition, + List gpsDevices, + List navBeacons, + List lavaTiles) + { + _mapUid = mapUid; + _currentPosition = currentPosition; + _gpsDevices = gpsDevices; + _navBeacons = navBeacons; + _lavaTiles = lavaTiles; + } + + public void CenterOnPosition(Vector2 position) + { + _currentPosition = position; + } + + protected override void Draw(DrawingHandleScreen handle) + { + base.Draw(handle); + + var size = PixelSize; + if (size.X <= 0 || size.Y <= 0) + return; + + handle.DrawRect(new UIBox2(0, 0, size.X, size.Y), new Color(45, 35, 71, 200)); + + if (!_mapUid.HasValue || !_entityManager.TryGetComponent(_mapUid.Value, out NavMapComponent? navMap)) + { + DrawNoMapMessage(handle, size); + return; + } + + var center = size / 2; + + DrawGrid(handle, center, size); + DrawLavaTiles(handle, center); + DrawMapTiles(handle, navMap, center); + DrawGpsDevices(handle, center); + DrawNavBeacons(handle, center); + DrawCurrentPosition(handle, center); + } + + private void DrawNoMapMessage(DrawingHandleScreen handle, Vector2 size) + { + var font = new VectorFont(_resourceCache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 14); + var text = Loc.GetString("gps-ui-no-map-data"); + var textSize = handle.GetDimensions(font, text, 1.0f); + + var position = new Vector2(size.X / 2 - textSize.X / 2, size.Y / 2 - textSize.Y / 2); + handle.DrawString(font, position, text, Color.White); + } + + private void DrawGrid(DrawingHandleScreen handle, Vector2 center, Vector2 size) + { + float gridSize = 20.0f * Zoom; + var gridColor = _gridColor; + + for (float x = center.X % gridSize; x < size.X; x += gridSize) + { + handle.DrawLine(new Vector2(x, 0), new Vector2(x, size.Y), gridColor); + } + + for (float y = center.Y % gridSize; y < size.Y; y += gridSize) + { + handle.DrawLine(new Vector2(0, y), new Vector2(size.X, y), gridColor); + } + } + + private void DrawLavaTiles(DrawingHandleScreen handle, Vector2 center) + { + if (_lavaTiles.Count == 0) return; + + var scale = 4.0f * Zoom; + var tileSize = 1.0f * scale; + + foreach (var lava in _lavaTiles) + { + var screenPos = WorldToScreen( + new Vector2(lava.Coordinates.X, lava.Coordinates.Y), + center, + scale + ); + + var rect = new UIBox2( + screenPos.X - tileSize / 2, + screenPos.Y - tileSize / 2, + screenPos.X + tileSize / 2, + screenPos.Y + tileSize / 2 + ); + + var lavaColor = lava.Color != default ? lava.Color : _lavaDefaultColor; + var pulse = (float)Math.Sin(_updateTimer * 3) * 0.2f + 0.8f; + var animatedColor = lavaColor.WithAlpha(0.7f * pulse); + + handle.DrawRect(rect, animatedColor); + + if (Zoom > 1.5f) + { + handle.DrawRect(rect, lavaColor.WithAlpha(0.3f), false); + } + } + } + + private void DrawMapTiles(DrawingHandleScreen handle, NavMapComponent navMap, Vector2 center) + { + if (!_entityManager.TryGetComponent(_mapUid, out MapGridComponent? grid)) + return; + + var tileSize = grid.TileSize; + var scale = 4.0f * Zoom; + + foreach (var (_, chunk) in navMap.Chunks) + { + for (int i = 0; i < SharedNavMapSystem.ArraySize; i++) + { + var tileData = chunk.TileData[i]; + if ((SharedNavMapSystem.FloorMask & tileData) == 0) + continue; + + var relativeTile = SharedNavMapSystem.GetTileFromIndex(i); + var tileWorldPos = (chunk.Origin * SharedNavMapSystem.ChunkSize + relativeTile) * tileSize; + + var tilePos = new Vector2i((int)tileWorldPos.X, (int)tileWorldPos.Y); + var screenPos = WorldToScreen(tileWorldPos, center, scale); + + var tileScreenSize = tileSize * scale; + if (tileScreenSize > 1.0f) + { + var rect = new UIBox2( + screenPos.X - tileScreenSize / 2, + screenPos.Y - tileScreenSize / 2, + screenPos.X + tileScreenSize / 2, + screenPos.Y + tileScreenSize / 2 + ); + + handle.DrawRect(rect, _floorColor); + } + + if (Zoom > 1.0f) + { + DrawTileWalls(handle, tileData, screenPos, tileScreenSize, tilePos); + } + } + } + } + + private void DrawTileWalls(DrawingHandleScreen handle, int tileData, Vector2 screenPos, float tileSize, Vector2i tilePos) + { + if (tileSize < 2.0f) return; + + var wallSize = Math.Max(1.0f, tileSize * 0.15f); + + bool hasComponent = HasComponentAtTile(tilePos); + var wallColor = hasComponent ? _rockColor : _wallColor; + + if ((tileData & (1 << ((int)AtmosDirection.North + (int)NavMapChunkType.Wall))) != 0) + { + var wallRect = new UIBox2( + screenPos.X - tileSize / 2, + screenPos.Y - tileSize / 2, + screenPos.X + tileSize / 2, + screenPos.Y - tileSize / 2 + wallSize + ); + handle.DrawRect(wallRect, wallColor); + } + + if ((tileData & (1 << ((int)AtmosDirection.South + (int)NavMapChunkType.Wall))) != 0) + { + var wallRect = new UIBox2( + screenPos.X - tileSize / 2, + screenPos.Y + tileSize / 2 - wallSize, + screenPos.X + tileSize / 2, + screenPos.Y + tileSize / 2 + ); + handle.DrawRect(wallRect, wallColor); + } + + if ((tileData & (1 << ((int)AtmosDirection.East + (int)NavMapChunkType.Wall))) != 0) + { + var wallRect = new UIBox2( + screenPos.X + tileSize / 2 - wallSize, + screenPos.Y - tileSize / 2, + screenPos.X + tileSize / 2, + screenPos.Y + tileSize / 2 + ); + handle.DrawRect(wallRect, wallColor); + } + + if ((tileData & (1 << ((int)AtmosDirection.West + (int)NavMapChunkType.Wall))) != 0) + { + var wallRect = new UIBox2( + screenPos.X - tileSize / 2, + screenPos.Y - tileSize / 2, + screenPos.X - tileSize / 2 + wallSize, + screenPos.Y + tileSize / 2 + ); + handle.DrawRect(wallRect, wallColor); + } + } + + private void DrawGpsDevices(DrawingHandleScreen handle, Vector2 center) + { + if (_gpsDevices.Count == 0) return; + + var scale = 4.0f * Zoom; + var markerSize = Math.Max(2.0f, 6.0f * Zoom); + + foreach (var device in _gpsDevices) + { + var screenPos = WorldToScreen( + new Vector2(device.Coordinates.X, device.Coordinates.Y), + center, + scale + ); + + handle.DrawCircle(screenPos, markerSize, _gpsColor); + + handle.DrawCircle(screenPos, markerSize + 1, Color.White.WithAlpha(100)); + + if (_showBeaconLabels && Zoom > 1.0f && !string.IsNullOrEmpty(device.Name)) + { + DrawLabel(handle, screenPos, device.Name, markerSize, _gpsColor); + } + } + } + + private void DrawNavBeacons(DrawingHandleScreen handle, Vector2 center) + { + var enabledBeacons = _navBeacons.Where(b => b.Enabled).ToList(); + if (enabledBeacons.Count == 0) return; + + var scale = 4.0f * Zoom; + var markerSize = Math.Max(2.0f, 5.0f * Zoom); + + foreach (var beacon in enabledBeacons) + { + var screenPos = WorldToScreen( + new Vector2(beacon.Coordinates.X, beacon.Coordinates.Y), + center, + scale + ); + + var beaconColor = beacon.Color; + + var rect = new UIBox2( + screenPos.X - markerSize, + screenPos.Y - markerSize, + screenPos.X + markerSize, + screenPos.Y + markerSize + ); + handle.DrawRect(rect, beaconColor); + + handle.DrawRect(rect, Color.White.WithAlpha(100)); + + if (_showBeaconLabels && !string.IsNullOrEmpty(beacon.Name)) + { + DrawLabel(handle, screenPos, beacon.Name, markerSize, beaconColor); + } + } + } + + private void DrawLabel(DrawingHandleScreen handle, Vector2 screenPos, string text, float markerSize, Color backgroundColor) + { + var fontSize = (int)Math.Clamp(10 * Zoom, 8, 14); + var font = new VectorFont(_resourceCache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), fontSize); + var textSize = handle.GetDimensions(font, text, 1.0f); + + var labelRect = new UIBox2( + screenPos.X - textSize.X / 2 - 3, + screenPos.Y + markerSize + 2, + screenPos.X + textSize.X / 2 + 3, + screenPos.Y + markerSize + textSize.Y + 5 + ); + + handle.DrawRect(labelRect, backgroundColor.WithAlpha(200)); + + handle.DrawString( + font, + new Vector2(screenPos.X - textSize.X / 2, screenPos.Y + markerSize + 2), + text, + Color.White + ); + } + + private void DrawCurrentPosition(DrawingHandleScreen handle, Vector2 center) + { + var scale = 4.0f * Zoom; + var markerSize = Math.Max(3.0f, 8.0f * Zoom); + + var screenPos = WorldToScreen(_currentPosition, center, scale); + + var points = new Vector2[] + { + new(screenPos.X, screenPos.Y - markerSize), + new(screenPos.X - markerSize * 0.866f, screenPos.Y + markerSize * 0.5f), + new(screenPos.X + markerSize * 0.866f, screenPos.Y + markerSize * 0.5f) + }; + + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleFan, points, _currentPosColor); + handle.DrawPrimitives(DrawPrimitiveTopology.LineLoop, points, Color.White); + + if (Zoom > 1.5f) + { + DrawLabel(handle, screenPos, Loc.GetString("gps-ui-you"), markerSize, _currentPosColor); + } + } + + private Vector2 WorldToScreen(Vector2 worldPos, Vector2 center, float scale) + { + var offset = worldPos - _currentPosition; + var screenPos = center + offset * scale; + + screenPos.Y = center.Y - offset.Y * scale; + + return screenPos; + } + + private bool HasComponentAtTile(Vector2i tilePos) + { + if (_mapUid == null) + return false; + + var lookup = _entityManager.System(); + var tileAABB = new Box2(tilePos.X, tilePos.Y, tilePos.X, tilePos.Y); + + var flags = LookupFlags.Approximate | LookupFlags.Static | LookupFlags.StaticSundries; + var ents = lookup.GetEntitiesIntersecting(_mapUid.Value, tileAABB, flags); + foreach (var uid in ents) + { + // Why? Because it is the most specific + if (_entityManager.HasComponent(uid)) + return true; + } + + // If outside the loading area + if (ents.Count == 0) + return true; + + return false; + } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); + + _updateTimer += args.DeltaSeconds; + if (_updateTimer >= UpdateInterval) + _updateTimer -= UpdateInterval; + } + + protected override void MouseWheel(GUIMouseWheelEventArgs args) + { + base.MouseWheel(args); + + var zoomDelta = args.Delta.Y > 0 ? 0.1f : -0.1f; + Zoom += zoomDelta; + } +} diff --git a/Content.Client/_Wega/GPS/UI/GpsWindow.xaml b/Content.Client/_Wega/GPS/UI/GpsWindow.xaml new file mode 100644 index 00000000000..f28915a274b --- /dev/null +++ b/Content.Client/_Wega/GPS/UI/GpsWindow.xaml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [DataField(required: true), AutoNetworkedField] public DamageSpecifier Damage = default!; + + // Corvax-Wega-Lavaland-start + [DataField] + public EntityWhitelist Blacklist = new(); + // Corvax-Wega-Lavaland-end } diff --git a/Content.Shared/Trigger/Systems/DamageOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/DamageOnTriggerSystem.cs index d021eed80d6..707cdb4786f 100644 --- a/Content.Shared/Trigger/Systems/DamageOnTriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/DamageOnTriggerSystem.cs @@ -1,14 +1,21 @@ using Content.Shared.Damage; using Content.Shared.Trigger.Components.Effects; +using Content.Shared.Whitelist; // Corvax-Wega-Lavaland namespace Content.Shared.Trigger.Systems; public sealed class DamageOnTriggerSystem : XOnTriggerSystem { [Dependency] private readonly Damage.Systems.DamageableSystem _damageableSystem = default!; + [Dependency] private readonly EntityWhitelistSystem _entityWhitelist = default!; // Corvax-Wega-Lavaland protected override void OnTrigger(Entity ent, EntityUid target, ref TriggerEvent args) { + // Corvax-Wega-Lavaland-start + if (_entityWhitelist.IsWhitelistPass(ent.Comp.Blacklist, target)) + return; + // Corvax-Wega-Lavaland-end + var damage = new DamageSpecifier(ent.Comp.Damage); var ev = new BeforeDamageOnTriggerEvent(damage, target); RaiseLocalEvent(ent.Owner, ref ev); diff --git a/Content.Shared/Weapons/Marker/DamageMarkerComponent.cs b/Content.Shared/Weapons/Marker/DamageMarkerComponent.cs index 87ad6519d07..ebad791cf6c 100644 --- a/Content.Shared/Weapons/Marker/DamageMarkerComponent.cs +++ b/Content.Shared/Weapons/Marker/DamageMarkerComponent.cs @@ -27,6 +27,16 @@ public sealed partial class DamageMarkerComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("damage")] public DamageSpecifier Damage = new(); + // Corvax-Wega-Lavaland-start + [ViewVariables(VVAccess.ReadWrite), DataField] + public float DamageMultiplier = 2f; + + [ViewVariables(VVAccess.ReadWrite), DataField] + public bool Weakening; + + [ViewVariables(VVAccess.ReadWrite), DataField] + public float WeakeningModifier = 1f; + // Corvax-Wega-Lavaland-end /// /// Entity that marked this entity for a damage surplus. diff --git a/Content.Shared/Weapons/Marker/DamageMarkerOnCollideComponent.cs b/Content.Shared/Weapons/Marker/DamageMarkerOnCollideComponent.cs index e708dd7a2b5..8b307d5b985 100644 --- a/Content.Shared/Weapons/Marker/DamageMarkerOnCollideComponent.cs +++ b/Content.Shared/Weapons/Marker/DamageMarkerOnCollideComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Damage; +using Content.Shared.Weapons.Misc.Upgrades; // Corvax-Wega-Lavaland using Content.Shared.Whitelist; using Robust.Shared.GameStates; @@ -7,7 +8,7 @@ namespace Content.Shared.Weapons.Marker; /// /// Applies when colliding with an entity. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedDamageMarkerSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedDamageMarkerSystem), typeof(CrusherUpgradeEffectsSystem))] // Corvax-Wega-Lavaland-Edit public sealed partial class DamageMarkerOnCollideComponent : Component { [DataField("whitelist"), AutoNetworkedField] @@ -27,4 +28,12 @@ public sealed partial class DamageMarkerOnCollideComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("amount"), AutoNetworkedField] public int Amount = 1; + + // Corvax-Wega-Lavaland-Add-start + [ViewVariables(VVAccess.ReadWrite), DataField] + public bool Weakening; + + [ViewVariables(VVAccess.ReadWrite), DataField] + public float WeakeningModifier = 1f; + // Corvax-Wega-Lavaland-Add-end } diff --git a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs index b236824815f..48ab783ea19 100644 --- a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs +++ b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs @@ -22,23 +22,25 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnMarkerCollide); - SubscribeLocalEvent(OnMarkerAttacked); + // SubscribeLocalEvent(OnMarkerAttacked); // Corvax-Wega-Lavaland-Edit } - private void OnMarkerAttacked(EntityUid uid, DamageMarkerComponent component, AttackedEvent args) - { - if (component.Marker != args.Used) - return; + // Corvax-Wega-Lavaland-Edit-start + // private void OnMarkerAttacked(EntityUid uid, DamageMarkerComponent component, AttackedEvent args) + // { + // if (component.Marker != args.Used) + // return; - args.BonusDamage += component.Damage; - RemCompDeferred(uid); - _audio.PlayPredicted(component.Sound, uid, args.User); + // args.BonusDamage += component.Damage; + // RemCompDeferred(uid); + // _audio.PlayPredicted(component.Sound, uid, args.User); - if (TryComp(args.Used, out var leech)) - { - _damageable.TryChangeDamage(args.User, leech.Leech, true, false, origin: args.Used); - } - } + // if (TryComp(args.Used, out var leech)) + // { + // _damageable.TryChangeDamage(args.User, leech.Leech, true, false, origin: args.Used); + // } + // } + // Corvax-Wega-Lavaland-Edit-end public override void Update(float frameTime) { @@ -72,6 +74,13 @@ private void OnMarkerCollide(EntityUid uid, DamageMarkerOnCollideComponent compo marker.Damage = new DamageSpecifier(component.Damage); marker.Marker = projectile.Weapon.Value; marker.EndTime = _timing.CurTime + component.Duration; + // Corvax-Wega-Lavaland-start + if (component.Weakening) + { + marker.Weakening = true; + marker.WeakeningModifier = component.WeakeningModifier; + } + // Corvax-Wega-Lavaland-end component.Amount--; Dirty(args.OtherEntity, marker); @@ -88,3 +97,12 @@ private void OnMarkerCollide(EntityUid uid, DamageMarkerOnCollideComponent compo } } } + +// Corvax-Wega-Lavaland-start +[ByRefEvent] +public record struct MarkerAttackAttemptEvent(EntityUid User, EntityUid Target, + float DamageModifier = 1f, float HealModifier = 1f); + +[ByRefEvent] +public record struct AfterMarkerAttackedEvent(EntityUid User, EntityUid Target, DamageSpecifier Damage); +// Corvax-Wega-Lavaland-end diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 830059148e2..e79b26f89dd 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -248,59 +248,6 @@ public bool AttemptShoot(Entity gun) return result; } - // Corvax-Wega-Suicide-start - /// - /// Attempts to shoot directly at a target entity without requiring aim coordinates. - /// - public bool AttemptDirectShoot(EntityUid user, EntityUid gunUid, EntityUid target, GunComponent? gun = null) - { - if (!Resolve(gunUid, ref gun, false)) - return false; - - if (!_actionBlockerSystem.CanAttack(user)) - return false; - - var fromCoordinates = Transform(user).Coordinates; - - // Check if we can shoot - var prevention = new ShotAttemptedEvent - { - User = user, - Used = (gunUid, gun) - }; - RaiseLocalEvent(gunUid, ref prevention); - if (prevention.Cancelled) - return false; - - RaiseLocalEvent(user, ref prevention); - if (prevention.Cancelled) - return false; - - // Get ammo - var ev = new TakeAmmoEvent(1, new List<(EntityUid? Entity, IShootable Shootable)>(), fromCoordinates, user); - RaiseLocalEvent(gunUid, ev); - - if (ev.Ammo.Count <= 0) - { - // Empty gun - var emptyGunShotEvent = new OnEmptyGunShotEvent(user); - RaiseLocalEvent(gunUid, ref emptyGunShotEvent); - - Audio.PlayPredicted(gun.SoundEmpty, gunUid, user); - return false; - } - - // Shoot directly at the target - ShootDirect(gunUid, gun, target, ev.Ammo, user); - UpdateAmmoCount(gunUid); - - var shotEv = new GunShotEvent(user, ev.Ammo); - RaiseLocalEvent(gunUid, ref shotEv); - - return true; - } - // Corvax-Wega-Suicide-end - private bool AttemptShoot(EntityUid user, Entity gun) { if (gun.Comp.FireRateModified <= 0f || @@ -471,21 +418,6 @@ private bool AttemptShoot(EntityUid user, Entity gun) return true; } - // Corvax-Wega-Suicide-start - /// - /// Shoots directly at a target entity without requiring aim coordinates. - /// Used for executions and point-blank shots. - /// - protected virtual bool ShootDirect(EntityUid gunUid, GunComponent gun, EntityUid target, List<(EntityUid? Entity, IShootable Shootable)> ammo, EntityUid user) - { - var fromCoordinates = Transform(user).Coordinates; - var toCoordinates = Transform(target).Coordinates; - - Shoot((gunUid, gun), ammo, fromCoordinates, toCoordinates, out _, user); - return true; - } - // Corvax-Wega-Suicide-end - public void Shoot( Entity gun, EntityUid ammo, diff --git a/Content.Shared/Weapons/Ranged/Upgrades/Components/UpgradeableGunComponent.cs b/Content.Shared/Weapons/Ranged/Upgrades/Components/UpgradeableGunComponent.cs index ef79c9c3e0a..66ca706271b 100644 --- a/Content.Shared/Weapons/Ranged/Upgrades/Components/UpgradeableGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Upgrades/Components/UpgradeableGunComponent.cs @@ -1,6 +1,8 @@ +using Content.Shared.Tools; // Corvax-Wega-Lavaland using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; // Corvax-Wega-Lavaland namespace Content.Shared.Weapons.Ranged.Upgrades.Components; @@ -33,4 +35,9 @@ public sealed partial class UpgradeableGunComponent : Component /// [DataField] public int MaxUpgradeCount = 2; + + // Corvax-Wega-Lavaland-start + [DataField] + public ProtoId Tool = "Screwing"; + // Corvax-Wega-Lavaland-end } diff --git a/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs b/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs index fb9b4a782b0..6b8ecdba8e3 100644 --- a/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs +++ b/Content.Shared/Weapons/Ranged/Upgrades/GunUpgradeSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Tag; +using Content.Shared.Tools.Components; // Corvax-Wega-Lavaland +using Content.Shared.Tools.Systems; // Corvax-Wega-Lavaland using Content.Shared.Weapons.Ranged.Events; using Content.Shared.Weapons.Ranged.Systems; using Content.Shared.Weapons.Ranged.Upgrades.Components; @@ -24,6 +26,7 @@ public sealed class GunUpgradeSystem : EntitySystem [Dependency] private readonly SharedGunSystem _gun = default!; [Dependency] private readonly EntityWhitelistSystem _entityWhitelist = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedToolSystem _tool = default!; // Corvax-Wega-Lavaland /// public override void Initialize() @@ -31,6 +34,7 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnAfterInteractUsing); SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnInteractUsing); // Corvax-Wega-Lavaland SubscribeLocalEvent(RelayEvent); SubscribeLocalEvent(RelayEvent); @@ -38,6 +42,8 @@ public override void Initialize() SubscribeLocalEvent(OnFireRateRefresh); SubscribeLocalEvent(OnSpeedRefresh); SubscribeLocalEvent(OnDamageGunShot); + SubscribeLocalEvent(OnAoEGunShot); // Corvax-Wega-Lavaland + SubscribeLocalEvent(OnLifestealShot); // Corvax-Wega-Lavaland } private void RelayEvent(Entity ent, ref T args) where T : notnull @@ -92,6 +98,26 @@ private void OnAfterInteractUsing(Entity ent, ref After _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} inserted gun upgrade {ToPrettyString(args.Used)} into {ToPrettyString(ent.Owner)}."); } + // Corvax-Wega-Lavaland-start + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled || !_tool.HasQuality(args.Used, ent.Comp.Tool)) + return; + + _container.TryGetContainer(ent, ent.Comp.UpgradesContainerId, out var container); + if (container == null || container.ContainedEntities.Count == 0) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-gun-popup-no-upgrades"), ent, args.User); + return; + } + + var upgrade = container.ContainedEntities.Last(); + args.Handled = _container.Remove(upgrade, container); + if (TryComp(args.Used, out var tool)) + _tool.PlayToolSound(args.Used, tool, args.User); + } + // Corvax-Wega-Lavaland-end + private void OnFireRateRefresh(Entity ent, ref GunRefreshModifiersEvent args) { args.FireRate *= ent.Comp.Coefficient; @@ -111,6 +137,30 @@ private void OnDamageGunShot(Entity ent, ref GunShotE } } + // Corvax-Wega-Lavaland-start + private void OnAoEGunShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (ammo == null) + return; + + EnsureComp(ammo.Value); + } + } + + private void OnLifestealShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (ammo == null) + return; + + EnsureComp(ammo.Value).StealAmount = ent.Comp.StealAmount; + } + } + // Corvax-Wega-Lavaland-end + /// /// Gets the entities inside the gun's upgrade container. /// diff --git a/Content.Shared/_Wega/Achievements/AchievementEnums.cs b/Content.Shared/_Wega/Achievements/AchievementEnums.cs new file mode 100644 index 00000000000..6e98b1b0d78 --- /dev/null +++ b/Content.Shared/_Wega/Achievements/AchievementEnums.cs @@ -0,0 +1,26 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Achievements; + +/// +/// IMPORTANT: These values are stored in the database and are used for synchronization between the client and the server. +/// +/// Rules for adding new achievements: +/// 1. NEVER change the existing values (Default = 0, FirstBoss = 1, HierophantBoss = 2) +/// 2. Add new achievements to the end of the list with new values (3, 4, 5, ...) +/// 3. If you delete an achievement, simply leave it in the enum and mark it as obsolete [Obsolete] +/// 4. Changing the order breaks data synchronization between versions and causes loss of information about achievements +/// 5. If you're using this elsewhere, use the most distant values for you, such as 32, 64, and so on +/// +[Serializable, NetSerializable] +public enum AchievementsEnum : byte +{ + Default = 0, + FirstBoss = 1, + HierophantBoss = 2, + MinerBoss = 3, + LegionBoss = 4, + ColossusBoss = 5, + AshDrakeBoss = 6, + BubblegumBoss = 7, +} diff --git a/Content.Shared/_Wega/Achievements/AchievementEvents.cs b/Content.Shared/_Wega/Achievements/AchievementEvents.cs new file mode 100644 index 00000000000..3802a201c6f --- /dev/null +++ b/Content.Shared/_Wega/Achievements/AchievementEvents.cs @@ -0,0 +1,75 @@ +using System.Threading.Tasks; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.Achievements; + +[Serializable, NetSerializable] +public sealed class AchievementUnlockedEvent : EntityEventArgs +{ + public NetEntity User { get; } + public AchievementsEnum Achievement { get; } + + public AchievementUnlockedEvent(NetEntity user, AchievementsEnum achievement) + { + User = user; + Achievement = achievement; + } +} + +[Serializable, NetSerializable] +public sealed class RequestAchievementsEvent : EntityEventArgs +{ +} + +[Serializable, NetSerializable] +public sealed class ResponseAchievementsEvent : EntityEventArgs +{ + public List Achievements { get; } + + public ResponseAchievementsEvent(List achievements) + { + Achievements = achievements; + } +} + +// Server +public sealed class GetAchievementStateRequestEvent : EntityEventArgs +{ + public NetUserId UserId { get; } + public byte AchievementKey { get; } + public TaskCompletionSource CompletionSource { get; } + + public GetAchievementStateRequestEvent(NetUserId userId, byte achievementKey) + { + UserId = userId; + AchievementKey = achievementKey; + CompletionSource = new TaskCompletionSource(); + } +} + +public sealed class GetAchievementsRequestEvent : EntityEventArgs +{ + public NetUserId UserId { get; } + public TaskCompletionSource> CompletionSource { get; } + + public GetAchievementsRequestEvent(NetUserId userId) + { + UserId = userId; + CompletionSource = new TaskCompletionSource>(); + } +} + +public sealed class AddAchievementRequestEvent : EntityEventArgs +{ + public NetUserId UserId { get; } + public byte AchievementKey { get; } + public TaskCompletionSource CompletionSource { get; } + + public AddAchievementRequestEvent(NetUserId userId, byte achievementKey) + { + UserId = userId; + AchievementKey = achievementKey; + CompletionSource = new TaskCompletionSource(); + } +} diff --git a/Content.Shared/_Wega/Achievements/AchievementPrototype.cs b/Content.Shared/_Wega/Achievements/AchievementPrototype.cs new file mode 100644 index 00000000000..e3ef901a275 --- /dev/null +++ b/Content.Shared/_Wega/Achievements/AchievementPrototype.cs @@ -0,0 +1,23 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Achievements; + +[Prototype("achievement")] +public sealed partial class AchievementPrototype : IPrototype +{ + [IdDataField] + public string ID { get; private set; } = default!; + + [DataField("icon", required: true)] + public SpriteSpecifier AchievementIcon { get; private set; } = default!; + + [DataField(required: true)] + public LocId Name; + + [DataField] + public LocId? Description; + + [DataField] + public AchievementsEnum Key = AchievementsEnum.Default; +} diff --git a/Content.Shared/_Wega/Achievements/SharedAchievementsSystem.cs b/Content.Shared/_Wega/Achievements/SharedAchievementsSystem.cs new file mode 100644 index 00000000000..50659511b09 --- /dev/null +++ b/Content.Shared/_Wega/Achievements/SharedAchievementsSystem.cs @@ -0,0 +1,91 @@ +using System.Threading.Tasks; +using Robust.Shared.Network; +using Robust.Shared.Player; + +namespace Content.Shared.Achievements; + +public abstract partial class SharedAchievementsSystem : EntitySystem +{ + protected virtual NetUserId? GetUserId(EntityUid user) + { + if (!TryComp(user, out ActorComponent? actor)) + return null; + + return actor.PlayerSession.UserId; + } + + public virtual void QueueAchievement(EntityUid user, AchievementsEnum achievement) + { + _ = QueueAchievementInternal(user, achievement); + } + + private async Task QueueAchievementInternal(EntityUid user, AchievementsEnum achievement) + => await TryAddAchievement(user, achievement); + + public virtual async Task HasAchievement(EntityUid user, AchievementsEnum achievement) + { + var userId = GetUserId(user); + if (userId == null) + return false; + + return await HasAchievement(userId.Value, achievement); + } + + public virtual async Task HasAchievement(NetUserId userId, AchievementsEnum achievement) + { + var ev = new GetAchievementStateRequestEvent(userId, (byte)achievement); + RaiseLocalEvent(ev); + return await ev.CompletionSource.Task; + } + + public virtual async Task> GetAchievements(EntityUid user) + { + var userId = GetUserId(user); + if (userId == null) return new List(); + + return await GetAchievements(userId.Value); + } + + public virtual async Task> GetAchievements(NetUserId userId) + { + var ev = new GetAchievementsRequestEvent(userId); + RaiseLocalEvent(ev); + return await ev.CompletionSource.Task; + } + + public virtual async Task TryAddAchievement(EntityUid user, AchievementsEnum achievement) + { + var userId = GetUserId(user); + if (userId == null) + return false; + + var success = await TryAddAchievement(userId.Value, achievement); + if (success) + { + AchievementUnlocked(user, achievement); + } + + return success; + } + + public virtual async Task TryAddAchievement(NetUserId userId, AchievementsEnum achievement) + { + if (await HasAchievement(userId, achievement)) + return false; + + var ev = new AddAchievementRequestEvent(userId, (byte)achievement); + RaiseLocalEvent(ev); + return await ev.CompletionSource.Task; + } + + public virtual void AchievementUnlocked(EntityUid user, AchievementsEnum achievement) + { + var ev = new AchievementUnlockedEvent(GetNetEntity(user), achievement); + RaiseNetworkEvent(ev); + } + + public virtual List GetUnlockedAchievements() + { + return new List(); + } +} diff --git a/Content.Shared/_Wega/CCCVars/CCVars.cs b/Content.Shared/_Wega/CCCVars/CCVars.cs index 759ad714dec..7e0f24d3bdb 100644 --- a/Content.Shared/_Wega/CCCVars/CCVars.cs +++ b/Content.Shared/_Wega/CCCVars/CCVars.cs @@ -118,4 +118,22 @@ Ic Flavors /// public static readonly CVarDef NSFWPreferencesLength = CVarDef.Create("ic.nsfw_preferences_length", 1024, CVar.SERVER | CVar.REPLICATED); + + /* + Lavaland CVars + */ + public static readonly CVarDef LavalandEnabled = + CVarDef.Create("lavaland.enabled", true, CVar.SERVERONLY); + + public static readonly CVarDef LavalandMaxBuildings = + CVarDef.Create("lavaland.max_buildings", 128, CVar.SERVER | CVar.REPLICATED); + + public static readonly CVarDef LavalandBuildingsDistance = + CVarDef.Create("lavaland.buildings_distance", 50f, CVar.SERVER | CVar.REPLICATED); + + public static readonly CVarDef LavalandSpawnIntervalMin = + CVarDef.Create("lavaland.spawn_interval_min", 100f, CVar.SERVER | CVar.REPLICATED); + + public static readonly CVarDef LavalandSpawnIntervalMax = + CVarDef.Create("lavaland.spawn_interval_max", 600f, CVar.SERVER | CVar.REPLICATED); } diff --git a/Content.Shared/_Wega/Clothing/ClothingAshStormProtectionSystem.cs b/Content.Shared/_Wega/Clothing/ClothingAshStormProtectionSystem.cs new file mode 100644 index 00000000000..0c7da86d41e --- /dev/null +++ b/Content.Shared/_Wega/Clothing/ClothingAshStormProtectionSystem.cs @@ -0,0 +1,33 @@ +using Content.Shared.Clothing.Components; +using Content.Shared.Examine; +using Content.Shared.Inventory; +using Content.Shared.Lavaland.Events; + +namespace Content.Shared.Clothing; + +public sealed class ClothingAshStormProtectionSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnGetModifier); + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("clothing-ash-protection-examined", ("modifier", ent.Comp.Modifier * 100))); + } + + private void OnGetModifier(Entity ent, ref InventoryRelayedEvent args) + { + if (ent.Comp.Modifier <= 0f) + return; + + args.Args.Modifier += ent.Comp.Modifier; + } +} diff --git a/Content.Shared/_Wega/Clothing/Component/ClothingAshStormProtectionComponent.cs b/Content.Shared/_Wega/Clothing/Component/ClothingAshStormProtectionComponent.cs new file mode 100644 index 00000000000..1f120f61415 --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Component/ClothingAshStormProtectionComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingAshStormProtectionSystem))] +public sealed partial class ClothingAshStormProtectionComponent : Component +{ + [DataField] + public float Modifier = 0.5f; +} diff --git a/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeEffectsSystem.cs b/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeEffectsSystem.cs new file mode 100644 index 00000000000..194dfc45e92 --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeEffectsSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.Armor; +using Content.Shared.Damage; +using Content.Shared.Damage.Systems; + +namespace Content.Shared.Clothing.Upgrades; + +public sealed class ClothingUpgradeEffectsSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCoefficientQuery); + SubscribeLocalEvent(OnDamageModify); + } + + private void OnCoefficientQuery(Entity ent, ref CoefficientQueryEvent args) + { + foreach (var (key, value) in ent.Comp.Modifiers.Coefficients) + { + if (args.DamageModifiers.Coefficients.TryGetValue(key, out var existing)) + args.DamageModifiers.Coefficients[key] = existing * value; + else + args.DamageModifiers.Coefficients[key] = value; + } + } + + private void OnDamageModify(Entity ent, ref DamageModifyEvent args) + { + args.Damage = DamageSpecifier.ApplyModifierSet(args.Damage, ent.Comp.Modifiers); + } +} diff --git a/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeSystem.cs b/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeSystem.cs new file mode 100644 index 00000000000..96e01a1a0c0 --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Upgrades/ClothingUpgradeSystem.cs @@ -0,0 +1,174 @@ +using System.Linq; +using Content.Shared.Administration.Logs; +using Content.Shared.Armor; +using Content.Shared.Clothing.Upgrades.Components; +using Content.Shared.Damage.Systems; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Tag; +using Content.Shared.Verbs; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Upgrades; + +public sealed class ClothingUpgradeSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _entityWhitelist = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(RelayInventoryEvent, + after: [typeof(SharedArmorSystem)]); + SubscribeLocalEvent>(RelayInventoryEvent, + after: [typeof(SharedArmorSystem)]); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent>(OnGetVerb); + } + + private void RelayInventoryEvent(Entity ent, ref InventoryRelayedEvent args) where T : notnull + { + foreach (var upgrade in GetCurrentUpgrades(ent)) + RaiseLocalEvent(upgrade, ref args.Args); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + _container.EnsureContainer(ent, ent.Comp.UpgradesContainerId); + } + + private void OnAfterInteractUsing(Entity ent, ref AfterInteractUsingEvent args) + { + if (args.Handled || !args.CanReach || !TryComp(args.Used, out var upgradeComponent)) + return; + + if (GetCurrentUpgrades(ent).Count >= ent.Comp.MaxUpgradeCount) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-clothing-popup-upgrade-limit"), ent, args.User); + return; + } + + if (_entityWhitelist.IsWhitelistFail(ent.Comp.Whitelist, args.Used)) + return; + + if (GetCurrentUpgradeTags(ent).ToHashSet().IsSupersetOf(upgradeComponent.Tags)) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-clothing-popup-already-present"), ent, args.User); + return; + } + + _popup.PopupClient(Loc.GetString("clothing-upgrade-popup-insert", + ("upgrade", args.Used), ("clothing", ent.Owner)), args.User); + + args.Handled = _container.Insert(args.Used, _container.GetContainer(ent, ent.Comp.UpgradesContainerId)); + + _adminLog.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.User):player} inserted clothing upgrade {ToPrettyString(args.Used)} into {ToPrettyString(ent.Owner)}."); + + Dirty(ent.Owner, ent.Comp); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + var upgrades = GetCurrentUpgrades(ent); + if (upgrades.Count == 0) + return; + + using (args.PushGroup(nameof(UpgradeableClothingComponent))) + { + args.PushMarkup(Loc.GetString("clothing-upgrade-examine-header")); + + foreach (var upgrade in upgrades) + { + args.PushMarkup(Loc.GetString(upgrade.Comp.ExamineText)); + } + } + } + + private void OnGetVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || !args.CanComplexInteract) + return; + + var upgrades = GetCurrentUpgrades(ent); + if (upgrades.Count == 0) + return; + + var user = args.User; + foreach (var upgrade in upgrades) + { + var upgradeEntity = upgrade.Owner; + var name = MetaData(upgradeEntity).EntityName; + + var v = new Verb + { + Priority = 1, + Category = VerbCategory.Eject, + Text = name, + Impact = LogImpact.Low, + DoContactInteraction = true, + Act = () => + { + RemoveUpgrade(ent, upgradeEntity, user); + } + }; + + args.Verbs.Add(v); + } + } + + private void RemoveUpgrade(Entity ent, EntityUid upgrade, EntityUid user) + { + if (!_container.TryGetContainer(ent, ent.Comp.UpgradesContainerId, out var container)) + return; + + if (_container.Remove(upgrade, container)) + { + _popup.PopupPredicted(Loc.GetString("clothing-upgrade-popup-remove", ("upgrade", upgrade)), ent, user); + _adminLog.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(user):player} removed clothing upgrade {ToPrettyString(upgrade)} from {ToPrettyString(ent.Owner)}."); + + _hands.TryPickupAnyHand(user, upgrade); + + Dirty(ent.Owner, ent.Comp); + } + } + + public HashSet> GetCurrentUpgrades(Entity ent) + { + if (!_container.TryGetContainer(ent, ent.Comp.UpgradesContainerId, out var container)) + return new HashSet>(); + + var upgrades = new HashSet>(); + foreach (var contained in container.ContainedEntities) + { + if (TryComp(contained, out var upgradeComp)) + upgrades.Add((contained, upgradeComp)); + } + + return upgrades; + } + + public IEnumerable> GetCurrentUpgradeTags(Entity ent) + { + foreach (var upgrade in GetCurrentUpgrades(ent)) + { + foreach (var tag in upgrade.Comp.Tags) + yield return tag; + } + } +} diff --git a/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingAccessoriesProtectionComponent.cs b/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingAccessoriesProtectionComponent.cs new file mode 100644 index 00000000000..fb5e82b80de --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingAccessoriesProtectionComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Damage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingUpgradeEffectsSystem))] +public sealed partial class ClothingAccessoriesProtectionComponent : Component +{ + [DataField] + public DamageModifierSet Modifiers = new(); +} diff --git a/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingUpgradeComponent.cs b/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingUpgradeComponent.cs new file mode 100644 index 00000000000..753b00ddce7 --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Upgrades/Components/ClothingUpgradeComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Tag; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Clothing.Upgrades.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingUpgradeSystem))] +public sealed partial class ClothingUpgradeComponent : Component +{ + [DataField] + public List> Tags = new(); + + [DataField] + public LocId ExamineText; + + [DataField("sprite")] + public SpriteSpecifier? EquippedState; +} diff --git a/Content.Shared/_Wega/Clothing/Upgrades/Components/UpgradeableClothingComponent.cs b/Content.Shared/_Wega/Clothing/Upgrades/Components/UpgradeableClothingComponent.cs new file mode 100644 index 00000000000..50a148b32ad --- /dev/null +++ b/Content.Shared/_Wega/Clothing/Upgrades/Components/UpgradeableClothingComponent.cs @@ -0,0 +1,17 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Upgrades.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingUpgradeSystem))] +public sealed partial class UpgradeableClothingComponent : Component +{ + [DataField] + public string UpgradesContainerId = "clothing_upgrades"; + + [DataField] + public EntityWhitelist Whitelist = new(); + + [DataField] + public int MaxUpgradeCount = 3; +} diff --git a/Content.Shared/_Wega/Damage/Components/IncreasedDamageComponent.cs b/Content.Shared/_Wega/Damage/Components/IncreasedDamageComponent.cs new file mode 100644 index 00000000000..ca27298050a --- /dev/null +++ b/Content.Shared/_Wega/Damage/Components/IncreasedDamageComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Damage.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class IncreasedDamageComponent : Component +{ + [DataField] + public float DamageModifier = 0.1f; + + [DataField] + public TimeSpan ActiveInterval = TimeSpan.FromSeconds(2); + + [ViewVariables] + public TimeSpan EndTime; +} diff --git a/Content.Shared/_Wega/Damage/Systems/IncreasedDamageSystem.cs b/Content.Shared/_Wega/Damage/Systems/IncreasedDamageSystem.cs new file mode 100644 index 00000000000..2947b4eefa3 --- /dev/null +++ b/Content.Shared/_Wega/Damage/Systems/IncreasedDamageSystem.cs @@ -0,0 +1,45 @@ +using Content.Shared.Damage.Components; +using Robust.Shared.Timing; + +namespace Content.Shared.Damage.Systems; + +public sealed class IncreasedDamageSystem : EntitySystem +{ + [Dependency] private readonly DamageableSystem _damage = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnDamageChanged); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var increased)) + { + if (_timing.CurTime < increased.EndTime) + continue; + + RemCompDeferred(uid); + } + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.EndTime = _timing.CurTime + ent.Comp.ActiveInterval; + } + + private void OnDamageChanged(Entity ent, ref DamageChangedEvent args) + { + if (!args.DamageIncreased || args.DamageDelta == null) + return; + + _damage.TryChangeDamage(ent.Owner, args.DamageDelta * ent.Comp.DamageModifier, true); + } +} diff --git a/Content.Shared/_Wega/Dirt/Components/DirtableComponent.cs b/Content.Shared/_Wega/Dirt/Components/DirtableComponent.cs index 30974c74417..7cc90737afd 100644 --- a/Content.Shared/_Wega/Dirt/Components/DirtableComponent.cs +++ b/Content.Shared/_Wega/Dirt/Components/DirtableComponent.cs @@ -22,10 +22,10 @@ public sealed partial class DirtableComponent : Component [DataField("equippedDirtState")] public string EquippedDirtState { get; set; } = "equipped-jumpsuit"; - [ViewVariables] + [DataField, ViewVariables(VVAccess.ReadOnly)] public FixedPoint2 CurrentDirtLevel { get; set; } - [ViewVariables] + [DataField, ViewVariables(VVAccess.ReadOnly)] public Color DirtColor { get; set; } = Color.White; [ViewVariables] diff --git a/Content.Shared/_Wega/Dirt/SharedDirtSystem.cs b/Content.Shared/_Wega/Dirt/SharedDirtSystem.cs index 40a9657e898..57b1e0519b4 100644 --- a/Content.Shared/_Wega/Dirt/SharedDirtSystem.cs +++ b/Content.Shared/_Wega/Dirt/SharedDirtSystem.cs @@ -30,11 +30,15 @@ public sealed class SharedDirtSystem : EntitySystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnFolded); SubscribeLocalEvent(OnExamined); } + private void OnInit(EntityUid uid, DirtableComponent comp, ref ComponentInit args) + => Dirty(uid, comp); + private void OnGetState(EntityUid uid, DirtableComponent comp, ref ComponentGetState args) { args.State = new DirtableComponentState( diff --git a/Content.Shared/_Wega/EntityEffects/Effects/ChemLegionCoreStabilizeEffect.cs b/Content.Shared/_Wega/EntityEffects/Effects/ChemLegionCoreStabilizeEffect.cs new file mode 100644 index 00000000000..3ec816badfb --- /dev/null +++ b/Content.Shared/_Wega/EntityEffects/Effects/ChemLegionCoreStabilizeEffect.cs @@ -0,0 +1,23 @@ +using Content.Shared.Lavaland.Components; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityEffects.Effects; + +public sealed partial class ChemLegionCoreStabilizeEffectSystem : EntityEffectSystem +{ + protected override void Effect(Entity entity, ref EntityEffectEvent args) + { + if (entity.Comp.AlwaysActive || !entity.Comp.Active) + return; + + entity.Comp.AlwaysActive = true; + Dirty(entity); + } +} + +/// +public sealed partial class ChemLegionCoreStabilize : EntityEffectBase +{ + public override string EntityEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-legion-core-stabilize"); +} diff --git a/Content.Shared/_Wega/EntityEffects/Effects/DamageEntityEffect.cs b/Content.Shared/_Wega/EntityEffects/Effects/DamageEntityEffect.cs index 2c56749fc3f..cb6c0501bf4 100644 --- a/Content.Shared/_Wega/EntityEffects/Effects/DamageEntityEffect.cs +++ b/Content.Shared/_Wega/EntityEffects/Effects/DamageEntityEffect.cs @@ -44,7 +44,6 @@ public sealed partial class EntityDamage : EntityEffectBase public override string EntityEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-damage-if-component", - ("chance", Probability), ("damage", Amount), ("type", DamageType), ("component", RequiredComponent)); diff --git a/Content.Shared/_Wega/GPS/Components/HandheldGpsUiComponent.cs b/Content.Shared/_Wega/GPS/Components/HandheldGpsUiComponent.cs new file mode 100644 index 00000000000..4fea691eace --- /dev/null +++ b/Content.Shared/_Wega/GPS/Components/HandheldGpsUiComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.GPS.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class HandheldGpsUiComponent : Component +{ + [DataField] + public bool BroadcastEnabled = true; +} diff --git a/Content.Shared/_Wega/GPS/UI/GpsUI.cs b/Content.Shared/_Wega/GPS/UI/GpsUI.cs new file mode 100644 index 00000000000..0704cbb8967 --- /dev/null +++ b/Content.Shared/_Wega/GPS/UI/GpsUI.cs @@ -0,0 +1,144 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.GPS; + +[Serializable, NetSerializable] +public enum GpsUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class GpsUpdateState : BoundUserInterfaceState +{ + public NetEntity? MapUid { get; } + public string CurrentGpsName { get; } + public string CurrentGpsDesc { get; } + public bool BroadcastStatus { get; } + public (int X, int Y) CurrentCoordinates { get; } + public List OtherGpsDevices { get; } + public List NavBeacons { get; } + public List LavaTiles { get; } + + public GpsUpdateState( + NetEntity? mapUid, + string currentGpsName, + string currentGpsDesc, + bool broadcastStatus, + (int X, int Y) currentCoordinates, + List otherGpsDevices, + List navBeacons, + List lavaTiles) + { + MapUid = mapUid; + CurrentGpsName = currentGpsName; + CurrentGpsDesc = currentGpsDesc; + BroadcastStatus = broadcastStatus; + CurrentCoordinates = currentCoordinates; + OtherGpsDevices = otherGpsDevices; + NavBeacons = navBeacons; + LavaTiles = lavaTiles; + } +} + +[Serializable, NetSerializable] +public sealed class UpdateGpsNameMessage : BoundUserInterfaceMessage +{ + public string NewName { get; } + + public UpdateGpsNameMessage(string newName) + { + NewName = newName; + } +} + +[Serializable, NetSerializable] +public sealed class UpdateGpsDescriptionMessage : BoundUserInterfaceMessage +{ + public string NewDescription { get; } + + public UpdateGpsDescriptionMessage(string newDescription) + { + NewDescription = newDescription; + } +} + +[Serializable, NetSerializable] +public sealed class ToggleGpsBroadcastMessage : BoundUserInterfaceMessage +{ + public bool Enabled { get; } + + public ToggleGpsBroadcastMessage(bool enabled) + { + Enabled = enabled; + } +} + +[Serializable, NetSerializable] +public sealed class GpsDeviceInfo +{ + public NetEntity EntityUid { get; } + public string Name { get; } + public (int X, int Y) Coordinates { get; } + public float Distance { get; } + public string Description { get; } + + public GpsDeviceInfo( + NetEntity entityUid, + string name, + (int X, int Y) coordinates, + float distance, + string description) + { + EntityUid = entityUid; + Name = name; + Coordinates = coordinates; + Distance = distance; + Description = description; + } +} + +[Serializable, NetSerializable] +public sealed class NavBeaconInfo +{ + public string Name { get; } + public string Desc { get; } + public (int X, int Y) Coordinates { get; } + public float Distance { get; } + public Color Color { get; } + public bool Enabled { get; } + + public NavBeaconInfo( + string name, + string desc, + (int X, int Y) coordinates, + float distance, + Color color, + bool enabled) + { + Name = name; + Desc = desc; + Coordinates = coordinates; + Distance = distance; + Color = color; + Enabled = enabled; + } +} + +[Serializable, NetSerializable] +public sealed class LavaTileInfo +{ + public (int X, int Y) Coordinates { get; } + public Color Color { get; } + public float Distance { get; } + + public LavaTileInfo( + (int X, int Y) coordinates, + Color color, + float distance) + { + Coordinates = coordinates; + Color = color; + Distance = distance; + } +} diff --git a/Content.Shared/_Wega/Implants/SharedInternalStorageSystem.cs b/Content.Shared/_Wega/Implants/SharedInternalStorageSystem.cs index c00a89e635e..154c4f57bf8 100644 --- a/Content.Shared/_Wega/Implants/SharedInternalStorageSystem.cs +++ b/Content.Shared/_Wega/Implants/SharedInternalStorageSystem.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Implants; -public sealed class SharedInternalStorageSystem : EntitySystem +public abstract class SharedInternalStorageSystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _action = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -24,8 +24,6 @@ public sealed class SharedInternalStorageSystem : EntitySystem public override void Initialize() { - base.Initialize(); - SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnToothImplantAction); @@ -70,7 +68,7 @@ private void OnToothImplantAction(Entity ent, ref Toot Del(pill); _popup.PopupClient(Loc.GetString("internal-storage-eat-pill"), ent, ent); - _audio.PlayPredicted(new SoundPathSpecifier("/Audio/Items/pill.ogg"), ent, ent); + _audio.PlayPvs(new SoundPathSpecifier("/Audio/Items/pill.ogg"), ent); args.Handled = true; } diff --git a/Content.Shared/_Wega/Interaction/SpawnOnDespawnComponent.cs b/Content.Shared/_Wega/Interaction/SpawnOnDespawnComponent.cs new file mode 100644 index 00000000000..19e39cfba9c --- /dev/null +++ b/Content.Shared/_Wega/Interaction/SpawnOnDespawnComponent.cs @@ -0,0 +1,15 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Interaction.Components +{ + [RegisterComponent, NetworkedComponent] + public sealed partial class SpawnOnDeleteComponent : Component + { + /// + /// Entity prototype to spawn. + /// + [DataField(required: true)] + public EntProtoId Prototype = string.Empty; + } +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/DragonBloodComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/DragonBloodComponent.cs new file mode 100644 index 00000000000..d41b05f23c3 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/DragonBloodComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Polymorph; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class DragonBloodComponent : Component +{ + [DataField] + public ProtoId Skeleton = "SkeletonPolymorph"; + + [DataField] + public EntProtoId LowerDrake = "BecomeToDrakeAction"; + + [DataField] + public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg"); +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/HierophantWeaponComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/HierophantWeaponComponent.cs new file mode 100644 index 00000000000..0d5acb29640 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/HierophantWeaponComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class HierophantClubComponent : Component +{ + [DataField] + public EntProtoId ChaserPrototype = "MobHierophantChaser"; + + [DataField] + public EntProtoId DamageTilePrototype = "EffectHierophantSquare"; + + [DataField] + public int MaxChasers = 2; + + [DataField] + public int CrossLength = 4; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/LavaStaffComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/LavaStaffComponent.cs new file mode 100644 index 00000000000..a83276a35fc --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/LavaStaffComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Maps; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class LavaStaffComponent : Component +{ + [DataField] + public EntProtoId LavaEntity = "FloorLavaEntity"; + + [DataField] + public ProtoId BasaltTile = "FloorBasalt"; + + [DataField] + public SoundSpecifier? UseSound; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/LinkedCubeComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/LinkedCubeComponent.cs new file mode 100644 index 00000000000..03cabeb2a7f --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/LinkedCubeComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class LinkedCubeComponent : Component +{ + [DataField(required: true)] + public EntProtoId PairPrototype = default!; + + [DataField] + public float MinTeleportDistance = 4f; + + [DataField] + public EntityUid? LinkedCube; + + [DataField] + public bool IsPrimary = false; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/RodOfAsclepiusComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/RodOfAsclepiusComponent.cs new file mode 100644 index 00000000000..5f165b30498 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/RodOfAsclepiusComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class RodOfAsclepiusComponent : Component +{ + [DataField] + public EntityUid? BoundTo; + + [DataField] + public float HealRadius = 3f; + + [DataField] + public TimeSpan HealInterval = TimeSpan.FromSeconds(5); + + [DataField] + public TimeSpan NextHealTime = TimeSpan.Zero; + + [DataField] + public float HealAmount = 2f; + + [DataField] + public bool HealOthers = true; +} + +[Serializable, NetSerializable] +public sealed partial class RodOathDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/ShipInBottleComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/ShipInBottleComponent.cs new file mode 100644 index 00000000000..fb93f721640 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/ShipInBottleComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class ShipInBottleComponent : Component +{ + [DataField] + public EntProtoId BoatPrototype = "VehicleDragonBoat"; + + [DataField] + public float MaxSpawnDistance = 1.5f; + + [DataField] + public float BoatCheckRadius = 3f; + + [DataField] + public EntityUid? SpawnedBoat; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/SoulStorageComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/SoulStorageComponent.cs new file mode 100644 index 00000000000..e262d088051 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/SoulStorageComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class SoulStorageComponent : Component +{ + [DataField] + public float MaxDamageModifier = 76f; + + [DataField] + public float ModifierPerCount = 4f; + + [ViewVariables(VVAccess.ReadOnly)] + public HashSet CurrentStolen = new(); +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Artefacts/VoiceOfGodComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Artefacts/VoiceOfGodComponent.cs new file mode 100644 index 00000000000..b3770afb9fc --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Artefacts/VoiceOfGodComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland.Artefacts.Components; + +[RegisterComponent] +public sealed partial class VoiceOfGodComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary CommandCooldowns = new(); +} + +[RegisterComponent] +public sealed partial class VoiceOfGodImplantComponent : Component; + +[Serializable, NetSerializable] +public enum VoiceOfGodEffect : byte +{ + Stun, + Weaken, + Sleep, + Vomit, + Silence, + WakeUp, + Heal, + Damage, + Bleed, + Burn, + Push, + StandUp, + SayName, + SayUserName, + KnockKnock, + StateLaws, + Throw, + Sit, + Stand, + Salute, + PlayDead, + Clap, + Honk, + Rest +} diff --git a/Content.Shared/_Wega/Lavaland/Components/FloraComponent.cs b/Content.Shared/_Wega/Lavaland/Components/FloraComponent.cs new file mode 100644 index 00000000000..1c9159ea6d4 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/FloraComponent.cs @@ -0,0 +1,62 @@ +using Content.Shared.DoAfter; +using Content.Shared.Tools; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class FloraComponent : Component +{ + [DataField] + public float GrowthTime = 1500f; + + [DataField] + public float MinGrowthTime = 1200f; + + [DataField] + public float MaxGrowthTime = 1800f; + + [DataField] + public float NextGrowthTick { get; set; } + + [DataField] + public bool IsGrown = true; + + [DataField(required: true)] + public string HarvestPrototype { get; set; } = string.Empty; + + [DataField] + public int MinYield = 1; + + [DataField] + public int MaxYield = 3; + + [DataField("specialTool")] + public ProtoId? SpecialTool = null; + + [DataField] + public float HarvestDuration = 2f; + + public SoundSpecifier? HarvestSound = null; +} + +[Serializable, NetSerializable] +public enum FloraVisuals : byte +{ + State +} + +[Serializable, NetSerializable] +public enum FloraState : byte +{ + Grown, + Harvested +} + +[Serializable, NetSerializable] +public sealed partial class FloraHarvestDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/_Wega/Lavaland/Components/HandCapsuleComponent.cs b/Content.Shared/_Wega/Lavaland/Components/HandCapsuleComponent.cs new file mode 100644 index 00000000000..10ab44fcce1 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/HandCapsuleComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Utility; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class HandCapsuleComponent : Component +{ + [DataField(required: true, customTypeSerializer: typeof(ResPathSerializer))] + public ResPath CapsulePath { get; private set; } +} diff --git a/Content.Shared/_Wega/Lavaland/Components/JaunterComponent.cs b/Content.Shared/_Wega/Lavaland/Components/JaunterComponent.cs new file mode 100644 index 00000000000..beba9a280ff --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/JaunterComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Jaunter; + +[RegisterComponent] +[Access(typeof(SharedJaunterSystem))] +public sealed partial class JaunterComponent : Component; diff --git a/Content.Shared/_Wega/Lavaland/Components/LavaWalkingComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LavaWalkingComponent.cs new file mode 100644 index 00000000000..5e2ef3f289b --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LavaWalkingComponent.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class LavaWalkingComponent : Component; diff --git a/Content.Shared/_Wega/Lavaland/Components/LavalandComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LavalandComponent.cs new file mode 100644 index 00000000000..a0524ea58ba --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LavalandComponent.cs @@ -0,0 +1,43 @@ +using Content.Shared.Weather; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +[Access(typeof(SharedLavalandSystem))] +public sealed partial class LavalandComponent : Component +{ + [DataField] + public ProtoId PlanetPrototype { get; set; } = "Lavaland"; + + [DataField] + public TimeSpan NextWeatherChange = TimeSpan.Zero; + + [DataField] + public TimeSpan WeatherStartTime = TimeSpan.Zero; + + [DataField] + public TimeSpan CurrentWeatherEnd = TimeSpan.Zero; + + [DataField] + public LavalandWeatherType UpcomingWeatherType = LavalandWeatherType.None; + + [DataField] + public ProtoId? UpcomingWeatherProto; + + [DataField] + public LavalandWeatherType CurrentWeatherType = LavalandWeatherType.None; + + [DataField] + public ProtoId? CurrentWeatherProto; + + [DataField] + public bool WarningSent = false; + + [DataField] + public float DamageTick = 0f; + + [DataField] public SoundSpecifier RumbleSound = new SoundCollectionSpecifier("PlanetRumblesDistance"); + [DataField] public SoundSpecifier RockFallSound = new SoundCollectionSpecifier("Explosion"); +} diff --git a/Content.Shared/_Wega/Lavaland/Components/LavalandShuttleConsoleComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LavalandShuttleConsoleComponent.cs new file mode 100644 index 00000000000..b55f40db982 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LavalandShuttleConsoleComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class LavalandShuttleConsoleComponent : Component +{ + [ViewVariables] + public EntityUid? ConnectedShuttle; + + [ViewVariables] + public DockLocation Location = DockLocation.Station; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/LavalandVisitorComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LavalandVisitorComponent.cs new file mode 100644 index 00000000000..cf19c6e1719 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LavalandVisitorComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class LavalandVisitorComponent : Component +{ + [DataField] public bool ImmuneToStorm; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/LegionCoreComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LegionCoreComponent.cs new file mode 100644 index 00000000000..224cfb86f1c --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LegionCoreComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Damage; +using Content.Shared.Surgery; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class LegionCoreComponent : Component +{ + [DataField] public bool Active = true; + [DataField] public bool AlwaysActive; + [DataField(required: true)] public DamageSpecifier HealAmount; + [DataField("internals", required: true)] + public List> HealInternals; + + [DataField] public TimeSpan ActiveInterval = TimeSpan.FromSeconds(150); + [ViewVariables] public TimeSpan ActiveEndTime; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/LegionReversibleComponent.cs b/Content.Shared/_Wega/Lavaland/Components/LegionReversibleComponent.cs new file mode 100644 index 00000000000..4323bb062f3 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/LegionReversibleComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Polymorph; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class LegionReversibleComponent : Component +{ + [DataField] public ProtoId BasePolymorph = "LegionPolymorph"; + [DataField] public ProtoId DwarfPolymorph = "LegionDwarfPolymorph"; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/Mobs/LegionFaunaComponent.cs b/Content.Shared/_Wega/Lavaland/Components/Mobs/LegionFaunaComponent.cs new file mode 100644 index 00000000000..e0e3674697f --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Mobs/LegionFaunaComponent.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class LegionFaunaComponent : Component; diff --git a/Content.Shared/_Wega/Lavaland/Components/Mobs/MegafaunaComponents.cs b/Content.Shared/_Wega/Lavaland/Components/Mobs/MegafaunaComponents.cs new file mode 100644 index 00000000000..6867eb8df3d --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/Mobs/MegafaunaComponents.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Audio; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class MegafaunaComponent : Component +{ + [ViewVariables] + public bool IsActive = true; + + [DataField("bossMusic")] + public SoundSpecifier? BossMusic; + + [DataField("aggroSound")] + public SoundSpecifier? AggroSound; + + [DataField] + public string TargetKey = "Target"; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/OreProcessorPointsComponent.cs b/Content.Shared/_Wega/Lavaland/Components/OreProcessorPointsComponent.cs new file mode 100644 index 00000000000..f7153af0d14 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/OreProcessorPointsComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class OreProcessorPointsComponent : Component +{ + [DataField] + public double AccumulatedPoints = 0; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/OreValueComponent.cs b/Content.Shared/_Wega/Lavaland/Components/OreValueComponent.cs new file mode 100644 index 00000000000..9cdab271d6a --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/OreValueComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class OreValueComponent : Component +{ + [DataField] + public double Points { get; set; } = 0; + + [DataField] + public bool Mined { get; set; } +} diff --git a/Content.Shared/_Wega/Lavaland/Components/PenalServitudeShuttleConsoleComponent.cs b/Content.Shared/_Wega/Lavaland/Components/PenalServitudeShuttleConsoleComponent.cs new file mode 100644 index 00000000000..53a129b2e66 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/PenalServitudeShuttleConsoleComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class PenalServitudeShuttleConsoleComponent : Component +{ + [ViewVariables] + public EntityUid? ConnectedShuttle; + + [ViewVariables] + public PenalServitudeLavalandDockLocation Location = PenalServitudeLavalandDockLocation.Station; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/PointsCapitalComponent.cs b/Content.Shared/_Wega/Lavaland/Components/PointsCapitalComponent.cs new file mode 100644 index 00000000000..fdcbd997aab --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/PointsCapitalComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +public sealed partial class PointsCapitalComponent : Component +{ + [DataField] + public double Points = 0; + + [DataField] + public bool CardTransfer; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/PointsCardComponent.cs b/Content.Shared/_Wega/Lavaland/Components/PointsCardComponent.cs new file mode 100644 index 00000000000..decaf59ccf2 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/PointsCardComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(UtilityVendorSystem), typeof(OreProcessorPointsSystem))] +public sealed partial class PointsCardComponent : Component +{ + [DataField("points"), AutoNetworkedField] + public FixedPoint2 Points = 0; +} diff --git a/Content.Shared/_Wega/Lavaland/Components/TrophyHunterComponents.cs b/Content.Shared/_Wega/Lavaland/Components/TrophyHunterComponents.cs new file mode 100644 index 00000000000..dbc54f0d860 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/TrophyHunterComponents.cs @@ -0,0 +1,28 @@ +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +[Access(typeof(TrophyHunterSystem))] +public sealed partial class TrophyHuntingToolComponent : Component; + +[RegisterComponent] +[Access(typeof(TrophyHunterSystem))] +public sealed partial class TrophyHunterComponent : Component +{ + [DataField(required: true)] + public EntProtoId Trophy; + + [DataField] + public float DropChance = 0.25f; + + /// + /// Determines whether a trophy collection attempt was made to limit it to 1 attempt per mob. + /// + [ViewVariables] + public bool Collected; + + [DataField] + public SoundSpecifier CollectSound = new SoundPathSpecifier("/Audio/Effects/gib3.ogg"); +} diff --git a/Content.Shared/_Wega/Lavaland/Components/UtilityVendorComponent.cs b/Content.Shared/_Wega/Lavaland/Components/UtilityVendorComponent.cs new file mode 100644 index 00000000000..17efba430c6 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Components/UtilityVendorComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Containers.ItemSlots; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Components; + +[RegisterComponent] +[Access(typeof(UtilityVendorSystem))] +public sealed partial class UtilityVendorComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadOnly)] + public List> Categories { get; private set; } = new(); + + [DataField] + public ItemSlot CardSlot = new(); + + [DataField] + public SoundSpecifier SoundVend = new SoundPathSpecifier("/Audio/Machines/machine_vend.ogg"); +} diff --git a/Content.Shared/_Wega/Lavaland/Events/Artefacts/DragonBloodActions.cs b/Content.Shared/_Wega/Lavaland/Events/Artefacts/DragonBloodActions.cs new file mode 100644 index 00000000000..9a7cee0c4c1 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Events/Artefacts/DragonBloodActions.cs @@ -0,0 +1,23 @@ +using Content.Shared.Actions; +using Content.Shared.DoAfter; +using Content.Shared.Polymorph; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland.Events; + +[Serializable, NetSerializable] +public sealed partial class DragonBloodDoAfterEvent : SimpleDoAfterEvent { } + +public sealed partial class BecomeToDrakeActionEvent : InstantActionEvent +{ + [DataField] + public ProtoId LowerDrake = "LowerAshDrakePolymorph"; + + [DataField] + public EntProtoId ReturnBack = "DrakeReturnBackAction"; +} + +public sealed partial class DrakeReturnBackActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/_Wega/Lavaland/Events/Artefacts/FireSelfActionEvent.cs b/Content.Shared/_Wega/Lavaland/Events/Artefacts/FireSelfActionEvent.cs new file mode 100644 index 00000000000..c52b8545449 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Events/Artefacts/FireSelfActionEvent.cs @@ -0,0 +1,7 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Lavaland.Events; + +public sealed partial class FireSelfActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/_Wega/Lavaland/Events/AshProtectionAttemptEvent.cs b/Content.Shared/_Wega/Lavaland/Events/AshProtectionAttemptEvent.cs new file mode 100644 index 00000000000..c15acc2df84 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Events/AshProtectionAttemptEvent.cs @@ -0,0 +1,9 @@ +using Content.Shared.Inventory; + +namespace Content.Shared.Lavaland.Events; + +[ByRefEvent] +public record struct AshProtectionAttemptEvent(float Modifier = 0f) : IInventoryRelayEvent +{ + public SlotFlags TargetSlots => SlotFlags.WITHOUT_POCKET; +} diff --git a/Content.Shared/_Wega/Lavaland/Events/FaunaEvents.cs b/Content.Shared/_Wega/Lavaland/Events/FaunaEvents.cs new file mode 100644 index 00000000000..7cb0955a2dd --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Events/FaunaEvents.cs @@ -0,0 +1,19 @@ +using Content.Shared.Actions; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Events; + +public sealed partial class LegionSummonSkullAction : EntityTargetActionEvent +{ + /// + /// The entity that must be invoked. + /// + [DataField] + public EntProtoId EntityId = "MobLegionSkull"; + + /// + /// How many entities should be invoked. + /// + [DataField] + public int MaxSpawns = 1; +} diff --git a/Content.Shared/_Wega/Lavaland/Events/MegafaunaEvents.cs b/Content.Shared/_Wega/Lavaland/Events/MegafaunaEvents.cs new file mode 100644 index 00000000000..6403f8faac7 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Events/MegafaunaEvents.cs @@ -0,0 +1,152 @@ +using Content.Shared.Actions; +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland.Events; + +/// +/// An event triggered when megafauna is killed. For Reward and Specific logic +/// +/// ID of the megafauna entity +/// The killer's ID, may be null +[ByRefEvent] +public record struct MegafaunaKilledEvent(EntityUid Megafauna, EntityUid? Killer); + +/// +/// An event triggered when a megafauna attacks a target. +/// +/// ID of the attack target +[ByRefEvent] +public record struct MegafaunaAttackEvent(EntityUid Target); + +// BDM +public sealed partial class BloodDrunkMinerDashAction : WorldTargetActionEvent +{ + public SoundSpecifier DashSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg"); +} + +// Hierophant +public sealed partial class HierophantBlinkActionEvent : EntityTargetActionEvent +{ + [DataField] public EntProtoId BlinkEffect = "EffectHierophantBlink"; +} + +public sealed partial class HierophantCrossActionEvent : EntityTargetActionEvent +{ + [DataField] public int CrossLength = 8; +} + +public sealed partial class HierophantChaserActionEvent : EntityTargetActionEvent +{ + [DataField] public int ChaserCount = 1; + [DataField] public float ChaserDelay = 0.3f; +} + +public sealed partial class HierophantDamageAreaActionEvent : EntityTargetActionEvent +{ + [DataField] public int MaxRadius = 6; + [DataField] public float WaveDelay = 0.6f; +} + +// Mega Legion +public sealed partial class MegaLegionAction : EntityTargetActionEvent +{ +} + +// Colossus +public sealed partial class ColossusFractionActionEvent : EntityTargetActionEvent +{ + [DataField] public float FractionSpread = 0.3f; + [DataField] public int FractionCount = 5; +} + +public sealed partial class ColossusCrossActionEvent : EntityTargetActionEvent +{ + [DataField] public float CrossLength = 10f; + [DataField] public float CrossDelay = 1f; +} + +public sealed partial class ColossusSpiralActionEvent : EntityTargetActionEvent +{ + [DataField] public int JudgementProjectileCount = 16; + [DataField] public float JudgementProjectileDelay = 0.08f; + [DataField] public float DieHealthModifier = 0.33f; + [DataField] public int DieProjectileCount = 20; + [DataField] public float DieProjectileDelay = 0.06f; +} + +public sealed partial class ColossusTripleFractionActionEvent : EntityTargetActionEvent +{ + [DataField] public float FractionSpread = 0.3f; + [DataField] public int FractionCount = 5; + [DataField] public float TripleFractionDelay = 0.5f; +} + +// Ash Drake +public sealed partial class AshDrakeConeFireActionEvent : EntityTargetActionEvent +{ +} + +public sealed partial class AshDrakeBreathingFireActionEvent : EntityTargetActionEvent +{ + [DataField] public float HealthModifier = 0.5f; +} + +public sealed partial class AshDrakeLavaActionEvent : EntityTargetActionEvent +{ + [DataField] public float HealthModifier = 0.5f; + [DataField] public EntProtoId Lava = "EffectAshDrakeFloorLavaTemp"; + [DataField] public EntProtoId LavaLess = "EffectAshDrakeFloorLavaLessTemp"; + [DataField] public EntProtoId Wall = "EffectAshDrakeFireWall"; + [DataField] public EntProtoId Marker = "EffectMegaFaunaMarker"; + [DataField] public EntProtoId SafeMarker = "EffectAshDrakeSafeMarker"; + [DataField(required: true)] public DamageSpecifier LandingDamage; + [DataField(required: true)] public DamageSpecifier HealingSpec; +} + +// Bubblegum +public sealed partial class BubblegumRageActionEvent : EntityTargetActionEvent +{ +} + +public sealed partial class BubblegumBloodDiveActionEvent : EntityTargetActionEvent +{ + [DataField] public float DiveRange = 5f; + [DataField] public float PreDiveDelay = 0.8f; +} + +public sealed partial class BubblegumTripleDashActionEvent : EntityTargetActionEvent +{ + [DataField] public List DashDelays = new() { 0.9f, 0.6f, 0.3f }; + [DataField] public float DashDistance = 6f; + [DataField] public float MoveSpeed = 0.1f; + [DataField(required: true)] public DamageSpecifier DashDamage; + [DataField] public bool UseSineWaveForLast = true; +} + +public sealed partial class BubblegumIllusionDashActionEvent : EntityTargetActionEvent +{ + [DataField] public int IllusionCount = 3; + [DataField] public float PlacementRadius = 4f; + [DataField] public float PreDashDelay = 1f; + [DataField(required: true)] public DamageSpecifier IllusionDamage; + [DataField] public EntProtoId IllusionPrototype = "MobBubblegumIllusion"; +} + +public sealed partial class BubblegumPentagramDashActionEvent : EntityTargetActionEvent +{ + [DataField] public float PlacementRadius = 5f; + [DataField] public float PreDashDelay = 1.2f; + [DataField(required: true)] public DamageSpecifier IllusionDamage; + [DataField] public EntProtoId IllusionPrototype = "MobBubblegumIllusion"; +} + +public sealed partial class BubblegumChaoticIllusionDashActionEvent : EntityTargetActionEvent +{ + [DataField] public int IllusionCount = 2; + [DataField] public float PlacementRadius = 6f; + [DataField] public float PreDashDelay = 1f; + [DataField(required: true)] public DamageSpecifier IllusionDamage; + [DataField] public EntProtoId IllusionPrototype = "MobBubblegumIllusion"; +} diff --git a/Content.Shared/_Wega/Lavaland/LavalandConsoleUi.cs b/Content.Shared/_Wega/Lavaland/LavalandConsoleUi.cs new file mode 100644 index 00000000000..615b7f321d7 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/LavalandConsoleUi.cs @@ -0,0 +1,105 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland; + +[Serializable, NetSerializable] +public enum LavalandShuttleConsoleUiKey +{ + Key +} + +[Serializable, NetSerializable] +public enum PenalServitudeLavalandShuttleConsoleUiKey +{ + Key +} + +[Serializable, NetSerializable] +public sealed class LavalandShuttleConsoleState : BoundUserInterfaceState +{ + public ShuttleStatus Status; + public DockLocation Location; + public TimeSpan? NextLaunchTime; + public bool CanCallShuttle; + + public LavalandShuttleConsoleState(ShuttleStatus status, DockLocation location, TimeSpan? nextLaunchTime, bool canCall) + { + Status = status; + Location = location; + NextLaunchTime = nextLaunchTime; + CanCallShuttle = canCall; + } +} + +[Serializable, NetSerializable] +public sealed class PenalServitudeLavalandShuttleConsoleState : BoundUserInterfaceState +{ + public PenalServitudeLavalandShuttleStatus Status; + public PenalServitudeLavalandDockLocation Location; + public TimeSpan? NextLaunchTime; + public bool CanCallShuttle; + + public PenalServitudeLavalandShuttleConsoleState(PenalServitudeLavalandShuttleStatus status, PenalServitudeLavalandDockLocation location, TimeSpan? nextLaunchTime, bool canCall) + { + Status = status; + Location = location; + NextLaunchTime = nextLaunchTime; + CanCallShuttle = canCall; + } +} + +[Serializable, NetSerializable] +public sealed class LavalandShuttleCallMessage : BoundUserInterfaceMessage +{ + public bool ReturnCall; + + public LavalandShuttleCallMessage(bool returnCall = false) + { + ReturnCall = returnCall; + } +} + +[Serializable, NetSerializable] +public sealed class PenalServitudeLavalandShuttleCallMessage : BoundUserInterfaceMessage +{ + public bool ReturnCall; + + public PenalServitudeLavalandShuttleCallMessage(bool returnCall = false) + { + ReturnCall = returnCall; + } +} + +public enum ShuttleStatus : byte +{ + Unknown, + Unavailable, + DockedAtStation, + DockedAtOutpost, + EnRouteToStation, + EnRouteToOutpost +} + +public enum PenalServitudeLavalandShuttleStatus : byte +{ + Unknown, + Unavailable, + DockedAtStation, + DockedAtPenalServitude, + EnRouteToStation, + EnRouteToPenalServitude +} + +public enum DockLocation : byte +{ + Station, + Outpost, + Shuttle +} + +public enum PenalServitudeLavalandDockLocation : byte +{ + Station, + PenalServitude, + Shuttle +} diff --git a/Content.Shared/_Wega/Lavaland/Prototypes/LavalandBuildingPrototype.cs b/Content.Shared/_Wega/Lavaland/Prototypes/LavalandBuildingPrototype.cs new file mode 100644 index 00000000000..df3dc8f563a --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Prototypes/LavalandBuildingPrototype.cs @@ -0,0 +1,53 @@ +using System.Numerics; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Utility; + +namespace Content.Shared.Lavaland; + +[Prototype] +public sealed partial class LavalandBuildingPrototype : IPrototype +{ + /// + /// Seriously..? + /// + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// Why should I explain anything? Sosal? + /// + [DataField("gridPath", required: true, customTypeSerializer: typeof(ResPathSerializer))] + public ResPath GridPath = default!; + + /// + /// Preloading the grid for a specific position on the map. + /// + [DataField("position")] + public Vector2? ExactPosition = null; + + /// + /// The window within which the building's position will be randomized. + /// + [DataField("approximate")] + public (float Min, float Max)? ApproximatePosition = null; + + /// + /// Should merge the grid to the planet? + /// + [DataField("merge")] + public bool MergeWithPlanet = true; + + /// + /// Whether to ignore the buildings counting. Applies to those constructions that should always be there. + /// + [DataField("ignoring")] + public bool IgnoringCounting; + + /// + /// Is it necessary to preload the spawn area? + /// Do not preload large grids such as lava rivers and the like if the full grid rectangle is not occupied by space. + /// + [DataField("preloading")] + public bool PreloadingArea = true; +} diff --git a/Content.Shared/_Wega/Lavaland/Prototypes/LavalandPlanetPrototype.cs b/Content.Shared/_Wega/Lavaland/Prototypes/LavalandPlanetPrototype.cs new file mode 100644 index 00000000000..9a452d4d923 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Prototypes/LavalandPlanetPrototype.cs @@ -0,0 +1,48 @@ +using Content.Shared.Atmos; +using Content.Shared.Parallax.Biomes; +using Content.Shared.Parallax.Biomes.Markers; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland; + +[Prototype] +public sealed partial class LavalandPlanetPrototype : IPrototype +{ + [IdDataField] + public string ID { get; private set; } = default!; + + [DataField(required: true)] + public ProtoId Biome = default!; + + [DataField] + public Color MapLightColor = Color.FromHex("#4D4033"); + + [DataField] + public List> BiomeLayers = new(); + + [DataField] + public List AvailableWeather = new() + { + LavalandWeatherType.StormWind, + LavalandWeatherType.AshStormLight, + LavalandWeatherType.AshStormHeavy, + LavalandWeatherType.VolcanicActivity, + LavalandWeatherType.AcidRain + }; + + [DataField("temperature")] + public float AtmosphereTemperature = 293.15f; + + [DataField("gases")] + public float[] GasesContent = new float[Atmospherics.TotalNumberOfGases]; +} + +public enum LavalandWeatherType : byte +{ + None = 0, + AshStormLight, + AshStormHeavy, + VolcanicActivity, + AcidRain, + StormWind +} diff --git a/Content.Shared/_Wega/Lavaland/Prototypes/UtilityVendorCategoryPrototype.cs b/Content.Shared/_Wega/Lavaland/Prototypes/UtilityVendorCategoryPrototype.cs new file mode 100644 index 00000000000..38e6f1432df --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Prototypes/UtilityVendorCategoryPrototype.cs @@ -0,0 +1,20 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; + +namespace Content.Shared.Lavaland; + +[Prototype] +public sealed partial class UtilityVendorCategoryPrototype : IPrototype +{ + [IdDataField] public string ID { get; private set; } = default!; + + [DataField] + public string Name { get; private set; } = string.Empty; + + [DataField] + public int Priority { get; private set; } = 0; + + [DataField("inventory", customTypeSerializer: typeof(DictionarySerializer))] + public Dictionary InventoryTemplate { get; private set; } = new(); +} diff --git a/Content.Shared/_Wega/Lavaland/Systems/OreProcessorPointsSystem.cs b/Content.Shared/_Wega/Lavaland/Systems/OreProcessorPointsSystem.cs new file mode 100644 index 00000000000..c9956238ec9 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Systems/OreProcessorPointsSystem.cs @@ -0,0 +1,104 @@ +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Lavaland.Components; +using Content.Shared.Materials; +using Content.Shared.Popups; +using Content.Shared.Stacks; + +namespace Content.Shared.Lavaland; + +public sealed partial class OreProcessorPointsSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnMaterialInserted); + SubscribeLocalEvent(OnInteractUsing); + + SubscribeLocalEvent(OnAfterInteract); + } + + private void OnExamined(Entity entity, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.AddMarkup(Loc.GetString("ore-processor-points", ("points", entity.Comp.AccumulatedPoints)) + "\n"); + } + + private void OnMaterialInserted(EntityUid uid, OreProcessorPointsComponent component, ref MaterialEntityInsertedEvent args) + { + var stackEntity = args.MaterialComp.Owner; + if (!TryComp(stackEntity, out var stack)) + return; + + if (!TryComp(stackEntity, out var oreValue) || !oreValue.Mined) + return; + + var pointsEarned = CalculateOrePoints(stack, oreValue, component); + if (pointsEarned > 0) + { + component.AccumulatedPoints += pointsEarned; + Dirty(uid, component); + } + } + + private double CalculateOrePoints(StackComponent stack, OreValueComponent oreValue, OreProcessorPointsComponent component) + { + var totalPoints = stack.Count * oreValue.Points; + return Math.Floor(totalPoints); + } + + private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) + { + if (TryComp(args.Used, out var capital) && capital.Points > 0 && !capital.CardTransfer) + { + entity.Comp.AccumulatedPoints += capital.Points; + args.Handled = TryQueueDel(args.Used); + return; + } + + if (HasComp(args.Used)) + { + args.Handled = TransferPointsToCard(entity, args.Used, args.User); + } + } + + public bool TransferPointsToCard(Entity entity, EntityUid card, EntityUid user) + { + if (!TryComp(card, out var pointsCard)) + return false; + + if (entity.Comp.AccumulatedPoints <= 0) + return false; + + var points = entity.Comp.AccumulatedPoints; + pointsCard.Points += points; + entity.Comp.AccumulatedPoints = 0; + + Dirty(entity.Owner, entity.Comp); + Dirty(card, pointsCard); + + _popup.PopupEntity(Loc.GetString("ore-processor-add-points", ("points", points)), user, user); + + return true; + } + + private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) + { + if (!entity.Comp.CardTransfer || entity.Comp.Points <= 0) + return; + + if (!TryComp(args.Target, out var pointsCard)) + return; + + var points = entity.Comp.Points; + pointsCard.Points += points; + _popup.PopupClient(Loc.GetString("points-capital-add-points", ("points", points)), args.User, args.User); + Del(entity); + } +} diff --git a/Content.Shared/_Wega/Lavaland/Systems/SharedJaunterSystem.cs b/Content.Shared/_Wega/Lavaland/Systems/SharedJaunterSystem.cs new file mode 100644 index 00000000000..dd918cc4782 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Systems/SharedJaunterSystem.cs @@ -0,0 +1,171 @@ +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Inventory; +using Content.Shared.Lavaland.Components; +using Content.Shared.Pinpointer; +using Content.Shared.Shuttles.Components; +using Content.Shared.StepTrigger.Components; +using Content.Shared.Storage; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using System.Diagnostics.CodeAnalysis; +using System.Numerics; + +namespace Content.Shared.Jaunter; + +public sealed partial class SharedJaunterSystem : EntitySystem +{ + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + private static readonly EntProtoId Lava = "FloorLavaEntity"; + private const float PROBCHANCE = 0.05f; + + public bool TryFindJaunter(EntityUid user, [NotNullWhen(true)] out EntityUid? jaunter) + { + jaunter = null; + var heldItems = _hands.EnumerateHeld(user); + foreach (var item in heldItems) + { + if (HasComp(item)) + { + jaunter = item; + return true; + } + } + + if (TryComp(user, out var inventory)) + { + var enumerator = _inventory.GetSlotEnumerator((user, inventory)); + while (enumerator.NextItem(out var item)) + { + if (HasComp(item)) + { + jaunter = item; + return true; + } + + if (TryFindJaunterInStorage(item, out var storageJaunter)) + { + jaunter = storageJaunter; + return true; + } + } + } + + return false; + } + + private bool TryFindJaunterInStorage(EntityUid storageEntity, [NotNullWhen(true)] out EntityUid? jaunter) + { + jaunter = null; + if (!TryComp(storageEntity, out var storage)) + return false; + + foreach (var itemTuple in storage.StoredItems) + { + var item = itemTuple.Key; + if (TryComp(item, out _)) + { + jaunter = item; + return true; + } + + if (TryFindJaunterInStorage(item, out var nestedJaunter)) + { + jaunter = nestedJaunter; + return true; + } + } + + return false; + } + + public bool TryUseJaunter(EntityUid tripper, EntityUid jaunter) + { + bool moved = false; + if (_random.Prob(PROBCHANCE)) // The first attempt at bad luck + { + var lavaEnts = new HashSet(); + var lava = EntityQueryEnumerator(); + while (lava.MoveNext(out var uid, out _)) + { + if (lavaEnts.Count >= 50) + break; + + var proto = MetaData(uid).EntityPrototype; + if (proto != null && proto == Lava) + lavaEnts.Add(uid); + } + + if (lavaEnts.Count > 0) + { + _transform.SetCoordinates(tripper, Transform(_random.Pick(lavaEnts)).Coordinates); + moved = true; + } + } + else if (_random.Prob(PROBCHANCE * 2) && !moved) // The second attempt at bad luck + { + EntityUid? map = null; + var maps = EntityQueryEnumerator(); + while (maps.MoveNext(out var uid, out var ftl)) + { + if (ftl.Whitelist != null) + continue; + + map = uid; + } + + if (map != null) + { + var coords = new EntityCoordinates(map.Value, new Vector2(_random.NextFloat(300, 500), _random.NextFloat(300, 500))); + _transform.SetCoordinates(tripper, coords); + moved = true; + } + } + + if (!moved) + { + var lucky = _random.Prob(PROBCHANCE); // The third attempt at bad luck + var beaconsEnts = new HashSet(); + var beacons = EntityQueryEnumerator(); + while (beacons.MoveNext(out var uid, out _)) + { + if (beaconsEnts.Count > 50) + break; + + if (lucky) + { + if (HasComp(uid)) + beaconsEnts.Add(uid); + } + else + { + beaconsEnts.Add(uid); + } + } + + if (lucky && beaconsEnts.Count == 0) + { + beaconsEnts.Clear(); + while (beacons.MoveNext(out var uid, out _)) + { + if (beaconsEnts.Count > 50) + break; + + beaconsEnts.Add(uid); + } + } + + if (beaconsEnts.Count == 0) + return false; + + _transform.SetCoordinates(tripper, Transform(_random.Pick(beaconsEnts)).Coordinates); + } + + Del(jaunter); + return true; + } +} diff --git a/Content.Shared/_Wega/Lavaland/Systems/SharedLavalandSystem.cs b/Content.Shared/_Wega/Lavaland/Systems/SharedLavalandSystem.cs new file mode 100644 index 00000000000..f4a044cf25b --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Systems/SharedLavalandSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Lavaland; + +public abstract class SharedLavalandSystem : EntitySystem +{ + // Empty +} diff --git a/Content.Shared/_Wega/Lavaland/Systems/TrophyHunterSystem.cs b/Content.Shared/_Wega/Lavaland/Systems/TrophyHunterSystem.cs new file mode 100644 index 00000000000..0a47c44d3c1 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Systems/TrophyHunterSystem.cs @@ -0,0 +1,66 @@ +using Content.Shared.Damage.Components; +using Content.Shared.Lavaland.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Misc.Upgrades; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; +using Robust.Shared.Random; + +namespace Content.Shared.Lavaland; + +public sealed partial class TrophyHunterSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly MobThresholdSystem _threshold = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMeleeHit, after: [typeof(CrusherUpgradeEffectsSystem)]); + } + + private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) + { + if (!_net.IsServer) + return; + + if (args.HitEntities.Count == 0) + return; + + foreach (var hitEnt in args.HitEntities) + { + if (!TryComp(hitEnt, out var trophyComp) || trophyComp.Collected) + continue; + + if (!TryComp(hitEnt, out var damageable) || damageable.TotalDamage <= 0) + return; + + if (_threshold.TryGetThresholdForState(hitEnt, MobState.Dead, out var threshold)) + { + var currentDamage = damageable.TotalDamage.Float(); + var baseDamage = args.BaseDamage.GetTotal().Float(); + var bonusDamage = args.BonusDamage.GetTotal().Float(); + + var totalDamage = currentDamage + baseDamage + bonusDamage; + + if (totalDamage < threshold) + return; + + trophyComp.Collected = true; + if (!_random.Prob(trophyComp.DropChance)) + return; + + var trophy = Spawn(trophyComp.Trophy, Transform(hitEnt).Coordinates); + _throwing.TryThrow(trophy, _random.NextVector2()); + _audio.PlayPvs(trophyComp.CollectSound, hitEnt); + } + } + } +} diff --git a/Content.Shared/_Wega/Lavaland/Systems/UtilityVendorSystem.cs b/Content.Shared/_Wega/Lavaland/Systems/UtilityVendorSystem.cs new file mode 100644 index 00000000000..5911825a3ca --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/Systems/UtilityVendorSystem.cs @@ -0,0 +1,113 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.FixedPoint; +using Content.Shared.Lavaland.Components; +using Content.Shared.Whitelist; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Lavaland; + +public sealed partial class UtilityVendorSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(UpdateUiState); + SubscribeLocalEvent(UpdateUiState); + SubscribeLocalEvent(UpdateUiState); + SubscribeLocalEvent(OnPurchaseMessage); + } + + private void OnComponentInit(EntityUid uid, UtilityVendorComponent component, ComponentInit args) + { + if (!_itemSlots.TryGetSlot(uid, "vendor_card", out var slot)) + return; + + slot.Whitelist = new EntityWhitelist + { + Components = new[] { "PointsCard" } + }; + + component.CardSlot = slot; + } + + private void UpdateUiState(EntityUid uid, UtilityVendorComponent component, ref T ev) + { + UpdateUI(uid, component); + } + + private void OnPurchaseMessage(EntityUid uid, UtilityVendorComponent component, UtilityVendorPurchaseMessage args) + { + TryPurchaseItem(uid, args.ItemId, component); + } + + public bool TryPurchaseItem(EntityUid uid, string itemId, UtilityVendorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return false; + + if (component.CardSlot.Item is not { } card || !TryComp(card, out var pointsCard)) + return false; + + var price = FindItemPrice(itemId, component); + if (price == null || pointsCard.Points < price) + return false; + + pointsCard.Points -= price.Value; + Dirty(card, pointsCard); + + UpdateUI(uid, component); + + Spawn(itemId, Transform(uid).Coordinates); + _audio.PlayPvs(component.SoundVend, uid); + + return true; + } + + private FixedPoint2? FindItemPrice(string itemId, UtilityVendorComponent component) + { + foreach (var categoryId in component.Categories) + { + if (!_prototype.TryIndex(categoryId, out var category)) + continue; + + if (category.InventoryTemplate.TryGetValue(itemId, out var price)) + return price; + } + return null; + } + + private void UpdateUI(EntityUid uid, UtilityVendorComponent component) + { + var points = component.CardSlot.Item != null + ? CompOrNull(component.CardSlot.Item)?.Points ?? FixedPoint2.Zero + : FixedPoint2.Zero; + + var categoriesData = new List(); + foreach (var categoryId in component.Categories) + { + if (!_prototype.TryIndex(categoryId, out var category)) + continue; + + categoriesData.Add(new CategoryData( + category.ID, + category.Name, + category.Priority, + category.InventoryTemplate + )); + } + + categoriesData.Sort((a, b) => a.Priority.CompareTo(b.Priority)); + + var state = new UtilityVendorBoundUserInterfaceState(points, categoriesData); + _ui.SetUiState(uid, UtilityVendorUiKey.Key, state); + } +} diff --git a/Content.Shared/_Wega/Lavaland/UtilityVendorBoundUserInterface.cs b/Content.Shared/_Wega/Lavaland/UtilityVendorBoundUserInterface.cs new file mode 100644 index 00000000000..6d16c47e0b3 --- /dev/null +++ b/Content.Shared/_Wega/Lavaland/UtilityVendorBoundUserInterface.cs @@ -0,0 +1,52 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Lavaland; + +[Serializable, NetSerializable] +public enum UtilityVendorUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class CategoryData +{ + public string Id { get; set; } + public string Name { get; set; } + public int Priority { get; set; } + public Dictionary Inventory { get; set; } + + public CategoryData(string id, string name, int priority, Dictionary inventory) + { + Id = id; + Name = name; + Priority = priority; + Inventory = inventory; + } +} + +[Serializable, NetSerializable] +public sealed class UtilityVendorBoundUserInterfaceState : BoundUserInterfaceState +{ + public readonly FixedPoint2 Points; + public readonly List Categories; + + public UtilityVendorBoundUserInterfaceState(FixedPoint2 points, List categories) + { + Points = points; + Categories = categories; + } +} + +[Serializable, NetSerializable] +public sealed class UtilityVendorPurchaseMessage : BoundUserInterfaceMessage +{ + public readonly string ItemId; + + public UtilityVendorPurchaseMessage(string itemId) + { + ItemId = itemId; + } +} diff --git a/Content.Shared/_Wega/Mobs/Components/MobAngerComponent.cs b/Content.Shared/_Wega/Mobs/Components/MobAngerComponent.cs new file mode 100644 index 00000000000..e7c4cc54160 --- /dev/null +++ b/Content.Shared/_Wega/Mobs/Components/MobAngerComponent.cs @@ -0,0 +1,12 @@ +namespace Content.Shared.Mobs.Anger.Components; + +[RegisterComponent, Access(typeof(MobAngerSystem))] +public sealed partial class MobAngerComponent : Component +{ + [DataField] public bool Anger; + [DataField] public float AngerThreshold = 0.33f; + + // Buffs + [DataField] public float SpeedModifier = 1f; + [DataField] public float DamageModifier = 1f; +} diff --git a/Content.Shared/_Wega/Mobs/MobAngerSystem.cs b/Content.Shared/_Wega/Mobs/MobAngerSystem.cs new file mode 100644 index 00000000000..9aec22a39a9 --- /dev/null +++ b/Content.Shared/_Wega/Mobs/MobAngerSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Damage.Components; +using Content.Shared.Mobs.Anger.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Weapons.Melee.Events; + +namespace Content.Shared.Mobs.Anger; + +public sealed class MobAngerSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _speed = default!; + [Dependency] private readonly MobThresholdSystem _threshold = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAttacked); + SubscribeLocalEvent(OnMeleeHit); + } + + private void OnAttacked(EntityUid uid, MobAngerComponent comp, AttackedEvent args) + { + if (comp.Anger) + return; + + if (_threshold.TryGetThresholdForState(uid, MobState.Dead, out var threshold) + && TryComp(uid, out var damageable) && damageable.TotalDamage > 0) + { + if (damageable.TotalDamage >= threshold - threshold * comp.AngerThreshold) + { + comp.Anger = true; + if (TryComp(uid, out MovementSpeedModifierComponent? speed)) + { + _speed.ChangeBaseSpeed(uid, speed.BaseWalkSpeed * comp.SpeedModifier, speed.BaseSprintSpeed * comp.SpeedModifier, + speed.Acceleration); + } + } + } + } + + private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) + { + if (!ent.Comp.Anger) + return; + + args.BonusDamage = args.BaseDamage * ent.Comp.DamageModifier; + } +} diff --git a/Content.Shared/_Wega/Pinpointer/ToggleHandheldBeaconDoAfterEvent.cs b/Content.Shared/_Wega/Pinpointer/ToggleHandheldBeaconDoAfterEvent.cs new file mode 100644 index 00000000000..76805f7315d --- /dev/null +++ b/Content.Shared/_Wega/Pinpointer/ToggleHandheldBeaconDoAfterEvent.cs @@ -0,0 +1,7 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Pinpointer; + +[Serializable, NetSerializable] +public sealed partial class ToggleHandheldBeaconDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/_Wega/Preferences/Loadouts/Effects/AchievementLoadoutEffect.cs b/Content.Shared/_Wega/Preferences/Loadouts/Effects/AchievementLoadoutEffect.cs new file mode 100644 index 00000000000..0854f8ca6fe --- /dev/null +++ b/Content.Shared/_Wega/Preferences/Loadouts/Effects/AchievementLoadoutEffect.cs @@ -0,0 +1,65 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Shared.Achievements; +using Robust.Shared.Network; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Preferences.Loadouts.Effects; + +public sealed partial class AchievementLoadoutEffect : LoadoutEffect +{ + [DataField(required: true)] + public List RequiredAchievements = new(); + + [DataField] + public bool RequireAll = false; + + public override bool Validate( + HumanoidCharacterProfile profile, + RoleLoadout loadout, + LoadoutPrototype proto, + ICommonSession? session, + IDependencyCollection collection, + [NotNullWhen(false)] out FormattedMessage? reason) + { + reason = null; + + if (session == null) + return true; + + if (RequiredAchievements.Count == 0) + return true; + + // I think you're trying to break this logic by uploading a profile, but as I understand it, + // The client-side upload is validated, so it's unlikely to succeed.◝(ᵔᵕᵔ)◜ + var net = collection.Resolve(); + if (net.IsServer) + return true; + + var achievementSystem = collection.Resolve().GetEntitySystem(); + var unlockedAchievements = achievementSystem.GetUnlockedAchievements(); + + bool hasRequired = RequireAll + ? RequiredAchievements.All(ach => unlockedAchievements.Contains(ach)) + : RequiredAchievements.Any(ach => unlockedAchievements.Contains(ach)); + + if (hasRequired) + return true; + + var protoManager = collection.Resolve(); + var achievementList = string.Join("\n", RequiredAchievements.Select(ach => + { + var prototype = protoManager.EnumeratePrototypes() + .FirstOrDefault(p => p.Key == ach); + var name = prototype != null ? Loc.GetString(prototype.Name) + : Loc.GetString($"achievements-{ach.ToString().ToLower()}-name"); // Trying format + return "• " + name; + })); + + var locKey = RequireAll ? "loadout-group-achievement-restriction-all" : "loadout-group-achievement-restriction-any"; + reason = FormattedMessage.FromUnformatted(Loc.GetString(locKey, ("achievements", achievementList))); + return false; + } +} diff --git a/Content.Shared/_Wega/Projectiles/ProjectileAoEComponent.cs b/Content.Shared/_Wega/Projectiles/ProjectileAoEComponent.cs new file mode 100644 index 00000000000..939e6608af3 --- /dev/null +++ b/Content.Shared/_Wega/Projectiles/ProjectileAoEComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Projectiles; + +[RegisterComponent] +public sealed partial class ProjectileAoEComponent : Component +{ + [DataField] public float DamageRadius = 3f; + [DataField] public float DamageMultiplier = 0.2f; +} diff --git a/Content.Shared/_Wega/Projectiles/ProjectileLifestealComponent.cs b/Content.Shared/_Wega/Projectiles/ProjectileLifestealComponent.cs new file mode 100644 index 00000000000..9a956cffd9b --- /dev/null +++ b/Content.Shared/_Wega/Projectiles/ProjectileLifestealComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.FixedPoint; + +namespace Content.Shared.Projectiles; + +[RegisterComponent] +public sealed partial class ProjectileLifestealComponent : Component +{ + [DataField] public FixedPoint2 StealAmount; +} diff --git a/Content.Shared/_Wega/Projectiles/ProjectileTimerResetsComponent.cs b/Content.Shared/_Wega/Projectiles/ProjectileTimerResetsComponent.cs new file mode 100644 index 00000000000..6e1543c2c7f --- /dev/null +++ b/Content.Shared/_Wega/Projectiles/ProjectileTimerResetsComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Projectiles; + +[RegisterComponent] +public sealed partial class ProjectileTimerResetsComponent : Component +{ + [DataField] public float ResetsTime = 0.5f; +} diff --git a/Content.Shared/_Wega/Vehicle/Components/BoatComponent.cs b/Content.Shared/_Wega/Vehicle/Components/BoatComponent.cs new file mode 100644 index 00000000000..d496f10b0f7 --- /dev/null +++ b/Content.Shared/_Wega/Vehicle/Components/BoatComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Vehicle.Components; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedVehicleSystem))] +public sealed partial class BoatComponent : Component +{ + [DataField] public bool RequiredOal = true; +} diff --git a/Content.Shared/_Wega/Vehicle/SharedVehicleSystem.cs b/Content.Shared/_Wega/Vehicle/SharedVehicleSystem.cs index b13c2d29345..3399fbfeb33 100644 --- a/Content.Shared/_Wega/Vehicle/SharedVehicleSystem.cs +++ b/Content.Shared/_Wega/Vehicle/SharedVehicleSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Audio; using Content.Shared.Buckle; using Content.Shared.Buckle.Components; +using Content.Shared.Hands.EntitySystems; using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item; using Content.Shared.Light.Components; @@ -41,9 +42,13 @@ public abstract partial class SharedVehicleSystem : EntitySystem [Dependency] private readonly SharedJointSystem _joints = default!; [Dependency] private readonly SharedBuckleSystem _buckle = default!; [Dependency] private readonly SharedMoverController _mover = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; private static readonly ProtoId Dump = "DoorBumpOpener"; private static readonly ProtoId Key = "VehicleKey"; + private static readonly ProtoId Swim = "CanSwim"; + private static readonly ProtoId Oar = "Oar"; private const string KeySlot = "key_slot"; @@ -137,6 +142,11 @@ private void OnStrapped(Entity ent, ref StrappedEvent args) _actionsSystem.AddAction(args.Buckle, ref ent.Comp.HornActionEntity, ent.Comp.HornAction, ent); } + if (HasComp(ent)) + { + _modifier.RefreshMovementSpeedModifiers(ent); + } + _joints.ClearJoints(args.Buckle); _tagSystem.AddTag(ent, Dump); @@ -210,6 +220,13 @@ private void OnRefreshMovementSpeedModifiers(Entity ent, ref R { args.ModifySpeed(0f, 0f); } + + if (TryComp(ent, out var boat) && ent.Comp.Rider != null + && !IsOnValidTile(ent, ent.Comp.Rider.Value, boat.RequiredOal)) + { + args.ModifySpeed(0f, 0f); + return; + } } // TODO: Shitcode, needs to use sprites instead of actual offsets. @@ -218,6 +235,15 @@ private void OnMoveEvent(Entity ent, ref MoveEvent args) if (args.NewRotation == args.OldRotation) return; + if (TryComp(ent, out var boat) && ent.Comp.Rider != null) + { + var isValidTile = IsOnValidTile(ent, ent.Comp.Rider.Value, boat.RequiredOal); + if (!isValidTile) + { + _modifier.RefreshMovementSpeedModifiers(ent); + } + } + // This first check is just for safety if (ent.Comp.AutoAnimate && !HasComp(ent)) { @@ -308,6 +334,28 @@ private void UpdateAutoAnimate(EntityUid uid, bool autoAnimate) { Appearance.SetData(uid, VehicleVisuals.AutoAnimate, autoAnimate); } + + private bool IsOnValidTile(Entity boat, EntityUid user, bool requiredOal) + { + var transform = Transform(boat); + var coordinates = transform.Coordinates; + + var entities = _lookup.GetEntitiesInRange(coordinates, 0.01f); + foreach (var entity in entities) + { + if (_tagSystem.HasTag(entity.Owner, Swim)) + { + if (!requiredOal) + return true; + + var activeItem = _hands.GetActiveItem(user); + if (activeItem != null && _tagSystem.HasTag(activeItem.Value, Oar)) + return true; + } + } + + return false; + } } /// diff --git a/Content.Shared/_Wega/Visuals/FadeComponent.cs b/Content.Shared/_Wega/Visuals/FadeComponent.cs new file mode 100644 index 00000000000..0650d82bc8b --- /dev/null +++ b/Content.Shared/_Wega/Visuals/FadeComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Visuals; + +[RegisterComponent, NetworkedComponent] +public sealed partial class FadeComponent : Component +{ + [DataField] + public float FadeDuration = 5f; + + [DataField] + public Color StartColor = Color.White; + + [DataField] + public Color TargetColor = Color.White.WithAlpha(0f); + + public TimeSpan StartTime; +} diff --git a/Content.Shared/_Wega/Visuals/VisualLayers.cs b/Content.Shared/_Wega/Visuals/VisualLayers.cs new file mode 100644 index 00000000000..3f59f867104 --- /dev/null +++ b/Content.Shared/_Wega/Visuals/VisualLayers.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Visuals; + +[Serializable, NetSerializable] +public enum VisualLayers : byte +{ + Enabled, + Layer, + Color +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAncientGoliathTentacleUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAncientGoliathTentacleUpgradeComponent.cs new file mode 100644 index 00000000000..92bf04d2797 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAncientGoliathTentacleUpgradeComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherAncientGoliathTentacleUpgradeComponent : Component +{ + [DataField] public float Coefficient = 0.5f; + [DataField] public float HealModifier = 0.9f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAshDrakeSpikeUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAshDrakeSpikeUpgradeComponent.cs new file mode 100644 index 00000000000..e6cd06696cd --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherAshDrakeSpikeUpgradeComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherAshDrakeSpikeUpgradeComponent : Component +{ + [DataField] public float DamageRadius = 3f; + [DataField] public float DamageMultiplier = 0.4f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherBlasterTubesUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherBlasterTubesUpgradeComponent.cs new file mode 100644 index 00000000000..4622ed9d3bc --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherBlasterTubesUpgradeComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Damage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherBlasterTubesUpgradeComponent : Component +{ + [ViewVariables] public bool Active; + [DataField(required: true)] public DamageSpecifier Damage; + [DataField] public float Coefficient = 0.1f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherDemonClawsUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherDemonClawsUpgradeComponent.cs new file mode 100644 index 00000000000..45e268ce9cc --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherDemonClawsUpgradeComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherDemonClawsUpgradeComponent : Component +{ + [DataField] public float DamageMultiplier = 0.15f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherEyeBloodDrunkMinerUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherEyeBloodDrunkMinerUpgradeComponent.cs new file mode 100644 index 00000000000..48df7db4633 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherEyeBloodDrunkMinerUpgradeComponent.cs @@ -0,0 +1,8 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherEyeBloodDrunkMinerUpgradeComponent : Component +{ +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherFrostGlandUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherFrostGlandUpgradeComponent.cs new file mode 100644 index 00000000000..0c31be49aa8 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherFrostGlandUpgradeComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherFrostGlandUpgradeComponent : Component +{ + [DataField] public float DamageModifier = 0.9f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherGoliathTentacleUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherGoliathTentacleUpgradeComponent.cs new file mode 100644 index 00000000000..ba045737c84 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherGoliathTentacleUpgradeComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Mobs; +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherGoliathTentacleUpgradeComponent : Component +{ + [DataField] + public float MaxCoefficient = 1f; + + [DataField] + public MobState TargetState = MobState.Critical; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherLegionSkullUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherLegionSkullUpgradeComponent.cs new file mode 100644 index 00000000000..3d817006542 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherLegionSkullUpgradeComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherLegionSkullUpgradeComponent : Component +{ + [DataField] + public float Coefficient = 1.3f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherMagmaWingUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherMagmaWingUpgradeComponent.cs new file mode 100644 index 00000000000..8d6565160db --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherMagmaWingUpgradeComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Damage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherMagmaWingUpgradeComponent : Component +{ + [ViewVariables] public bool Active; + [DataField(required: true)] public DamageSpecifier Damage; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherPoisonFangUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherPoisonFangUpgradeComponent.cs new file mode 100644 index 00000000000..cf6687284c2 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherPoisonFangUpgradeComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherPoisonFangUpgradeComponent : Component +{ + [DataField] public float DamageModifier = 0.1f; + [DataField] public float Interval = 2f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherUpgradeComponent.cs new file mode 100644 index 00000000000..126bddce20f --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherUpgradeComponent.cs @@ -0,0 +1,15 @@ +using Content.Shared.Tag; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Weapons.Misc.Upgrades.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeSystem))] +public sealed partial class CrusherUpgradeComponent : Component +{ + [DataField] + public List> Tags = new(); + + [DataField] + public LocId ExamineText; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherVortexTalismanUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherVortexTalismanUpgradeComponent.cs new file mode 100644 index 00000000000..a734442959b --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherVortexTalismanUpgradeComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherVortexTalismanUpgradeComponent : Component +{ + [DataField] public EntProtoId SpawnProto = "WallHierophantTemporary"; + [DataField] public int SpawnCount = 3; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherWatcherWingUpgradeComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherWatcherWingUpgradeComponent.cs new file mode 100644 index 00000000000..eaa3f6d9419 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/CrusherWatcherWingUpgradeComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeEffectsSystem))] +public sealed partial class CrusherWatcherWingUpgradeComponent : Component +{ + [DataField] + public float ResetsTime = 1.5f; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/UpgradeableCrusherComponent.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/UpgradeableCrusherComponent.cs new file mode 100644 index 00000000000..e61cfb8a0c2 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/Components/UpgradeableCrusherComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Tools; +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Weapons.Misc.Upgrades.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(CrusherUpgradeSystem))] +public sealed partial class UpgradeableCrusherComponent : Component +{ + [DataField] + public string UpgradesContainerId = "crusher_upgrades"; + + [DataField] + public EntityWhitelist Whitelist = new(); + + [DataField] + public SoundSpecifier InsertSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/revolver_magin.ogg"); + + [DataField] + public int MaxUpgradeCount = 3; + + [DataField] + public ProtoId Tool = "Slicing"; +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeEffectsSystem.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeEffectsSystem.cs new file mode 100644 index 00000000000..f7763fe1be9 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeEffectsSystem.cs @@ -0,0 +1,363 @@ +using System.Linq; +using System.Numerics; +using Content.Shared.Damage.Components; +using Content.Shared.Damage.Systems; +using Content.Shared.Maps; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Physics; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Marker; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +public sealed class CrusherUpgradeEffectsSystem : EntitySystem +{ + [Dependency] private readonly DamageableSystem _damage = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly MobThresholdSystem _threshold = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly SharedMapSystem _map = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly TurfSystem _turf = default!; + + private static readonly ProtoId SlowImmune = "SlowImmune"; + private static readonly ProtoId StunImmune = "StunImmune"; + + public override void Initialize() + { + base.Initialize(); + + // Legion + SubscribeLocalEvent(OnLegionFireRateRefresh); + + // Goliath + SubscribeLocalEvent(OnGoliathMarkerAttack); + SubscribeLocalEvent(OnGoliathAttacked); + + // Ancient Goliath + SubscribeLocalEvent(OnAncientGoliathMarkerAttack); + SubscribeLocalEvent(OnAncientGoliathAttacked); + + // Watcher + SubscribeLocalEvent(OnWatcherWingGunShot); + + // Magma Watcher + SubscribeLocalEvent(OnMagmaWingAfterMarker); + SubscribeLocalEvent(OnMagmaWingGunShot); + + // Marrow Weaver + SubscribeLocalEvent(OnPoisonFangAfterMarker); + + // Frostbite Weaver + SubscribeLocalEvent(OnFrostGlandGunShot); + + // Blood Drunk Miner + SubscribeLocalEvent(OnEyeBDMAfterMarker); + + // Ash Drake + SubscribeLocalEvent(OnAshDrakeSpikeAfterMarker); + + // Bubblegum + SubscribeLocalEvent(OnDemonClawsMarkerAttack); + SubscribeLocalEvent(OnDemonClawsAttacked); + + // Colossus + SubscribeLocalEvent(OnBlasterTubesAfterMarker); + SubscribeLocalEvent(OnBlasterTubesRefresh); + SubscribeLocalEvent(OnBlasterTubesGunShot); + + // Hierophant + SubscribeLocalEvent(OnVortexTalismanAfterMarker); + } + + // Legion + private void OnLegionFireRateRefresh(Entity ent, ref GunRefreshModifiersEvent args) + => args.FireRate *= ent.Comp.Coefficient; + + // Goliath + private void OnGoliathMarkerAttack(Entity ent, ref MarkerAttackAttemptEvent args) + { + if (!HasComp(args.User)) + return; + + if (!TryComp(args.User, out var damageable) || damageable.TotalDamage <= 0 + || !_threshold.TryGetThresholdForState(args.User, ent.Comp.TargetState, out var threshold)) + return; + + var currentDamage = damageable.TotalDamage.Float(); + var thresholdFloat = threshold.Value.Float(); + if (currentDamage >= thresholdFloat) + return; + + var bonus = ent.Comp.MaxCoefficient * (currentDamage / thresholdFloat); + + bonus = Math.Min(bonus, ent.Comp.MaxCoefficient); + args.DamageModifier += bonus; + } + + private void OnGoliathAttacked(Entity ent, ref MeleeHitEvent args) + { + if (!HasComp(args.User)) + return; + + if (!TryComp(args.User, out var damageable) || damageable.TotalDamage <= 0 + || !_threshold.TryGetThresholdForState(args.User, ent.Comp.TargetState, out var threshold)) + return; + + var currentDamage = damageable.TotalDamage.Float(); + var thresholdFloat = threshold.Value.Float(); + if (currentDamage >= thresholdFloat) + return; + + var bonus = ent.Comp.MaxCoefficient * (currentDamage / thresholdFloat); + + bonus = Math.Min(bonus, ent.Comp.MaxCoefficient); + args.BonusDamage += args.BaseDamage * bonus; + } + + // Ancient Goliath + private void OnAncientGoliathMarkerAttack(Entity ent, ref MarkerAttackAttemptEvent args) + { + if (!HasComp(args.Target)) + return; + + if (!TryComp(args.Target, out var damageable) + || _threshold.TryGetThresholdForState(args.Target, Mobs.MobState.Dead, out var threshold)) + return; + + if (threshold - threshold * ent.Comp.HealModifier < damageable.TotalDamage) + return; + + args.DamageModifier += ent.Comp.Coefficient; + } + + private void OnAncientGoliathAttacked(Entity ent, ref MeleeHitEvent args) + { + if (args.HitEntities.Count == 0) + return; + + bool correct = false; + foreach (var hitEnt in args.HitEntities) + { + if (!HasComp(hitEnt)) + return; + + if (!TryComp(hitEnt, out var damageable) + || _threshold.TryGetThresholdForState(hitEnt, Mobs.MobState.Dead, out var threshold)) + continue; + + if (threshold - threshold * ent.Comp.HealModifier < damageable.TotalDamage) + continue; + + correct = true; + break; + } + + if (!correct) + return; + + args.BonusDamage += args.BaseDamage * ent.Comp.Coefficient; + } + + // Watcher + private void OnWatcherWingGunShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (ammo == null) + return; + + var timer = EnsureComp(ammo.Value); + timer.ResetsTime = ent.Comp.ResetsTime; + } + } + + // Magma Watcher + private void OnMagmaWingAfterMarker(Entity ent, ref AfterMarkerAttackedEvent args) + => ent.Comp.Active = true; + + private void OnMagmaWingGunShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (!ent.Comp.Active) + return; + + if (TryComp(ammo, out var projectile)) + { + projectile.Damage += ent.Comp.Damage; + ent.Comp.Active = false; + } + } + } + + // Marrow Weaver + private void OnPoisonFangAfterMarker(Entity ent, ref AfterMarkerAttackedEvent args) + { + EnsureComp(args.Target).ActiveInterval = TimeSpan.FromSeconds(ent.Comp.Interval); + Comp(args.Target).DamageModifier = ent.Comp.DamageModifier; + } + + // Frostbite Weaver + private void OnFrostGlandGunShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (TryComp(ammo, out var marker) && !marker.Weakening) + { + marker.Weakening = true; + marker.WeakeningModifier = ent.Comp.DamageModifier; + } + } + } + + // Blood Drunk Miner + private void OnEyeBDMAfterMarker(Entity ent, ref AfterMarkerAttackedEvent args) + { + var time = TimeSpan.FromSeconds(1); + var user = args.User; + + bool isStunImmuned = false; + bool isSlowImmuned = false; + if (!_tag.HasTag(user, StunImmune)) + { + isStunImmuned = _tag.TryAddTag(user, StunImmune); + } + + if (!_tag.HasTag(user, SlowImmune)) + { + isSlowImmuned = _tag.TryAddTag(user, SlowImmune); + } + + Timer.Spawn(time, () => + { + if (isStunImmuned) _tag.RemoveTag(user, StunImmune); + if (isSlowImmuned) _tag.RemoveTag(user, SlowImmune); + }); + } + + // Ash Drake + private void OnAshDrakeSpikeAfterMarker(Entity entity, ref AfterMarkerAttackedEvent args) + { + var user = args.User; + var target = args.Target; + var ents = _lookup.GetEntitiesInRange(Transform(entity).Coordinates, entity.Comp.DamageRadius) + .Where(e => e.Owner != target && e.Owner != user); + + foreach (var ent in ents) + { + _damage.TryChangeDamage(ent.Owner, args.Damage * entity.Comp.DamageMultiplier); + + var entityPos = _transform.GetWorldPosition(entity); + var entPos = _transform.GetWorldPosition(ent.Owner); + var direction = (entPos - entityPos).Normalized(); + + _throwing.TryThrow(ent, direction); + } + } + + // Bubblegum + private void OnDemonClawsMarkerAttack(Entity ent, ref MarkerAttackAttemptEvent args) + => args.HealModifier += ent.Comp.DamageMultiplier * 4; // Allowance for the fact that the heal comes from the attack. + + private void OnDemonClawsAttacked(Entity ent, ref MeleeHitEvent args) + { + bool alive = false; + foreach (var hitEnt in args.HitEntities) + { + if (HasComp(hitEnt) && !_mobState.IsDead(hitEnt)) + { + alive = true; + break; + } + } + + if (!alive) return; + + args.BonusDamage = args.BaseDamage * ent.Comp.DamageMultiplier; + if (TryComp(ent, out var leech)) + { + var leechAmount = leech.Leech * ent.Comp.DamageMultiplier; + _damage.TryChangeDamage(args.User, leechAmount, true, false, origin: ent.Owner); + } + } + + // Colossus + private void OnBlasterTubesAfterMarker(Entity ent, ref AfterMarkerAttackedEvent args) + => ent.Comp.Active = true; + + private void OnBlasterTubesRefresh(Entity ent, ref GunRefreshModifiersEvent args) + => args.ProjectileSpeed *= ent.Comp.Coefficient; + + private void OnBlasterTubesGunShot(Entity ent, ref GunShotEvent args) + { + foreach (var (ammo, _) in args.Ammo) + { + if (!ent.Comp.Active) + return; + + if (TryComp(ammo, out var projectile)) + { + projectile.Damage += ent.Comp.Damage; + ent.Comp.Active = false; + } + } + } + + // Hierophant + private void OnVortexTalismanAfterMarker(Entity ent, ref AfterMarkerAttackedEvent args) + { + if (!_net.IsServer) + return; + + var user = args.User; + var userTransform = Transform(user); + var direction = userTransform.LocalRotation.ToWorldVec().Normalized(); + var perpendicularDirection = new Vector2(-direction.Y, direction.X); + + for (int i = -1; i <= 1; i++) + { + var offset = perpendicularDirection * i; + var spawnCoords = userTransform.Coordinates.Offset(offset); + + if (!CanSpawnAt(spawnCoords)) + continue; + + var barrier = Spawn(ent.Comp.SpawnProto, spawnCoords); + var barrierTransform = Transform(barrier); + barrierTransform.LocalRotation = perpendicularDirection.ToAngle(); + + EnsureComp(barrier).Uid = user; + } + } + + private bool CanSpawnAt(EntityCoordinates coords) + { + var gridUid = _transform.GetGrid(coords); + if (gridUid == null) + return false; + + if (!TryComp(gridUid, out var grid)) + return false; + + var tilePos = _map.CoordinatesToTile(gridUid.Value, grid, coords); + if (!_map.TryGetTileRef(gridUid.Value, grid, tilePos, out var tileRef)) + return false; + + return !_turf.IsTileBlocked(tileRef, CollisionGroup.Impassable); + } +} diff --git a/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeSystem.cs b/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeSystem.cs new file mode 100644 index 00000000000..0f09974cc83 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Misc/Upgrades/CrusherUpgradeSystem.cs @@ -0,0 +1,141 @@ +using System.Linq; +using Content.Shared.Administration.Logs; +using Content.Shared.Armor; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Tag; +using Content.Shared.Tools.Components; +using Content.Shared.Tools.Systems; +using Content.Shared.Weapons.Marker; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Misc.Upgrades.Components; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Content.Shared.Whitelist; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Weapons.Misc.Upgrades; + +public sealed class CrusherUpgradeSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _entityWhitelist = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedToolSystem _tool = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(RelayEvent); + SubscribeLocalEvent(RelayEvent); + SubscribeLocalEvent(RelayEvent); + SubscribeLocalEvent(RelayEvent); + SubscribeLocalEvent(RelayEvent); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnExamine); + } + + private void RelayEvent(Entity ent, ref T args) where T : notnull + { + foreach (var upgrade in GetCurrentUpgrades(ent)) + RaiseLocalEvent(upgrade, ref args); + } + + private void OnInit(Entity ent, ref ComponentInit args) + => _container.EnsureContainer(ent, ent.Comp.UpgradesContainerId); + + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled || !_tool.HasQuality(args.Used, ent.Comp.Tool)) + return; + + if (!_container.TryGetContainer(ent, ent.Comp.UpgradesContainerId, out var container) || + container.ContainedEntities.Count == 0) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-crusher-popup-no-upgrades"), ent, args.User); + return; + } + + var upgrade = container.ContainedEntities.Last(); + if (_container.Remove(upgrade, container)) + { + _popup.PopupPredicted(Loc.GetString("crusher-upgrade-popup-remove", ("upgrade", upgrade)), ent, args.User); + if (TryComp(args.Used, out var tool)) + _tool.PlayToolSound(args.Used, tool, args.User); + + args.Handled = true; + } + } + + private void OnAfterInteractUsing(Entity ent, ref AfterInteractUsingEvent args) + { + if (args.Handled || !args.CanReach || !TryComp(args.Used, out var upgradeComponent)) + return; + + if (GetCurrentUpgrades(ent).Count >= ent.Comp.MaxUpgradeCount) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-crusher-popup-upgrade-limit"), ent, args.User); + return; + } + + if (_entityWhitelist.IsWhitelistFail(ent.Comp.Whitelist, args.Used)) + return; + + if (GetCurrentUpgradeTags(ent).ToHashSet().IsSupersetOf(upgradeComponent.Tags)) + { + _popup.PopupPredicted(Loc.GetString("upgradeable-crusher-popup-already-present"), ent, args.User); + return; + } + + _audio.PlayPredicted(ent.Comp.InsertSound, ent, args.User); + _popup.PopupClient(Loc.GetString("crusher-upgrade-popup-insert", ("upgrade", args.Used), ("crusher", ent.Owner)), args.User); + args.Handled = _container.Insert(args.Used, _container.GetContainer(ent, ent.Comp.UpgradesContainerId)); + + _adminLog.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.User):player} inserted crusher upgrade {ToPrettyString(args.Used)} into {ToPrettyString(ent.Owner)}."); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + using (args.PushGroup(nameof(UpgradeableCrusherComponent))) + { + foreach (var upgrade in GetCurrentUpgrades(ent)) + { + args.PushMarkup(Loc.GetString(upgrade.Comp.ExamineText)); + } + } + } + + public HashSet> GetCurrentUpgrades(Entity ent) + { + if (!_container.TryGetContainer(ent, ent.Comp.UpgradesContainerId, out var container)) + return new HashSet>(); + + var upgrades = new HashSet>(); + foreach (var contained in container.ContainedEntities) + { + if (TryComp(contained, out var upgradeComp)) + upgrades.Add((contained, upgradeComp)); + } + + return upgrades; + } + + public IEnumerable> GetCurrentUpgradeTags(Entity ent) + { + foreach (var upgrade in GetCurrentUpgrades(ent)) + { + foreach (var tag in upgrade.Comp.Tags) + yield return tag; + } + } +} diff --git a/Content.Shared/_Wega/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/_Wega/Weapons/Ranged/Systems/SharedGunSystem.cs new file mode 100644 index 00000000000..cc1f0356294 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -0,0 +1,246 @@ +using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Events; +using Robust.Shared.Map; +using Robust.Shared.Physics.Components; +using Robust.Shared.Utility; + +namespace Content.Shared.Weapons.Ranged.Systems; + +public abstract partial class SharedGunSystem +{ + /// + /// Attempts to shoot directly at a target entity without requiring aim coordinates. + /// + public bool AttemptDirectShoot(EntityUid user, EntityUid gunUid, EntityUid target, GunComponent? gun = null) + { + if (!Resolve(gunUid, ref gun, false)) + return false; + + var fromCoordinates = Transform(user).Coordinates; + + // Check if we can shoot + var prevention = new ShotAttemptedEvent + { + User = user, + Used = (gunUid, gun) + }; + RaiseLocalEvent(gunUid, ref prevention); + if (prevention.Cancelled) + return false; + + RaiseLocalEvent(user, ref prevention); + if (prevention.Cancelled) + return false; + + // Get ammo + var ev = new TakeAmmoEvent(1, new List<(EntityUid? Entity, IShootable Shootable)>(), fromCoordinates, user); + RaiseLocalEvent(gunUid, ev); + + if (ev.Ammo.Count <= 0) + { + // Empty gun + var emptyGunShotEvent = new OnEmptyGunShotEvent(user); + RaiseLocalEvent(gunUid, ref emptyGunShotEvent); + + Audio.PlayPredicted(gun.SoundEmpty, gunUid, user); + return false; + } + + // Shoot directly at the target + ShootDirect(gunUid, gun, target, ev.Ammo, user); + UpdateAmmoCount(gunUid); + + var shotEv = new GunShotEvent(user, ev.Ammo); + RaiseLocalEvent(gunUid, ref shotEv); + + return true; + } + + /// + /// Shoots directly at a target entity without requiring aim coordinates. + /// Used for executions and point-blank shots. + /// + protected virtual bool ShootDirect(EntityUid gunUid, GunComponent gun, EntityUid target, List<(EntityUid? Entity, IShootable Shootable)> ammo, EntityUid user) + { + var fromCoordinates = Transform(user).Coordinates; + var toCoordinates = Transform(target).Coordinates; + + Shoot((gunUid, gun), ammo, fromCoordinates, toCoordinates, out _, user); + return true; + } + + /// + /// Attempts to shoot at the target coordinates, ignoring fire rate cooldown. + /// Useful for boss attacks and scripted events. + /// + public bool ForceShoot(EntityUid user, EntityUid gunUid, GunComponent gun, EntityCoordinates toCoordinates, EntityUid? target = null) + { + gun.ShootCoordinates = toCoordinates; + gun.Target = target; + var result = ForceShootInternal(user, gunUid, gun); + gun.ShotCounter = 0; + DirtyField(gunUid, gun, nameof(GunComponent.ShotCounter)); + return result; + } + + /// + /// Force shoots by assuming the gun is the user at default coordinates, ignoring fire rate cooldown. + /// + public bool ForceShoot(EntityUid gunUid, GunComponent gun) + { + var coordinates = new EntityCoordinates(gunUid, gun.DefaultDirection); + gun.ShootCoordinates = coordinates; + var result = ForceShootInternal(gunUid, gunUid, gun); + gun.ShotCounter = 0; + return result; + } + + /// + /// Force shoots directly at a target entity without requiring aim coordinates and ignoring fire rate cooldown. + /// + public bool ForceDirectShoot(EntityUid user, EntityUid gunUid, EntityUid target, GunComponent? gun = null) + { + if (!Resolve(gunUid, ref gun, false)) + return false; + + var fromCoordinates = Transform(user).Coordinates; + + // Check if we can shoot + var prevention = new ShotAttemptedEvent + { + User = user, + Used = (gunUid, gun) + }; + RaiseLocalEvent(gunUid, ref prevention); + if (prevention.Cancelled) + return false; + + RaiseLocalEvent(user, ref prevention); + if (prevention.Cancelled) + return false; + + // Get ammo + var ev = new TakeAmmoEvent(1, new List<(EntityUid? Entity, IShootable Shootable)>(), fromCoordinates, user); + RaiseLocalEvent(gunUid, ev); + + if (ev.Ammo.Count <= 0) + { + // Empty gun + var emptyGunShotEvent = new OnEmptyGunShotEvent(user); + RaiseLocalEvent(gunUid, ref emptyGunShotEvent); + + Audio.PlayPredicted(gun.SoundEmpty, gunUid, user); + return false; + } + + // Shoot directly at the target + ForceShootDirect(gunUid, gun, target, ev.Ammo, user); + UpdateAmmoCount(gunUid); + + var shotEv = new GunShotEvent(user, ev.Ammo); + RaiseLocalEvent(gunUid, ref shotEv); + + return true; + } + + private bool ForceShootInternal(EntityUid user, EntityUid gunUid, GunComponent gun) + { + if (gun.FireRateModified <= 0f) + return false; + + var toCoordinates = gun.ShootCoordinates; + + if (toCoordinates == null) + return false; + + // check if anything wants to prevent shooting + var prevention = new ShotAttemptedEvent + { + User = user, + Used = (gunUid, gun) + }; + RaiseLocalEvent(gunUid, ref prevention); + if (prevention.Cancelled) + return false; + + RaiseLocalEvent(user, ref prevention); + if (prevention.Cancelled) + return false; + + // For force shooting, we always do 1 shot + var shots = 1; + + var attemptEv = new AttemptShootEvent(user, null); + RaiseLocalEvent(gunUid, ref attemptEv); + + if (attemptEv.Cancelled) + { + if (attemptEv.Message != null) + { + PopupSystem.PopupClient(attemptEv.Message, gunUid, user); + } + gun.BurstActivated = false; + gun.BurstShotsCount = 0; + return false; + } + + var fromCoordinates = Transform(user).Coordinates; + // Remove ammo + var ev = new TakeAmmoEvent(shots, new List<(EntityUid? Entity, IShootable Shootable)>(), fromCoordinates, user); + + if (shots > 0) + RaiseLocalEvent(gunUid, ev); + + DebugTools.Assert(ev.Ammo.Count <= shots); + DebugTools.Assert(shots >= 0); + UpdateAmmoCount(gunUid); + + if (ev.Ammo.Count <= 0) + { + // triggers effects on the gun if it's empty + var emptyGunShotEvent = new OnEmptyGunShotEvent(user); + RaiseLocalEvent(gunUid, ref emptyGunShotEvent); + + gun.BurstActivated = false; + gun.BurstShotsCount = 0; + + // Play empty gun sounds if relevant + if (shots > 0) + { + PopupSystem.PopupCursor(ev.Reason ?? Loc.GetString("gun-magazine-fired-empty")); + Audio.PlayPredicted(gun.SoundEmpty, gunUid, user); + return false; + } + + return false; + } + + // Shoot confirmed + Shoot((gunUid, gun), ev.Ammo, fromCoordinates, toCoordinates.Value, out var userImpulse); + var shotEv = new GunShotEvent(user, ev.Ammo); + RaiseLocalEvent(gunUid, ref shotEv); + + if (!userImpulse || !TryComp(user, out var userPhysics)) + return true; + + var shooterEv = new ShooterImpulseEvent(); + RaiseLocalEvent(user, ref shooterEv); + + if (shooterEv.Push) + CauseImpulse(fromCoordinates, toCoordinates.Value, (user, userPhysics)); + return true; + } + + /// + /// Force shoots directly at a target entity without requiring aim coordinates. + /// Used for boss attacks and scripted events. + /// + protected virtual bool ForceShootDirect(EntityUid gunUid, GunComponent gun, EntityUid target, List<(EntityUid? Entity, IShootable Shootable)> ammo, EntityUid user) + { + var fromCoordinates = Transform(user).Coordinates; + var toCoordinates = Transform(target).Coordinates; + + Shoot((gunUid, gun), ammo, fromCoordinates, toCoordinates, out _, user); + return true; + } +} diff --git a/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeAoEComponent.cs b/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeAoEComponent.cs new file mode 100644 index 00000000000..7b46f00028a --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeAoEComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Ranged.Upgrades.Components; + +/// +/// A for increasing the damage of a gun's projectile. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(GunUpgradeSystem))] +public sealed partial class GunUpgradeAoEComponent : Component +{ +} diff --git a/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeLifestealComponent.cs b/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeLifestealComponent.cs new file mode 100644 index 00000000000..8cdeb4329f7 --- /dev/null +++ b/Content.Shared/_Wega/Weapons/Ranged/Upgrades/Components/GunUpgradeLifestealComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Ranged.Upgrades.Components; + +/// +/// A for increasing the damage of a gun's projectile. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(GunUpgradeSystem))] +public sealed partial class GunUpgradeLifestealComponent : Component +{ + [DataField(required: true)] + public FixedPoint2 StealAmount; +} diff --git a/Resources/Audio/_Wega/Achievements/achievement_unlocked.ogg b/Resources/Audio/_Wega/Achievements/achievement_unlocked.ogg new file mode 100644 index 00000000000..301007614be Binary files /dev/null and b/Resources/Audio/_Wega/Achievements/achievement_unlocked.ogg differ diff --git a/Resources/Audio/_Wega/Effects/Planet/rumble.ogg b/Resources/Audio/_Wega/Effects/Planet/rumble.ogg new file mode 100644 index 00000000000..701e3074e29 Binary files /dev/null and b/Resources/Audio/_Wega/Effects/Planet/rumble.ogg differ diff --git a/Resources/Audio/_Wega/Effects/Planet/rumble_distant1.ogg b/Resources/Audio/_Wega/Effects/Planet/rumble_distant1.ogg new file mode 100644 index 00000000000..c03c3071805 Binary files /dev/null and b/Resources/Audio/_Wega/Effects/Planet/rumble_distant1.ogg differ diff --git a/Resources/Audio/_Wega/Effects/Planet/rumble_distant2.ogg b/Resources/Audio/_Wega/Effects/Planet/rumble_distant2.ogg new file mode 100644 index 00000000000..c7be8ef1687 Binary files /dev/null and b/Resources/Audio/_Wega/Effects/Planet/rumble_distant2.ogg differ diff --git a/Resources/Audio/_Wega/Effects/Planet/rumble_distant3.ogg b/Resources/Audio/_Wega/Effects/Planet/rumble_distant3.ogg new file mode 100644 index 00000000000..b35c2e7608f Binary files /dev/null and b/Resources/Audio/_Wega/Effects/Planet/rumble_distant3.ogg differ diff --git a/Resources/Audio/_Wega/Effects/Planet/rumble_distant4.ogg b/Resources/Audio/_Wega/Effects/Planet/rumble_distant4.ogg new file mode 100644 index 00000000000..c74b8999a1e Binary files /dev/null and b/Resources/Audio/_Wega/Effects/Planet/rumble_distant4.ogg differ diff --git a/Resources/Audio/_Wega/Effects/narsie_attack.ogg b/Resources/Audio/_Wega/Effects/narsie_attack.ogg new file mode 100644 index 00000000000..78a8d8706cf Binary files /dev/null and b/Resources/Audio/_Wega/Effects/narsie_attack.ogg differ diff --git a/Resources/Audio/_Wega/Mobs/Lavaland/attributions.yml b/Resources/Audio/_Wega/Mobs/Lavaland/attributions.yml new file mode 100644 index 00000000000..a81bc650c90 --- /dev/null +++ b/Resources/Audio/_Wega/Mobs/Lavaland/attributions.yml @@ -0,0 +1,9 @@ +- files: ["hiero_blast.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station" + source: "https://github.com/tgstation/tgstation/blob/master" + +- files: ["hiero_bgm.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Yogstation, made by @Hey-Holokin (Github)" + source: "https://github.com/yogstation13/Yogstation/commit/04f271c80f2df96c8120052362efb6a3e28dd0d0" diff --git a/Resources/Audio/_Wega/Mobs/Lavaland/hiero_bgm.ogg b/Resources/Audio/_Wega/Mobs/Lavaland/hiero_bgm.ogg new file mode 100644 index 00000000000..8ce252c1722 Binary files /dev/null and b/Resources/Audio/_Wega/Mobs/Lavaland/hiero_bgm.ogg differ diff --git a/Resources/Audio/_Wega/Mobs/Lavaland/hiero_blast.ogg b/Resources/Audio/_Wega/Mobs/Lavaland/hiero_blast.ogg new file mode 100644 index 00000000000..a437392d83b Binary files /dev/null and b/Resources/Audio/_Wega/Mobs/Lavaland/hiero_blast.ogg differ diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index 4f60c0a57de..42a186e91ec 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -45,3 +45,6 @@ new_player_threshold = 120 random_characters = true random_species_weights = "" ssd_sleep_time = 3600 + +[lavaland] +enabled = false diff --git a/Resources/ConfigPresets/Wega/wega.toml b/Resources/ConfigPresets/Wega/wega.toml index d66e0d0b6a2..72be26d2147 100644 --- a/Resources/ConfigPresets/Wega/wega.toml +++ b/Resources/ConfigPresets/Wega/wega.toml @@ -20,6 +20,10 @@ night_light_enabled = true roundend_vote_enabled = true sound_insulation_enabled = true +[npc] +max_updates = 512 +pathfinding = false + [net] tickrate = 30 diff --git a/Resources/Locale/ru-RU/_wega/achievements.ftl b/Resources/Locale/ru-RU/_wega/achievements.ftl new file mode 100644 index 00000000000..fa0c8d0acbe --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/achievements.ftl @@ -0,0 +1,26 @@ +# Ui +ui-achievements-title = Достижения +ui-achievements-progress = Прогресс: +ui-achievements-unlocked = Разблокировано +ui-achievements-locked = Заблокировано +ui-achievements-description = Описание +ui-achievements-new = Получено новое Достижение! +ui-lobby-achievements-button = Достижения + +# Name +achievements-firstboss-name = Убийца Боссов +achievements-hierophantboss-name = Убийца Иерофанта +achievements-minerboss-name = Убийца Кровавого Шахтёра +achievements-legionboss-name = Убийца Легиона +achievements-colossusboss-name = Убийца Колосса +achievements-ashdrakeboss-name = Убийца Дрейка +achievements-bubblegumboss-name = Убийца Бубльгума + +# Description +achievements-firstboss-desc = Вы прошли долгий путь от вопроса о том, как переключать руки. +achievements-hierophantboss-desc = Иерофант, но не триумфатор. +achievements-minerboss-desc = Я думаю, он не мог так хорошо справляться со своей выпивкой. +achievements-legionboss-desc = Нас было много... А теперь нас нет. +achievements-colossusboss-desc = Чем они крупнее... тем лучше добыча. +achievements-ashdrakeboss-desc = Теперь я могу носить рунические пластины! +achievements-bubblegumboss-desc = Думаю, в конце концов, он был сделан не из конфет. diff --git a/Resources/Locale/ru-RU/_wega/achievements/achievements.ftl b/Resources/Locale/ru-RU/_wega/achievements/achievements.ftl new file mode 100644 index 00000000000..cf9d3f2142d --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/achievements/achievements.ftl @@ -0,0 +1,47 @@ +cmd-achievements_grant-desc = Выдать ачивку игроку +cmd-achievements_grant-help = Использование: { $command } <имя игрока> +cmd-achievements_grant-error-args = Неверное количество аргументов. Использование: achievements_grant <имя игрока> +cmd-achievements_grant-error-player = Не удалось найти игрока: { $username } +cmd-achievements_grant-error-achievement = Ачивка с ID { $id } не найдена +cmd-achievements_grant-success = Ачивка { $achievement } выдана игроку { $username } +cmd-achievements_grant-arg-user = Имя игрока +cmd-achievements_grant-arg-achievement = ID ачивки или название из enum +cmd-achievements_grant-already-has = Игрок { $username } уже имеет эту ачивку. + +cmd-achievements_revoke-desc = Забрать ачивку у игрока +cmd-achievements_revoke-help = Использование: { $command } <имя игрока> +cmd-achievements_revoke-error-args = Неверное количество аргументов. Использование: achievements_revoke <имя игрока> +cmd-achievements_revoke-error-player = Не удалось найти игрока: { $username } +cmd-achievements_revoke-error-achievement = Ачивка с ID { $id } не найдена +cmd-achievements_revoke-success = Ачивка { $achievement } забрана у игрока { $username } +cmd-achievements_revoke-arg-user = Имя игрока +cmd-achievements_revoke-arg-achievement = ID ачивки или название из enum +cmd-achievements_revoke-not-has = У игрока { $username } нет этой ачивки. + +cmd-achievements_clear-desc = Очистить все ачивки игрока +cmd-achievements_clear-help = Использование: { $command } <имя игрока> +cmd-achievements_clear-error-args = Неверное количество аргументов. Использование: achievements_clear <имя игрока> +cmd-achievements_clear-error-player = Не удалось найти игрока: { $username } +cmd-achievements_clear-success = Все ачивки ({ $count }) очищены у игрока { $username } +cmd-achievements_clear-arg-user = Имя игрока + +cmd-achievements_list-desc = Показать ачивки игрока +cmd-achievements_list-help = Использование: { $command } <имя игрока> +cmd-achievements_list-error-args = Неверное количество аргументов. Использование: achievements_list <имя игрока> +cmd-achievements_list-error-player = Не удалось найти игрока: { $username } +cmd-achievements_list-no = У игрока нет ачивок +cmd-achievements_list-header = Ачивки игрока { $username }: +cmd-achievements_list-entry = { $name } (ID: { $id }) +cmd-achievements_list-arg-user = Имя игрока +cmd-achievements_list-entry-no-prototype = ID: { $enum } (прототип не найден) + +cmd-achievements_grantall-desc = Выдать все ачивки игроку +cmd-achievements_grantall-help = Использование: { $command } <имя игрока> +cmd-achievements_grantall-error-args = Неверное количество аргументов. Использование: achievements_grantall <имя игрока> +cmd-achievements_grantall-error-player = Не удалось найти игрока: { $username } +cmd-achievements_grantall-success = Игроку { $username } выдано { $granted } ачивок из { $total }. +cmd-achievements_grantall-arg-user = Имя игрока + +## CompletionHelper +comp-help-session = Имя игрока +comp-help-achievement-id = ID ачивки diff --git a/Resources/Locale/ru-RU/_wega/clothing/clothing-upgrades.ftl b/Resources/Locale/ru-RU/_wega/clothing/clothing-upgrades.ftl new file mode 100644 index 00000000000..9dddd86395a --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/clothing/clothing-upgrades.ftl @@ -0,0 +1,8 @@ +clothing-upgrade-popup-insert = Вы надели {THE($upgrade)} на {THE($clothing)}. +clothing-upgrade-popup-remove = Вы сняли {THE($upgrade)}. +upgradeable-clothing-popup-upgrade-limit = На этой одежде больше нет места для улучшений. +upgradeable-clothing-popup-already-present = Такое улучшение уже надето. +clothing-upgrade-examine-header = Надетые улучшения: + +clothing-upgrade-examine-text-bone-talisman = Костяной талисман [color=#e6dbc1][bold]защищает[/bold][/color] от грубых, режущих атак и ожогов. +clothing-upgrade-example-text-skull-codpiece = Череп на поясе [color=#e6dbc1][bold]оберегает[/bold][/color] от случайных ударов и искр. diff --git a/Resources/Locale/ru-RU/_wega/clothing/clothing.ftl b/Resources/Locale/ru-RU/_wega/clothing/clothing.ftl index 3d9a14c73d0..92b54f327ad 100644 --- a/Resources/Locale/ru-RU/_wega/clothing/clothing.ftl +++ b/Resources/Locale/ru-RU/_wega/clothing/clothing.ftl @@ -4,4 +4,6 @@ toggleable-clothing-verb-reset = Вернуть исходный вид tearable-clothing-verb-tear = Порвать одежду tearable-clothing-too-weakness = Вы слишком слабы, чтобы сделать это tearable-clothing-try-tear = {$user} пытается порвать {$clothing}! -tearable-clothing-successed = Вы разорвали {$clothing} \ No newline at end of file +tearable-clothing-successed = Вы разорвали {$clothing} + +clothing-ash-protection-examined = [color=#c29f7b]Имеет {$modifier}% защиты от погодных условий.[/color] diff --git a/Resources/Locale/ru-RU/_wega/construction/construction-categories.ftl b/Resources/Locale/ru-RU/_wega/construction/construction-categories.ftl index a06c8b62527..647aea7f7f7 100644 --- a/Resources/Locale/ru-RU/_wega/construction/construction-categories.ftl +++ b/Resources/Locale/ru-RU/_wega/construction/construction-categories.ftl @@ -1 +1,2 @@ construction-category-bloodcult = Кровавый культ +construction-category-primitive = Примитивная diff --git a/Resources/Locale/ru-RU/_wega/fluids/components/spray-component.ftl b/Resources/Locale/ru-RU/_wega/fluids/components/spray-component.ftl new file mode 100644 index 00000000000..38c4521a2f8 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/fluids/components/spray-component.ftl @@ -0,0 +1 @@ +spray-self-message = {CAPITALIZE($user)} распыляет {CONJUGATE-BE($user)} на себя! diff --git a/Resources/Locale/ru-RU/_wega/gps/gps.ftl b/Resources/Locale/ru-RU/_wega/gps/gps.ftl new file mode 100644 index 00000000000..d5272762d0b --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/gps/gps.ftl @@ -0,0 +1,36 @@ +gps-ui-title = GPS Навигация +gps-ui-current-device = ТЕКУЩЕЕ УСТРОЙСТВО +gps-ui-broadcast-on = ТРАНСЛЯЦИЯ: ВКЛ +gps-ui-broadcast-off = ТРАНСЛЯЦИЯ: ВЫКЛ +gps-ui-name = Имя: +gps-ui-name-placeholder = Введите имя GPS... +gps-ui-description = Описание: +gps-ui-desc-placeholder = Введите описание... +gps-ui-save = Сохранить +gps-ui-current-coords = Текущие координаты: +gps-ui-other-devices = GPS Устройства поблизости +gps-ui-nav-beacons = Навигационные маяки +gps-ui-broadcast = Сигнал трансляции +gps-ui-toggle-broadcast = Переключить +gps-ui-broadcast-turn-on = Включить трансляцию +gps-ui-broadcast-turn-off = Выключить трансляцию +gps-ui-no-other-devices = Других GPS устройств не обнаружено +gps-ui-no-beacons = Навигационные маяки не обнаружены +gps-ui-distance = Расстояние: {$distance}м +gps-ui-unnamed = Безымянное устройство +gps-ui-nav-map = Навигационная карта +gps-ui-no-map-data = Данные карты недоступны +gps-ui-zoom-level = Масштаб: {$zoom}x +gps-ui-center-map = Центрировать +gps-ui-toggle-beacons = Показать маяки +gps-ui-hide-beacons = Скрыть маяки +gps-ui-show-beacons = Показать маяки +gps-ui-you = ВЫ +gps-ui-legend-gps = GPS устройства +gps-ui-legend-beacons = Навигационные маяки +gps-ui-os-footer = NT-OS v4.2 | GPS Навигация +gps-tab-devices = GPS устройства +gps-tab-beacons = Нав. маяки +gps-tab-map = Карта + +handheld-gps-desc-base = Ручной ГПС diff --git a/Resources/Locale/ru-RU/_wega/job/job-description.ftl b/Resources/Locale/ru-RU/_wega/job/job-description.ftl index 4505857a291..626332ee5e5 100644 --- a/Resources/Locale/ru-RU/_wega/job/job-description.ftl +++ b/Resources/Locale/ru-RU/_wega/job/job-description.ftl @@ -4,4 +4,6 @@ job-description-surgeon = Ваша миссия — вскрывать, испр job-description-coroner = Нет лучше собеседника, чем труп. job-description-bso = Защитите командный состав, капитана и VIP-персон с ЦентКома ценой своей жизни. job-description-postman = Доставляйте письма, получайте призент. -job-description-wardenHelper = Поддерживайте порядок и чистоту бриге, проверяйте камеры и арсенал, помогайте с допросами. \ No newline at end of file +job-description-shaft-miner = Rock and Stone! +job-description-shaft-miner-medic = Вы та самая сила, способная спасти потерявшихся в пепле шахтёров. +job-description-wardenHelper = Поддерживайте порядок и чистоту бриге, проверяйте камеры и арсенал, помогайте с допросами. diff --git a/Resources/Locale/ru-RU/_wega/job/job-names.ftl b/Resources/Locale/ru-RU/_wega/job/job-names.ftl index 5d835a983f2..662db5edb8e 100644 --- a/Resources/Locale/ru-RU/_wega/job/job-names.ftl +++ b/Resources/Locale/ru-RU/_wega/job/job-names.ftl @@ -4,6 +4,8 @@ job-name-surgeon = хирург job-name-coroner = коронер job-name-bso = офицер "Синий Щит" job-name-postman = почтальон +job-name-shaft-miner = шахтёр +job-name-shaft-miner-medic = шахтёрский медик job-name-wardenHelper = помощник смотрителя JobBarber = барбер @@ -12,4 +14,6 @@ JobSurgeon = хирург JobCoroner = коронер JobBlueShieldOfficer = офицер "Синий Щит" JobPostman = почтальон -JobWardenHelper = помощник смотрителя \ No newline at end of file +JobShaftMiner = шахтёр +JobShaftMinerMedic = шахтёрский медик +JobWardenHelper = помощник смотрителя diff --git a/Resources/Locale/ru-RU/_wega/lavaland/artefacts.ftl b/Resources/Locale/ru-RU/_wega/lavaland/artefacts.ftl new file mode 100644 index 00000000000..c29dc3ca08d --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/lavaland/artefacts.ftl @@ -0,0 +1,23 @@ +lavaland-artefacts-rod-already-bound = Жезл уже привязан к другому носителю! +lavaland-artefacts-rod-oath-start = Вы начинаете произносить клятву Асклепия... +lavaland-artefacts-rod-bound = Жезл привязывается к руке {$target}! +lavaland-artefacts-rod-disintegrated = {$name} рассыпается в прах! + +lavaland-artefacts-rod-latin-oath = + Per Hippocratis juramentum et Aesculapii virgam, + ego spondeo me aegris auxilium laturum, + dolorem levaturum, vitam protecturum. + Nunc et in perpetuum, sic fiat! + +lavaland-artefacts-ship-in-bottle-spawned = Вы выпускаете таинственную лодку из бутылки! +lavaland-artefacts-ship-in-bottle-returned = Вы возвращаете лодку обратно в бутылку. +lavaland-artefacts-ship-in-bottle-not-water = Лодка может быть размещена только на воде! +lavaland-artefacts-ship-in-bottle-too-far = Лодка слишком далеко, чтобы вернуть её в бутылку. + +linked-cube-teleported = Вы телепортируетесь к связанному кубу! +linked-cube-no-pair = Куб не имеет связи с другим кубом. +linked-cube-too-close = Связанный куб слишком близко ({$distance} м). + +dragon-blood-effect-1 = Кровь прожигает вашу плоть оставляя лишь кости. Ачк-Ачк! +dragon-blood-effect-2 = Вы чувствуете себя необычайно зачарованно? +dragon-blood-effect-3 = Вы всегда мечтали всем показать свое истинное я diff --git a/Resources/Locale/ru-RU/_wega/lavaland/lavaland.ftl b/Resources/Locale/ru-RU/_wega/lavaland/lavaland.ftl new file mode 100644 index 00000000000..d41f9e30708 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/lavaland/lavaland.ftl @@ -0,0 +1,70 @@ +# UI +lavaland-map = Лаваленд +lavaland-map-avanpost = Аванпост Лаваленда +lavaland-shuttle-status = Статус шаттла: +lavaland-shuttle-status-docked-station = Пристыкован к станции +lavaland-shuttle-status-docked-outpost = Пристыкован к аванпосту +lavaland-shuttle-status-enroute-station = В пути на станцию +lavaland-shuttle-status-enroute-outpost = В пути на аванпост +lavaland-shuttle-status-unknown = Неизвестно +lavaland-shuttle-call-to-outpost = Вызвать на аванпост +lavaland-shuttle-recall-to-station = Вернуть на станцию +lavaland-shuttle-call-unavailable = Недоступно +lavaland-shuttle-current-location = Локация: +lavaland-shuttle-location-station = Станция +lavaland-shuttle-location-outpost = Аванпост +lavaland-shuttle-location-shuttle = Шаттл +lavaland-shuttle-location-unknown = Неизвестно +lavaland-shuttle-on-cooldown = Перезарядка +lavaland-shuttle-cooldown-time = Доступно через { $time } +lavaland-shuttle-info-enroute = Шаттл в пути +lavaland-shuttle-info-cooldown = Система перезаряжается после транспортировки +lavaland-shuttle-info-ready = Система готова к транспортировке + +prison-shuttle-status = Статус шаттла: +prison-shuttle-current-location = Ваше местоположение: +prison-shuttle-status-docked-station = Пристыкован на станции +prison-shuttle-status-docked-prison = Пристыкован в каторге +prison-shuttle-status-enroute-station = Направляется на станцию +prison-shuttle-status-enroute-prison = Направляется в каторгу +prison-shuttle-status-unknown = Неизвестно +prison-shuttle-location-station = Станция +prison-shuttle-location-prison = Каторга +prison-shuttle-location-shuttle = Шаттл +prison-shuttle-location-unknown = Неизвестно +prison-shuttle-call-to-prison = Отправить в каторгу +prison-shuttle-recall-to-station = Вернуть на станцию +prison-shuttle-call-unavailable = Вызов недоступен +prison-shuttle-on-cooldown = Перезарядка +prison-shuttle-cooldown-time = Доступно через { $time } +prison-shuttle-info-ready = Шаттл готов к отправке + +# System +lavaland-weather-warning-ash-storm-light = Обнаружена легкая пепельная буря. Рекомендуется найти укрытие. +lavaland-weather-warning-ash-storm-heavy = Обнаружена СИЛЬНАЯ пепельная буря. СРОЧНО ищите укрытие! +lavaland-weather-warning-volcanic-activity = Обнаружена повышенная вулканическая активность. Остерегайтесь падающих пород и новых лавовых потоков. +lavaland-weather-warning-acid-rain = Обнаружен кислотный дождь. Используйте кислотостойкую защиту. +lavaland-weather-warning-wind = Обнаружен штормовой ветер. Закрепите снаряжение и будьте готовы к сильным порывам. +lavaland-weather-warning-default = Обнаружены аномальные погодные условия. Будьте осторожны. + +lavaland-weather-end-ash-storm-light = Легкая пепельная буря закончилась. Температура возвращается к норме. Можно выходить из укрытий. +lavaland-weather-end-ash-storm-heavy = СИЛЬНАЯ пепельная буря закончилась. Опасность миновала. Проверьте состояние снаряжения. +lavaland-weather-end-volcanic-activity = Вулканическая активность прекратилась. Новые лавовые образования остывают. +lavaland-weather-end-acid-rain = Кислотный дождь закончился. Химическая активность снижается. +lavaland-weather-end-wind = Штормовой ветер утих. Можно ослабить меры предосторожности. +lavaland-weather-end-default = Аномальные погодные условия прекратились. Окружающая среда стабилизируется. + +lavaland-weather-damaged-ash-storm-light = Мелкий пепел забивается под вашу одежду, оставляя болезненные ожоги +lavaland-weather-damaged-ash-storm-heavy = Раскаленные частицы копоти впиваются в вашу кожу, причиняя невыносимую боль +lavaland-weather-damaged-acid-rain = Кислота разъедает вашу кожу, оставляя химические ожоги +lavaland-weather-damaged-default = Враждебная среда причиняет вам дискомфорт + +lavaland-hand-capsule-spawn-failed = Невозможно выпустить капсулу здесь +lavaland-hand-capsule-spawn-failed-box = Невозможно выпустить капсулу здесь. Необходима расчищенная зона {$box} + +ore-processor-points = На балансе содержится {$points} очков. +ore-processor-add-points = На баланс карты начислено {$points} очков. +points-capital-add-points = На карту зачислено {$points} очков. + +legion-core-interact-failed = Вы не можете никак применить {$name}. +legion-core-interact-healed = Ядро рассыпается даруя вам легкость. diff --git a/Resources/Locale/ru-RU/_wega/materials/materials.ftl b/Resources/Locale/ru-RU/_wega/materials/materials.ftl index d41f68aaa50..eb2ecc9de8c 100644 --- a/Resources/Locale/ru-RU/_wega/materials/materials.ftl +++ b/Resources/Locale/ru-RU/_wega/materials/materials.ftl @@ -1 +1,6 @@ +# Metals +materials-magmite = магмитовая сталь materials-runemetal = рунический метал + +# Ores +materials-raw-magmite = магмитовая руда diff --git a/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_desc.ftl b/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_desc.ftl new file mode 100644 index 00000000000..5c29bb73d15 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_desc.ftl @@ -0,0 +1,11 @@ +nav-map-beacon-default-desc = Станционный Маяк. + +nav-map-beacon-lavaland-signal-building-desc = Передаваемый сигнал какого-то объекта. +nav-map-beacon-handheld-default-desc = Кем-то оставленный маячок, передающий постоянный сигнал. + +nav-map-beacon-lavaland-signal-hierophant-desc = Таинственная Арена в глубинах Лавы... +nav-map-beacon-lavaland-signal-bdm-desc = Кто-то всё ещё работает в глубинах... +nav-map-beacon-lavaland-signal-mega-legion-desc = Бесчисленные кости всё ещё жаждут битвы... +nav-map-beacon-lavaland-signal-colossus-desc = Забытая мелодия. Она словно зовёт... +nav-map-beacon-lavaland-signal-ashdrake-desc = Вроде здесь как-то жарче чем обычно..? +nav-map-beacon-lavaland-signal-bubblegum-desc = Кровь стынет в жилах от этого сигнала... diff --git a/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_names.ftl b/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_names.ftl new file mode 100644 index 00000000000..9517499f46e --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/navmap-beacons/beacon_names.ftl @@ -0,0 +1,14 @@ +station-beacon-cargo-lavaland-avanpost = Аванпост Лаваленда +station-beacon-security-penal-servitude = Каторга + +nav-map-beacon-handheld-default = Ручной маячок +nav-map-beacon-lavaland-signal-winterreserve = Зимний Заповедник +nav-map-beacon-lavaland-signal-biosphere = Биосфера +nav-map-beacon-lavaland-signal-beach = Пляж + +nav-map-beacon-lavaland-signal-hierophant = Ревностный сигнал +nav-map-beacon-lavaland-signal-bdm = Потерянный сигнал +nav-map-beacon-lavaland-signal-mega-legion = Многоголосый сигнал +nav-map-beacon-lavaland-signal-colossus = Ангельский сигнал +nav-map-beacon-lavaland-signal-ashdrake = Огненный сигнал +nav-map-beacon-lavaland-signal-bubblegum = Кровавый сигнал diff --git a/Resources/Locale/ru-RU/_wega/pinpointer/handheldbeacon.ftl b/Resources/Locale/ru-RU/_wega/pinpointer/handheldbeacon.ftl new file mode 100644 index 00000000000..9eec3426aff --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/pinpointer/handheldbeacon.ftl @@ -0,0 +1,2 @@ +handhel-beacon-verb-toggle-on = Включить маячок +handhel-beacon-verb-toggle-off = Выключить маячок diff --git a/Resources/Locale/ru-RU/_wega/preferences/ui/loadout-groups.ftl b/Resources/Locale/ru-RU/_wega/preferences/ui/loadout-groups.ftl index 3fcc1af7fa7..6e16e450848 100644 --- a/Resources/Locale/ru-RU/_wega/preferences/ui/loadout-groups.ftl +++ b/Resources/Locale/ru-RU/_wega/preferences/ui/loadout-groups.ftl @@ -38,6 +38,14 @@ loadout-group-quartermaster-socks = Квартирмейстер, носки loadout-group-postman-head = Почтальон, голова loadout-group-postman-jumpsuit = Почтальон, комбинезон loadout-group-postman-backpack = Почтальон, рюкзак +loadout-group-shaft-miner-backpack = Шахтёр, рюкзак +loadout-group-shaft-miner-jumpsuit = Шахтёр, комбинезон +loadout-group-shaft-miner-outerclothing = Шахтёр, верхняя одежда +loadout-group-shaft-miner-shoes = Шахтёр, обувь +loadout-group-shaft-miner-medic-head = Шахтёрский медик, голова +loadout-group-shaft-miner-medic-backpack = Шахтёрский медик, рюкзак +loadout-group-shaft-miner-medic-jumpsuit = Шахтёрский медик, комбинезон +loadout-group-shaft-miner-medic-gloves = Шахтёрский медик, перчатки # Engineering loadout-group-chief-engineer-top = Старший инженер, верхнее белье loadout-group-chief-engineer-bottom = Старший инженер, нижнее белье @@ -69,3 +77,7 @@ loadout-group-surgeon-jumpsuit = Хирург, комбинезон # Effects loadout-group-allowed-sex-restriction = Этот предмет недоступен для вашего текущего пола. +loadout-group-achievement-restriction-any = Требуется достичь хотя бы одной из следующих ачивок: + {$achievements} +loadout-group-achievement-restriction-all = Требуется достичь всех следующих ачивок: + {$achievements} diff --git a/Resources/Locale/ru-RU/_wega/prototypes/access/accesses.ftl b/Resources/Locale/ru-RU/_wega/prototypes/access/accesses.ftl index fb59a28e9ce..803ef69106b 100644 --- a/Resources/Locale/ru-RU/_wega/prototypes/access/accesses.ftl +++ b/Resources/Locale/ru-RU/_wega/prototypes/access/accesses.ftl @@ -1 +1,2 @@ -id-card-access-level-empty = Пустой \ No newline at end of file +id-card-access-level-empty = Пустой +id-card-access-level-lavaland-avanpost = Аванпост diff --git a/Resources/Locale/ru-RU/_wega/reagents/meta/medicine.ftl b/Resources/Locale/ru-RU/_wega/reagents/meta/medicine.ftl index a873078cb20..0f134c345ae 100644 --- a/Resources/Locale/ru-RU/_wega/reagents/meta/medicine.ftl +++ b/Resources/Locale/ru-RU/_wega/reagents/meta/medicine.ftl @@ -5,4 +5,6 @@ reagent-desc-unholywater = Проклятая версия святой воды reagent-name-formaldehyde = формальдегид reagent-desc-formaldehyde = Сильный консервант, замедляющий разложение тканей. Токсичен для живых. reagent-name-mutadon = мутадон -reagent-desc-mutadon = Экспериментальное лекарство, вызывающее обратные генетические мутации. \ No newline at end of file +reagent-desc-mutadon = Экспериментальное лекарство, вызывающее обратные генетические мутации. +reagent-name-lavaland-serum = сыворотка лаваленда +reagent-desc-lavaland-serum = Странная жидкость с пепельным осадком. diff --git a/Resources/Locale/ru-RU/_wega/reagents/meta/potion.ftl b/Resources/Locale/ru-RU/_wega/reagents/meta/potion.ftl index 0e4c2c18d79..fc4a24778a9 100644 --- a/Resources/Locale/ru-RU/_wega/reagents/meta/potion.ftl +++ b/Resources/Locale/ru-RU/_wega/reagents/meta/potion.ftl @@ -24,3 +24,5 @@ reagent-name-cellular-resist-potion = зелье клеточной защиты reagent-desc-cellular-resist-potion = Защищает клетки организма от дегенеративных изменений. reagent-name-iron-skin-resist-potion = зелье железной кожи reagent-desc-iron-skin-resist-potion = Временно укрепляет кожные покровы, повышая устойчивость к физическим повреждениям. +reagent-name-stabilizing-serum-potion = сыворотка стабилизации +reagent-desc-stabilizing-serum-potion = Стабилизирует активные ядра легиона и может быть... diff --git a/Resources/Locale/ru-RU/_wega/recipes/tags.ftl b/Resources/Locale/ru-RU/_wega/recipes/tags.ftl index 1e17ce35116..2739cd830cc 100644 --- a/Resources/Locale/ru-RU/_wega/recipes/tags.ftl +++ b/Resources/Locale/ru-RU/_wega/recipes/tags.ftl @@ -4,4 +4,6 @@ construction-graph-tag-sunflower = подсолнух construction-graph-tag-poppy = мак construction-graph-tag-peaceflower = пион construction-graph-tag-alienberries = инопланетные ягоды -construction-graph-tag-soil-bag = мешок почвы \ No newline at end of file +construction-graph-tag-soil-bag = мешок почвы +construction-graph-tag-explorer-suit = костюм исследователя +construction-graph-tag-goliath-cloak = плащ голиафа diff --git a/Resources/Locale/ru-RU/_wega/research/technologies.ftl b/Resources/Locale/ru-RU/_wega/research/technologies.ftl index c41cb7d81f7..df3d0a90da2 100644 --- a/Resources/Locale/ru-RU/_wega/research/technologies.ftl +++ b/Resources/Locale/ru-RU/_wega/research/technologies.ftl @@ -12,4 +12,4 @@ research-technology-mining-servers = Майнинг сервера research-technology-pro-surgery = Продвинутые хирургические инструменты research-technology-implant_sb = Импланты СБ research-technology-pro-robotic = Продвинутая робототехника -research-technology-handmodule = Манипуляторы киборгов \ No newline at end of file +research-technology-handmodule = Манипуляторы киборгов diff --git a/Resources/Locale/ru-RU/_wega/seeds/seeds.ftl b/Resources/Locale/ru-RU/_wega/seeds/seeds.ftl index 4ac256d92ec..924b72bedf0 100644 --- a/Resources/Locale/ru-RU/_wega/seeds/seeds.ftl +++ b/Resources/Locale/ru-RU/_wega/seeds/seeds.ftl @@ -4,6 +4,8 @@ seeds-sunflower-name = подсолнух seeds-sunflower-display-name = подсолнух seeds-clownflower-name = цветок клоуна seeds-clownflower-display-name = цветок клоуна +seeds-fireblossomflower-name = огнецвет +seeds-fireblossomflower-display-name = огнецвет seeds-moneyCabbage-name = денежная капуста seeds-moneyCabbage-display-name = денежное дерево seeds-demonicWatermelon-name = демонический арбуз diff --git a/Resources/Locale/ru-RU/_wega/shell.ftl b/Resources/Locale/ru-RU/_wega/shell.ftl new file mode 100644 index 00000000000..e69de29bb2d diff --git a/Resources/Locale/ru-RU/_wega/species/species.ftl b/Resources/Locale/ru-RU/_wega/species/species.ftl index b47b6e7fcc5..197f6ed577b 100644 --- a/Resources/Locale/ru-RU/_wega/species/species.ftl +++ b/Resources/Locale/ru-RU/_wega/species/species.ftl @@ -6,3 +6,4 @@ species-name-android = Андроид species-name-phantom = Фантом species-name-harpy = Гарпия species-name-ariral = Арирал +species-name-ashwalker = Пеплоходец diff --git a/Resources/Locale/ru-RU/_wega/stack/stacks.ftl b/Resources/Locale/ru-RU/_wega/stack/stacks.ftl index 2c70c069cdb..afa47151a1d 100644 --- a/Resources/Locale/ru-RU/_wega/stack/stacks.ftl +++ b/Resources/Locale/ru-RU/_wega/stack/stacks.ftl @@ -30,4 +30,28 @@ stack-morphine = [1] тюбик нанопасты [few] тюбика нанопасты *[other] тюбиков нанопасты - } \ No newline at end of file + } +stack-sinew = + { $amount -> + [1] сухожилие + [2] сухожилия + [3] сухожилия + [4] сухожилия + *[5] сухожилий + } +stack-chitin = + { $amount -> + [1] хитин + [few] хитина + *[other] хитина + } +stack-dragon-hide = + { $amount -> + [1] кожа дракона + [2] кожи дракона + [3] кожи дракона + [4] кожи дракона + *[other] кож дракона + } +stak-magmite = магмит +magmite-ore = магмитовая руда diff --git a/Resources/Locale/ru-RU/_wega/tiles/tiles.ftl b/Resources/Locale/ru-RU/_wega/tiles/tiles.ftl new file mode 100644 index 00000000000..3b993a73bb6 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/tiles/tiles.ftl @@ -0,0 +1,2 @@ +tiles-sepia-floor = плитка сепия +tiles-necropolis-floor = каменный пол diff --git a/Resources/Locale/ru-RU/_wega/utility-vendor/utility-vendor.ftl b/Resources/Locale/ru-RU/_wega/utility-vendor/utility-vendor.ftl new file mode 100644 index 00000000000..65ff013f94d --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/utility-vendor/utility-vendor.ftl @@ -0,0 +1,13 @@ +# Ui +utility-vendor-ui-balance = Баланс: {$points} очков +utility-vendor-ui-points = ОЧКОВ +utility-vendor-ui-footer = Утилизация - наше всё! +utility-vendor-ui-tab-all = Все + +# Categories + +utility-vendor-category-basic = Базовое снаряжение +utility-vendor-category-gear = Шахтёрское снаряжение +utility-vendor-category-consumables = Расходные материалы +utility-vendor-category-digging = Инструменты для копания +utility-vendor-category-misc = Разное diff --git a/Resources/Locale/ru-RU/_wega/voucher/voucherkits.ftl b/Resources/Locale/ru-RU/_wega/voucher/voucherkits.ftl index 227668bbdc5..62b308ec69d 100644 --- a/Resources/Locale/ru-RU/_wega/voucher/voucherkits.ftl +++ b/Resources/Locale/ru-RU/_wega/voucher/voucherkits.ftl @@ -1,3 +1,4 @@ +# security voucher-security-deterrent-name = Набор Сдерживания voucher-security-spare-weapons-name = Набор Запасного вооружения voucher-security-first-aid-name = Набор Первой помощи @@ -9,3 +10,14 @@ voucher-security-spare-weapons-desc = Содержит в себе пару за voucher-security-first-aid-desc = Содержит в себе пару наборов турникетов, пару мазей, пару наборов от ушибов, пакет крови и экстренный медипен voucher-security-riots-desc = Содержит в себе пару баллистических и противоударных щитов, пару кластерных светошумовых гранат, пару шок-дубинок и стяжки voucher-security-supervision-desc = Содержит в себе пару нагрудных камер, 4 тренировчоных магазина для Mk58, дубинку, запасную шок-дубинку, пару наручников и вспышку + +# Salvage +voucher-explorer-kit-name = Набор Иследователя +voucher-fulton-kit-name = Набор Эвакуации фултона +voucher-crusher-kit-name = Дробильный набор +voucher-base-kit-name = Базовый шахтёрский набор + +voucher-explorer-kit-desc = Содержит в себе один шахтёрская разгрузка и одну спасательную капсулу. +voucher-fulton-kit-desc = Содержит в себе один набор для эвакуации Фултона (шар и маяк). +voucher-crusher-kit-desc = Содержит в себе один кинетический крушитель и один карманный огнетушитель. +voucher-base-kit-desc = Содержит в себе почти стандартный набор шахтёра из шахтёрского ящика. diff --git a/Resources/Locale/ru-RU/_wega/weapons/melee/upgrades.ftl b/Resources/Locale/ru-RU/_wega/weapons/melee/upgrades.ftl new file mode 100644 index 00000000000..1a1891dcf89 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/weapons/melee/upgrades.ftl @@ -0,0 +1,19 @@ +upgradeable-crusher-popup-no-upgrades = Нет улучшений для извлечения! +upgradeable-crusher-popup-upgrade-limit = Достигнуто максимальное количество улучшений! +upgradeable-crusher-popup-already-present = Это улучшение уже установлено! +crusher-upgrade-popup-insert = Вы установили { $upgrade } на { $crusher }! +crusher-upgrade-popup-remove = Вы извлекли { $upgrade }! + +crusher-upgrade-examine-text-legion = Имеет [color=#bbf134][bold]ускоренную перезарядку.[/bold][/color] +crusher-upgrade-examine-text-goliath = Чем ниже здоровье, тем [color=#ec9b2d][bold]выше урон.[/bold][/color] +crusher-upgrade-examine-text-ancient-goliath = Чем больше здоровье у врага, тем [color=#ec9b2d][bold]выше урон.[/bold][/color] +crusher-upgrade-examine-text-watcher = Оглушает цель при попадании [color=#2decec][bold]дестабилизатором.[/bold][/color] +crusher-upgrade-examine-text-ice-watcher = Усиленное [color=#2decec][bold]замедление[/bold][/color] при попадании. +crusher-upgrade-examine-text-magma-watcher = Наносит [color=#ec5b2d][bold]дополнительный тепловой урон[/bold][/color] помеченным целям. +crusher-upgrade-examine-text-marrow-weaver = Помеченные цели [color=#6fcd80][bold]получают на 10% больше урона[/bold][/color] в течение 2 секунд после разрушения метки. +crusher-upgrade-examine-text-frostbite-weaver = Помеченные цели [color=#62edf5][bold]наносят на 10% меньше урона.[/bold][/color] +crusher-upgrade-examine-text-blood-drunk-miner = Дает [color=#9b2dec][bold]иммунитет[/bold][/color] при атаке помеченных целей. +crusher-upgrade-examine-text-ash-drake = Создает [color=#5b5b5b][bold]взрывную волну[/bold][/color] при атаке помеченных целей. +crusher-upgrade-examine-text-bubblegum = [color=#ec2d5b][bold]Лечит[/bold][/color] при атаке в ближнем бою. +crusher-upgrade-examine-text-colossus = Усиливает [color=#ec9b2d][bold]дальнобойные атаки.[/bold][/color] +crusher-upgrade-examine-text-hierophant = Создает [color=#8f00ec][bold]защитный барьер[/bold][/color] при атаке помеченных целей. diff --git a/Resources/Locale/ru-RU/_wega/weapons/ranged/upgrades.ftl b/Resources/Locale/ru-RU/_wega/weapons/ranged/upgrades.ftl new file mode 100644 index 00000000000..46c0a6a9ed4 --- /dev/null +++ b/Resources/Locale/ru-RU/_wega/weapons/ranged/upgrades.ftl @@ -0,0 +1,4 @@ +upgradeable-gun-popup-no-upgrades = В оружии нету никаких апгрейдов. + +gun-upgrade-examine-text-aoe = Имеет [color=#ec9b2d][bold]урон по площади.[/bold][/color] +gun-upgrade-examine-text-lifesteal = Немного [color=green][bold]лечит[/bold][/color] при попадании в цель. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/backpacks/duffelbag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/backpacks/duffelbag.ftl index b4f8affe872..450acc73172 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/backpacks/duffelbag.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/backpacks/duffelbag.ftl @@ -2,6 +2,9 @@ ent-ClothingBackpackDuffelVoidThruster = вещмешок с деталями д .desc = { ent-ClothingBackpackDuffel.desc } ent-ClothingBackpackDuffelVoidGyroscope = вещмешок с деталями гироскопа .desc = { ent-ClothingBackpackDuffel.desc } +ent-ClothingBackpackDuffelSalvageBaseKit = { ent-ClothingBackpackDuffelSalvage } + .desc = { ent-ClothingBackpackDuffelSalvage.desc } + .suffix = Набор ent-ClothingBackpackDuffelSyndicateFilledXC67 = набор "xC-67" .desc = Громко и мощно: Штурмовая винтовка "xC-67" и три магазина к нему на 45 патронов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/boxes/general.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/boxes/general.ftl new file mode 100644 index 00000000000..975169dd531 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/boxes/general.ftl @@ -0,0 +1,2 @@ +ent-BoxHandheldBeacons = коробка маячков + .desc = { ent-BoxCardboard.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/crates/lavaland.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/crates/lavaland.ftl new file mode 100644 index 00000000000..02f2265ab71 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/crates/lavaland.ftl @@ -0,0 +1,9 @@ +ent-CrateNecropolisFilled = { ent-CrateNecropolis } + .desc = { ent-CrateNecropolis.desc } + .suffix = Заполенный +ent-CrateNecropolisAshDrakeFilled = { ent-CrateNecropolis } + .desc = { ent-CrateNecropolis.desc } +ent-CrateNecropolisColossusFilled = { ent-CrateNecropolis } + .desc = { ent-CrateNecropolis.desc } +ent-CrateNecropolisBubblegumFilled = { ent-CrateNecropolis } + .desc = { ent-CrateNecropolis.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/cargo.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/cargo.ftl new file mode 100644 index 00000000000..89dbc299ec4 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/cargo.ftl @@ -0,0 +1,3 @@ +ent-LockerSalvageSpecialistLavalandFilled = { ent-LockerSalvageSpecialist } + .desc = { ent-LockerSalvageSpecialist.desc } + .suffix = Заполненный, Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/suit_storage.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/suit_storage.ftl new file mode 100644 index 00000000000..9897ab2ccd0 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/catalog/fills/lockers/suit_storage.ftl @@ -0,0 +1,3 @@ +ent-SuitStorageExplorerSuit = { ent-SuitStorageBase } + .desc = { ent-SuitStorageBase.desc } + .suffix = Костюм Исследователя diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/accessories/accessories.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/accessories/accessories.ftl new file mode 100644 index 00000000000..43b5754bf1e --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/accessories/accessories.ftl @@ -0,0 +1,4 @@ +ent-AccessoriesClothingBoneTalisman = костяной талисман + .desc = Примитивный талисман, сплетенный из костей и сухожилий. Обеспечивает незначительную защиту от грубой силы и жары. +ent-AccessoriesClothingSkullCodpiece = гульфик из черепа + .desc = Выбеленный череп какого-то несчастного существа, переделанный в паховую броню. Обеспечивает незначительную защиту от грубой силы и жары. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/belt/belts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/belt/belts.ftl index 5cb801e4382..0162f48a160 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/belt/belts.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/belt/belts.ftl @@ -1,3 +1,5 @@ +ent-ClothingBeltSecondSalvageWebbing = РПС шахтёра + .desc = Универсальная разгрузочная система для работы в космосе и не только. ent-ClothingBeltStraponAvian = птичий страпон .desc = Такой же мягкий и эластичный дилдо, но находящийся на поясе. Перед использованием рекомендуется обязательное смазывание! ent-ClothingBeltStraponCanine = собачий страпон @@ -11,4 +13,4 @@ ent-ClothingBeltStraponHuman = человеческий страпон ent-ClothingBeltWhiteSheath = белые сабельные ножны .desc = Стиль, блеск, всё для лучших сабель во вселенной. ent-ClothingBeltSheriffSheath = сабельные ножны шерифа - .desc = Практичность, прочность, сабля точно не окажется в вашей ноге. \ No newline at end of file + .desc = Практичность, прочность, сабля точно не окажется в вашей ноге. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/bracers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/bracers.ftl new file mode 100644 index 00000000000..1b43e870a6c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/bracers.ftl @@ -0,0 +1,2 @@ +ent-ClothingHandsBoneBracers = костяные наручи + .desc = Наручи из костяных пластин. Обеспечивают небольшую защиту рук, не ограничивая движений. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/gloves.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/gloves.ftl index cdcdb700e41..6e9e9cc214c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/gloves.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/hands/gloves.ftl @@ -8,3 +8,5 @@ ent-ClothingHandsGlovesCaptainWhite = белые перчатки капитан .desc = Королевские белые перчатки с золотой отделкой. Шикарны. ent-ClothingHandsGlovesSheriff = перчатки шерифа .desc = Перчатки с эргономичной формой, предназначенные для удержания револьвера. +ent-ClothingHandsGlovesConcussiveGauntlets = ударные перчатки + .desc = Кирки... для ваших рук! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/helmets.ftl new file mode 100644 index 00000000000..a4c913a1dd6 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/helmets.ftl @@ -0,0 +1,2 @@ +ent-ClothingHeadHelmetHostileEnv = H.E.C.K. шлем + .desc = Экспериментальный Кинетический Защитный Обшитый Шлем: шлем, специально созданный для защиты от широкого спектра опасностей Лазиса. Прошлому его владельцу этого, видимо, не хватило. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/hoods.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/hoods.ftl index 1d9dd4a7a9a..3d7e43df0dd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/hoods.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/head/hoods.ftl @@ -8,3 +8,17 @@ ent-ClothingHeadHatHoodWinterBlueShield = зимний копюшон офице .desc = { ent-ClothingHeadHatHoodWinterBase.desc } ent-ClothingHeadHatHoodPostman = копюшон почтальона .desc = { ent-ClothingHeadHatHoodWinterBase.desc } +ent-ClothingHeadHatHoodExplorer = копюшон исследователя + .desc = Он довольно плотный и закрывающий, разве он вам не нужен? +ent-ClothingHeadHatHoodExplorerKhaki = { ent-ClothingHeadHatHoodExplorer } + .desc = { ent-ClothingHeadHatHoodExplorer.desc } +ent-ClothingHeadHatHoodExplorerMedical = копюшон исследователя медика + .desc = { ent-ClothingHeadHatHoodExplorer.desc } +ent-ClothingHeadHatHoodExplorerBDM = { ent-ClothingHeadHatHoodExplorer } + .desc = { ent-ClothingHeadHatHoodExplorer.desc } +ent-ClothingHeadHatHoodExplorerReinforced = усиленный копюшон исследователя + .desc = { ent-ClothingHeadHatHoodExplorer.desc } +ent-ClothingHeadHatHoodExplorerKhakiReinforced = { ent-ClothingHeadHatHoodExplorerReinforced } + .desc = { ent-ClothingHeadHatHoodExplorer.desc } +ent-ClothingHeadHatHoodPathfinder = копюшон первопроходца + .desc = Он довольно плотный и закрывающий, разве он вам не нужен? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/neck/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/neck/misc.ftl index d58e01c93d9..f8ed7d2d033 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/neck/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/neck/misc.ftl @@ -25,4 +25,40 @@ ent-ClothingNeckWingsTail = демонические крылья ent-ClothingNecKwingsAngel = ангельские крылья .desc = Вы чувствуете близость к божественному. ent-ClothingNeckShockCollar = электрический ошейник - .desc = Электрический ошейник, который включается по сигналу. \ No newline at end of file + .desc = Электрический ошейник, который включается по сигналу. +ent-ClothingNeckNecklaceRuby = ожерелье + .desc = Как бы я хотел быть закованным в золотую цепь! + .suffix = Рубин +ent-ClothingNeckNecklaceEmerald = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Изумруд +ent-ClothingNeckNecklaceTopaz = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Топаз +ent-ClothingNeckNecklaceRuperium = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Рупериум +ent-ClothingNeckNecklaceFrozenDiamond = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Замороженный алмаз +ent-ClothingNeckNecklaceHardenedShell = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Затвердевшая раковина +ent-ClothingNeckNecklaceStabilizedBaroxuldium = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Стабилизированный бароксульдий +ent-ClothingNeckNecklaceDragonPearls = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Драконий жемчуг +ent-ClothingNeckNecklaceCompactedDilithium = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Уплотненный дилитий +ent-ClothingNeckNecklaceHollowCrystal = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Полый кристалл +ent-ClothingNeckNecklaceBloodstone = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Кровавый камень +ent-ClothingNeckNecklaceBluespaceData = { ent-ClothingNeckNecklaceRuby } + .desc = { ent-ClothingNeckNecklaceRuby.desc } + .suffix = Блюспейс дата-кристалл diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/armor.ftl index 450460b20d8..d13e8af0411 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/armor.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/armor.ftl @@ -5,4 +5,18 @@ ent-ClothingOuterArmorBlueShield = бронежилет офицера "Сини ent-ClothingOuterArmorSherifCarapace = панцирь шерифа .desc = Бронированный нагрудник, обеспечивающий защиту и при этом обладающий мобильностью и гибкостью. Выдаётся только лучшим представителям станции. ent-ClothingOuterArmorCaptainCarapaceWhite = белый панцирь капитана - .desc = Бронированный нагрудник, обеспечивающий защиту и при этом обладающий мобильностью и гибкостью. Выдаётся только лучшим представителям станции. \ No newline at end of file + .desc = Бронированный нагрудник, обеспечивающий защиту и при этом обладающий мобильностью и гибкостью. Выдаётся только лучшим представителям станции. +ent-ClothingOuterArmorExplorerSuit = костюм исследователя + .desc = Это прочный и усиленный тип брони, предназначенный для выживания в экстремальных условиях. +ent-ClothingOuterArmorExplorerSuitKhaki = { ent-ClothingOuterArmorExplorerSuit } + .desc = { ent-ClothingOuterArmorExplorerSuit.desc } +ent-ClothingOuterArmorExplorerSuitMedical = костюм исследователя медика + .desc = Улучшенная версия обычной брони, в одном экземпляре, для помощника на полях смерти и глупости. +ent-ClothingOuterArmorExplorerSuitBDM = { ent-ClothingOuterArmorExplorerSuit } + .desc = { ent-ClothingOuterArmorExplorerSuit.desc } +ent-ClothingOuterArmorExplorerSuitReinforced = усиленный костюм исследователя + .desc = Улучшенная версия обычной брони. Дает пользователю больше возможностей для ошибок. +ent-ClothingOuterArmorExplorerSuitKhakiReinforced = { ent-ClothingOuterArmorExplorerSuitReinforced } + .desc = { ent-ClothingOuterArmorExplorerSuitReinforced.desc } +ent-ClothingOuterArmorHostileEnv = H.E.C.K. костюм + .desc = Экспериментальный Кинетический Защитный Обшитый Костюм: костюм, специально созданный для защиты от широкого спектра опасностей Лазиса. Прошлому его владельцу этого, видимо, не хватило. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/coats.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/coats.ftl index 89cf8d71388..792669f44e4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/coats.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/outerclothing/coats.ftl @@ -11,4 +11,6 @@ ent-ClothingOuterCoatPostman = пальто почтальона ent-ClothingOuterCoatSherif = торжественная куртка шерифа .desc = Торжественная куртка шерифа, пусть станция узрит закон в стиле. ent-ClothingOuterCoatWhite = торжественная белая куртка капитана - .desc = Капитанская торжественная куртка, инкрустированная золотом и ослепительным белым светом. \ No newline at end of file + .desc = Капитанская торжественная куртка, инкрустированная золотом и ослепительным белым светом. +ent-ClothingOuterCoatPathfinderCloak = плащ первопроходца + .desc = Плотный плащ, сотканный из сухожилий и шкур, предназначенный для защиты своего владельца от неблагоприятных погодных условий. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpskirt.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpskirt.ftl index e88f9c17693..1db3a126ea8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpskirt.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpskirt.ftl @@ -25,7 +25,7 @@ ent-ClothingUniformJumpskirtTurtleneckWhite = белая водолазка с ent-ClothingUniformJumpskirtTurtleneckBrown = коричневая водолазка с юбкой .desc = { ent-ClothingUniformJumpsuitTurtleneckBrown.desc } ent-ClothingUniformJumpskirtTurtleneckGrey = серая водолазка с юбкой - .desc = { ent-ClothingUniformJumpsuitTurtleneckGrey.desc } + .desc = { ent-ClothingUniformJumpsuitTurtleneckGrey.desc } ent-ClothingUniformJumpskirtTurtleneckAquamarine = аквамариновая водолазка с юбкой .desc = { ent-ClothingUniformJumpsuitTurtleneckAquamarine.desc } ent-ClothingUniformJumpskirtTurtleneckPink = розовая водолазка с юбкой @@ -33,8 +33,12 @@ ent-ClothingUniformJumpskirtTurtleneckPink = розовая водолазка ent-ClothingUniformJumpskirtTurtleneckBlackSleeveless = чёрная безрукавка с юбкой .desc = { ent-ClothingUniformJumpsuitTurtleneckBlackSleeveless.desc } ent-ClothingUniformJumpskirtTurtleneckWhiteSleeveless = белая безрукавка с юбкой - .desc = { ent-ClothingUniformJumpsuitTurtleneckWhiteSleeveless.desc } + .desc = { ent-ClothingUniformJumpsuitTurtleneckWhiteSleeveless.desc } ent-ClothingUniformJumpskirtTurtleneckSalat = салатовая водолазка с юбкой .desc = { ent-ClothingUniformJumpsuitTurtleneckSalat.desc } ent-ClothingUniformJumpskirtWhiteCaptain = белая юбка-комбинезон капитана .desc = Белая юбка-комбинезон капитана символизирующая, что ваша зарплата явно превышает нормы. +ent-ClothingUniformJumpskirtExplorer = юбка-комбинезон исследователя + .desc = Плотная и удобная, предназначена для тяжелой работы в сложных условиях. +ent-ClothingUniformJumpskirtExplorerKhaki = юбка-комбинезон исследователя + .desc = Плотная и удобная, предназначена для тяжелой работы в сложных условиях. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpsuits.ftl index 2049121532a..d7d75b15646 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/clothing/uniforms/jumpsuits.ftl @@ -56,3 +56,7 @@ ent-ClothingUniformJumpsuitWhiteCaptain = белый комбинезон кап .desc = Белый комбинезон капитана символизирующий, что ваша зарплата явно превышает нормы. ent-ClothingUniformJumpsuitSheriff = комбинезон шерифа .desc = Комбинезон показывающий вашу статусность, как ужасн... великого правителя. +ent-ClothingUniformJumpsuitExplorer = комбинезон исследователя + .desc = Плотная и удобная, предназначена для тяжелой работы в сложных условиях. +ent-ClothingUniformJumpsuitExplorerKhaki = комбинезон исследователя + .desc = Плотная и удобная, предназначена для тяжелой работы в сложных условиях. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/effects/lavaland.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/effects/lavaland.ftl new file mode 100644 index 00000000000..1562639b441 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/effects/lavaland.ftl @@ -0,0 +1,19 @@ +ent-EffectMegaFaunaMarker = ох, нет... +ent-EffectAshDrakeFire = огонь +ent-EffectAshDrakeFireCircle = { ent-EffectAshDrakeFire } +ent-EffectAshDrakeFireWall = { ent-EffectAshDrakeFire } +ent-EffectAshDrakeCircle = ох, нет... +ent-EffectAshDrakeSafeMarker = сюда! +ent-EffectAshDrakeShadow = здесь! +ent-EffectAshDrakeFloorLavaTemp = { ent-FloorLavaEntity } + .desc = { ent-FloorLavaEntity.desc } +ent-EffectAshDrakeFloorLavaLessTemp = { ent-FloorLavaEntity } + .desc = { ent-FloorLavaEntity.desc } +ent-EffectHierophantSquare = Магия Иерофанта + .desc = Плазма никогда не была так опасна. +ent-EffectBubblegumHand = лапа Бубльгума + .desc = БЕРЕГИСЬ! +ent-EffectBubblegumHand = спавн лапы Бубльгума + .desc = БЕРЕГИСЬ! +ent-EffectBubblegumDashTrail = "..." + .desc = "..." diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/signals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/signals.ftl new file mode 100644 index 00000000000..8a06de51ff1 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/signals.ftl @@ -0,0 +1,12 @@ +ent-MarkerHierophantSignal = сигнал иерофанта + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-MarkerWinterReserveSignal = сигнал зимнего заповедника + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-MarkerBiosphereSignal = сигнал биосферы + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-MarkerBeachSignal = сигнал пляжа + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/jobs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/jobs.ftl index 5b3be8945b4..794617f5304 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/jobs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/jobs.ftl @@ -8,5 +8,9 @@ ent-SpawnPointBlueShieldOfficer = офицер синий щит .desc = { ent-SpawnPointJobBase.desc } ent-SpawnPointPostman = почтальон .desc = { ent-SpawnPointJobBase.desc } +ent-SpawnPointShaftMiner = шахтёр + .desc = { ent-SpawnPointJobBase.desc } +ent-SpawnPointShaftMinerMedic = шахтёрский медик + .desc = { ent-SpawnPointJobBase.desc } ent-SpawnPointWardenHelper = помощник смотрителя .desc = { ent-SpawnPointJobBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/bosses.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/bosses.ftl new file mode 100644 index 00000000000..df74338adcb --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/bosses.ftl @@ -0,0 +1,18 @@ +ent-SpawnMobBloodDrunkMinerLavaland = Спавнер Кровавого шахтёра + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ +ent-SpawnMobHierophantLavaland = Спавнер Иерофанта + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ +ent-SpawnMegaLegionLavaland = Спавнер Мега Легиона + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ +ent-SpawnColossusLavaland = Спавнер Колосса + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ +ent-SpawnAshDrakeLavaland = Спавнер Пепельного дракона + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ +ent-SpawnBubblegumLavaland = Спавнер Бубльгума + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд, НЕ МАППИТЬ diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/hostile.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/hostile.ftl new file mode 100644 index 00000000000..770683b964a --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/mobs/hostile.ftl @@ -0,0 +1,28 @@ +ent-SpawnMobGoliathLavaland = Спавнер Голиафа + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnMobAncientGoliathLavaland = Спавнер Древнего Голиафа + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnMobLegionLavaland = Спавнер Легиона + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnMobMarrowWeaverLavaland = Спавнер Костномозгового ткача + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnMobFrostbiteWeaverLavaland = Спавнер Морозного Костномозгового ткача + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +# Inhabitants +ent-SpawnInhabitantSquare = Спавнер Жителя заповедника + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnInhabitantHermit = Спавнер Отшельника + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnInhabitantBeachGuy = Спавнер Пляжного парня + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд +ent-SpawnInhabitantTranslocatedVeterinarian = Спавнер Перенесенного ветеринара + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/random/slots.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/random/slots.ftl new file mode 100644 index 00000000000..fb1f11adb50 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/markers/spawners/random/slots.ftl @@ -0,0 +1,3 @@ +ent-SpawnCursedSlotMachine = Спавнер Проклятой слот машины + .desc = { ent-MarkerBase.desc } + .suffix = Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_fauna.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_fauna.ftl new file mode 100644 index 00000000000..62cdf66a176 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_fauna.ftl @@ -0,0 +1,14 @@ +ent-MobAncientGoliath = древний голиаф + .desc = Очень древнее существо, которое существовало с незапамятных времен благодаря своей способности оставаться молодым. +ent-MobLegion = легион + .desc = Ужасное создание, покрытое запыленными черепами с горящими красными глазами. +ent-MobLegionLavaland = { ent-MobLegion } + .desc = { ent-MobLegion.desc } +ent-MobLegionDwarf = { ent-MobLegion } + .desc = { ent-MobLegion.desc } +ent-MobLegionSkull = череп легиона + .desc = Пока вы удивляетесь, почему... ПОЧЕМУ ИХ ТАК МНОГО, ААААААААААААА. +ent-MobMarrowWeaverLavaland = костномозговой ткач + .desc = Отвратительный гигантский паук с сочащимся из жвал ядом и хитином фиолетового цвета. +ent-MobFrostbiteWeaverLavaland = морозный костномозговой ткач + .desc = Отвратительный гигантский паук с сочащимся из жвал ядом и хитином голубого цвета. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_inhabitants.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_inhabitants.ftl new file mode 100644 index 00000000000..70157f855da --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_inhabitants.ftl @@ -0,0 +1,8 @@ +ent-MobHumanInhabitantSquare = житель заповедника + .desc = { ent-BaseMobHuman.desc } +ent-MobHumanInhabitantHermit = отшельник + .desc = { ent-BaseMobHuman.desc } +ent-MobHumanInhabitantBeachGuy = пляжный парень + .desc = { ent-BaseMobHuman.desc } +ent-MobHumanInhabitantTranslocatedVeterinarian = ветеринар + .desc = { ent-BaseMobHuman.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_megafauna.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_megafauna.ftl new file mode 100644 index 00000000000..e55d1ab889e --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/npcs/lavaland_megafauna.ftl @@ -0,0 +1,30 @@ +ent-MobBloodDrunkMiner = неизвестный шахтёр + .desc = { ent-BaseMobHuman.desc } +ent-MobHierophant = иерофант + .desc = Огромный загадочный скипетр, созданный из инопланетного металла и по-видимому наделенный собственным разумом. Возможно, его задача оборонять строение, в котором он находится. +ent-MobHierophantChaser = охотник иерофанта +ent-BaseMobMegaLegion = легион + .desc = Массивный плавающий череп, который наблюдает за некрополем. +ent-MobMegaLegion = { ent-BaseMobMegaLegion } + .desc = { ent-BaseMobMegaLegion.desc } +ent-MobMegaLegionSplitLeft = левая часть легиона + .desc = Ох, кто бы мог подумать, что это будет так отвратительно? +ent-MobMegaLegionSplitRight = правая часть легиона + .desc = { ent-MobMegaLegionSplitLeft.desc } +ent-MobMegaLegionSplitEye = глаз легиона + .desc = { ent-MobMegaLegionSplitLeft.desc } +ent-MobMegaLegionSplitMedium = средний легион + .desc = Что, снова..? +ent-MobMegaLegionSplitSmall = маленький легион + .desc = Когда же это закончится?! +ent-MobColossus = колосс + .desc = Падший ангел, бредущий по пустошам Лаваленда и карающий всех, кто кажется ему нечистым. +ent-MobAshDrake = пепельный дракон + .desc = Крылатое чудовище, почитаемый хранитель Некрополя. Ужас во плоти бродит по бесплодной пустоши, изрыгая потоки смертоносного пламени. +ent-MobLowerAshDrake = { ent-MobAshDrake } + .desc = { ent-MobAshDrake.desc } + .suffix = Низший +ent-MobBubblegum = бубльгум + .desc = Король всех демонов резни. +ent-MobBubblegumIllusion = { ent-MobBubblegum } + .desc = ... diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/player/ashwalker.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/player/ashwalker.ftl new file mode 100644 index 00000000000..d4304466309 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/player/ashwalker.ftl @@ -0,0 +1,2 @@ +ent-MobAshWalker = Урист МакПеплоходец + .desc = { ent-BaseMobAshWalker.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/species/ashwalker.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/species/ashwalker.ftl new file mode 100644 index 00000000000..5743384bd6b --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/mobs/species/ashwalker.ftl @@ -0,0 +1,5 @@ +ent-BaseMobAshWalker = Урист МакПеплоходец + .desc = { ent-BaseMobSpeciesOrganic.desc } + .suffix = Пеплоходец +ent-MobAshWalkerDummy = { ent-BaseSpeciesDummy } + .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/flora.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/flora.ftl new file mode 100644 index 00000000000..08897d46d0c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/flora.ftl @@ -0,0 +1,10 @@ +ent-FoodFloraCactusFruit = плод кактуса-бочонка + .desc = Сочный, покрытый тонкими колючками плод. Внутри скрывается кисло-сладкая мякоть, прекрасно утоляющая жажду. +ent-FoodFloraPolyporeMushroom = древесный трутовик + .desc = Жесткий, кожистый гриб, растущий на стволах деревьев. Несъедобен в сыром виде, но высушенные пластинки используются для изготовления трута и поделок. +ent-FoodFloraInocybeMushroom = бледный огнегриб + .desc = Хрупкий гриб с конусообразной шляпкой, испещренной трещинами. От него исходит тревожное, почти невидимое свечение. Очень опасен, но обладает странными свойствами. +ent-FoodFloraPorciniMushroom = дымчатый боровик + .desc = Крепкий, мясистый гриб с характерной коричневой шляпкой. При разломе издает едва уловимый запах дыма и старой бумаги. Обладает легким стимулирующим эффектом. +ent-FoodFloraEmbershroom = угольно-огненный трутовик + .desc = Тяжелый, почти каменный на ощупь гриб цвета потухшего угля. В темноте его прожилки слабо пульсируют тусклым красным светом. Вызывает эйфорию. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/produce.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/produce.ftl index ea95e0d6d25..f8d6a883f05 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/produce.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/consumable/food/produce.ftl @@ -6,6 +6,8 @@ ent-FlowerPeaceFlower = пион .desc = Нечто прекрасное. ent-FlowerClown = цветок клоуна .desc = Нечто ужасающее. +ent-FlowerFireBlossom = огнецвет + .desc = Нечто прекрасное. ent-FoodMoneyCabbage = денежная капуста .desc = Деньги, деньги, ДЕНЬГИ!! ent-FoodDemonicWatermelon = демонический арбуз diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/circuitboards/computer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/circuitboards/computer.ftl index e8b744fd103..73e8e92408a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/circuitboards/computer.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/circuitboards/computer.ftl @@ -2,3 +2,7 @@ ent-DnaModifierComputerCircuitboard = консоль модификатора-Д .desc = Консольная плата для консоли модификатора-ДНК. ent-MiningMonitoringComputerCircuitboard = консоль мониторинга майнинга (консольная плата) .desc = Консольная плата для консоли мониторинга майнинга. +ent-LavalandShuttleComputerCircuitboard = консоль шаттла лаваленда (консольная плата) + .desc = Консольная плата для консоли шаттла Лаваленда. +ent-LavalandPenalServitudeShuttleComputerCircuitboard = консоль каторжного шаттла лаваленда (консольная плата) + .desc = Консольная плата для консоли каторжного шаттла Лаваленда. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/pda.ftl index 3a1a1437274..37a14e4d81f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/pda.ftl @@ -12,5 +12,9 @@ ent-BlueShieldPDA = КПК офицера "Синий Щит" .desc = Ничем не примечательный КПК. ent-PostmanPDA = КПК почтальона .desc = Небольшой и надежный спутник почтальона, хранящий все маршруты и адреса. +ent-MinerPDA = КПК шахтёра + .desc = Пахнет пеплом. +ent-MinerMedicPDA = КПК шахтёра медика + .desc = Пахнет пеплом и спиртом. ent-WardenHelperPDA = КПК помощника смотрителя - .desc = { ent-BaseSecurityPDA.desc } \ No newline at end of file + .desc = { ent-BaseSecurityPDA.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/station_beacon.ftl new file mode 100644 index 00000000000..07792893fa8 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/devices/station_beacon.ftl @@ -0,0 +1,8 @@ +ent-DefaultStationBeaconCargoLavalandAvanpost = { ent-DefaultStationBeaconSupply } + .desc = { ent-DefaultStationBeaconSupply.desc } + .suffix = Аванпост Лаваленда +ent-DefaultStationBeaconSecurityPenalServitude = { ent-DefaultStationBeaconSecurity } + .desc = { ent-DefaultStationBeaconSecurity.desc } + .suffix = Каторга +ent-HandheldBeacon = ручной маячок + .desc = Маленький передатчик сигнала, необходимо развернуть для работы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/magic/books.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/magic/books.ftl new file mode 100644 index 00000000000..d4eec8b58a2 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/magic/books.ftl @@ -0,0 +1,2 @@ +ent-FireSelfSpellbook = книга заклинания самоподжога + .desc = { ent-BaseSpellbook.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/gems.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/gems.ftl new file mode 100644 index 00000000000..e6905e64bb6 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/gems.ftl @@ -0,0 +1,30 @@ +ent-BaseGem = { ent-BaseItem } + .desc = { ent-BaseItem.desc } +ent-GemRuby = рубин + .desc = Красный и блестит. +ent-GemSapphire = сапфир + .desc = Синий и блестит. +ent-GemEmerald = эмеральд + .desc = Зеленый и блестит. +ent-GemTopaz = топаз + .desc = Оранжевый и блестит. +ent-GemRuperiumBroken = сломанный рупериум + .desc = Зеленый... +ent-GemRuperium = рупериум + .desc = Зеленый и блестит. +ent-GemFrozenDiamond = замороженный алмаз + .desc = Блестит. +ent-GemHardenedShell = затвердевшая раковина + .desc = Желтый и блестит. +ent-GemStabilizedBaroxuldium = стабилизированный бароксульдий + .desc = Фиолетовый и блестит. +ent-GemCompactedDilithium = уплотненный дилитий + .desc = Фиолетовый и блестит. +ent-GemDragonPearls = драконий жемчуг + .desc = Желтый и блестит. +ent-GemHollowCrystal = полый кристалл + .desc = Синий и блестит. +ent-GemBloodStone = кровавый камень + .desc = Красный и блестит. +ent-GemBluespaceDataCrystal = блюспейс дата-кристалл + .desc = Синий, блестит и слепит. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/ore.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/ore.ftl new file mode 100644 index 00000000000..d2f44045520 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/ore.ftl @@ -0,0 +1,6 @@ +ent-MagmiteOre = магмитовая руда + .suffix = Полный + .desc = { ent-OreBase.desc } +ent-MagmiteOre1 = { ent-MagmiteOre } + .suffix = Один + .desc = { ent-MagmiteOre.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/organic.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/organic.ftl new file mode 100644 index 00000000000..a37cea2a189 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/organic.ftl @@ -0,0 +1,18 @@ +ent-MaterialSinew = сухожилие + .desc = Настоящий боевой трофей охотника. + .suffix = Полный +ent-MaterialSinew1 = { ent-MaterialSinew } + .desc = { ent-MaterialSinew.desc } + .suffix = 1 +ent-MaterialChitin = хитин + .desc = Хитин какого-то членистоногого, ничего больше. + .suffix = Полный +ent-MaterialChitin1 = { ent-MaterialChitin } + .desc = { ent-MaterialChitin.desc } + .suffix = 1 +ent-MaterialDragonHide = кожа дракона + .desc = Вот это достойный улов. Доказываешь, кто ты есть на самом деле. + .suffix = Полный +ent-MaterialDragonHide1 = { ent-MaterialDragonHide } + .desc = { ent-MaterialDragonHide.desc } + .suffix = 1 diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/sheets/metal.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/sheets/metal.ftl index 9765c177f8d..d0a04af3337 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/sheets/metal.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/materials/sheets/metal.ftl @@ -4,3 +4,9 @@ ent-SheetRuneMetal = рунический метал ent-SheetRuneMetal1 = { ent-SheetRuneMetal } .suffix = Один, НЕ МАППИТЬ .desc = { ent-SheetSteel.desc } +ent-SheetMagmite = магмитовая сталь + .suffix = Полный + .desc = Лист крайне плотной и сложной в производстве магмитовой стали. +ent-SheetMagmite1 = { ent-SheetMagmite } + .suffix = Один + .desc = { ent-SheetMagmite.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/capsule.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/capsule.ftl new file mode 100644 index 00000000000..5a4cecc5992 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/capsule.ftl @@ -0,0 +1,4 @@ +ent-HandCapsule = ручная капсула + .desc = Твой хороший друг, который спасает тебя, когда ты в этом нуждаешься. +ent-HandLuxuriousCapsule = раскошная ручная капсула + .desc = Твой хороший друг, который спасает тебя, когда ты в этом нуждаешься. Но более серьезный. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/identification_cards.ftl index 60689affc47..b8a6a48bd6c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/identification_cards.ftl @@ -12,6 +12,10 @@ ent-BlueShieldIDCard = ID-карта офицера синий щит .desc = { ent-IDCardStandard.desc } ent-PostmanIDCard = ID-карта почтальона .desc = { ent-IDCardStandard.desc } +ent-MinerIDCard = ID-карта шахтёра + .desc = { ent-IDCardStandard.desc } +ent-MinerMedicIDCard = ID-карта шахтёра медика + .desc = { ent-IDCardStandard.desc } ent-IDCardNeck = бейджик служебного доступа .desc = Специальный бейджик с доступами служебной группы, позволяя проходить в большенство помещений. Снимайте только его перед использованием! ent-WardenHelperIDCard = ID карта помощника смотрителя diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/vouchers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/vouchers.ftl new file mode 100644 index 00000000000..3efb2498b3e --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/misc/vouchers.ftl @@ -0,0 +1,2 @@ +ent-SalvageVoucherCard = карта ваучера утилизации + .desc = Обменяйте в специальном терминале на набор снаряжения для работы в опасных условиях. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/chemistry-bottles.ftl index bd32c24727d..fbc423288e1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/chemistry-bottles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/chemistry-bottles.ftl @@ -1,3 +1,6 @@ ent-ChemistryBottleFormaldehyde = { ent-BaseChemistryBottleFilled } .suffix = формальдегид - .desc = { ent-BaseChemistryBottleFilled.desc } \ No newline at end of file + .desc = { ent-BaseChemistryBottleFilled.desc } +ent-ChemistryBottleStabilizingSerumP = { ent-BaseChemistryBottleFilled } + .suffix = сыворотка стабилизации + .desc = { ent-BaseChemistryBottleFilled.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/hydroponics/seeds.ftl index 7ac540f36ee..0361d4491eb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/hydroponics/seeds.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/hydroponics/seeds.ftl @@ -4,6 +4,8 @@ ent-SunflowerSeeds = пакет семян (подсолнух) .desc = { ent-SeedBase.desc } ent-ClownflowerSeeds = пакет семян (цветка клоуна) .desc = { ent-SeedBase.desc } +ent-FireBlossomFlowerSeeds = пакет семян (огнецвет) + .desc = { ent-SeedBase.desc } ent-MoneyCabbageSeeds = пакет семян (денежная капуста) .desc = { ent-SeedBase.desc } ent-DemonicWatermelonSeeds = пакет семян (демонический арбуз) @@ -30,4 +32,4 @@ ent-CatMelonSeeds = пакет семян (кошкодыня) ent-TangerineSeeds = пакет семян (мандарин) .desc = { ent-SeedBase.desc } ent-FestiveTangerineSeeds = пакет семян (подарин) - .desc = { ent-SeedBase.desc } \ No newline at end of file + .desc = { ent-SeedBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/artefacts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/artefacts.ftl new file mode 100644 index 00000000000..a1109599865 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/artefacts.ftl @@ -0,0 +1,35 @@ +ent-DarkShard = осколок тьмы + .desc = От этого предмета веет недобрым предчувствием. Кажется, он хранит в себе древнее зло. + .suffix = НЕ МАППИТЬ +ent-RodOfAsclepius = жезл Асклепия + .desc = Древний медицинский символ. Позволяет дать клятву Гиппократа, дарующую целительную ауру и мастерство хирурга ценой отказа от насилия. + .suffix = НЕ МАППИТЬ +ent-ShipInBottle = корабль в бутылке + .desc = Загадочный кораблик, запечатанный в стекле. Говорят, он может плавать по самой горячей лаве без единого весла. + .suffix = НЕ МАППИТЬ +ent-DustyShard = пыльный осколок + .desc = Светящийся артефакт, способный призвать стойкого рудокопа-телохранителя. Будьте осторожны - ваша судьба связана с ним. + .suffix = НЕ МАППИТЬ +ent-CubeRed = красный куб + .desc = Один из пары связанных телепортационных кубов. Использование перенесёт вас к синему кубу. Спрячьте второй куб в безопасном месте! + .suffix = НЕ МАППИТЬ +ent-CubeBlue = синий куб + .desc = Один из пары связанных телепортационных кубов. Использование перенесёт вас к красному кубу. Не теряйте связь с напарником! + .suffix = НЕ МАППИТЬ +ent-HierophantClubRod = жезл иерофанта + .desc = Кроткий, таинственный артефакт искрится энергией, находясь полностью в вашем распоряжении, словно вассал своего сюзерена. +ent-LavaStaffRod = посох лавы + .desc = Сила огня и камней в ваших руках! + .suffix = НЕ МАППИТЬ +ent-BottleDragonBlood = бутылка драконьей крови + .desc = Вы же не собираетесь это на самом деле пить, да? + .suffix = НЕ МАППИТЬ +ent-DivineVocalCordsImplant = божественные голосовые связки + .desc = Они несут глас древнего бога. + .suffix = НЕ МАППИТЬ +ent-WeaponSpectralBlade = спектральный клинок + .desc = Ржавое, тупое лезвие. Не похоже, что оно нанесет большой урон. Оно слабо светится. + .suffix = НЕ МАППИТЬ +ent-WeaponSpellBlade = spellblade + .desc = Смертоносное сочетание лени и жажды крови позволяет пользователю расчленять своих врагов, не прилагая особых усилий для того, чтобы размахивать мечом. + .suffix = НЕ МАППИТЬ diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/flora.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/flora.ftl new file mode 100644 index 00000000000..18a985323bc --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/flora.ftl @@ -0,0 +1,48 @@ +ent-LavalandFloraCactus1 = кактус-бочонок + .desc = Колючий пустынный житель, накапливающий влагу в своих мясистых стеблях. Иногда плодоносит сочными плодами. +ent-LavalandFloraCactus2 = { ent-LavalandFloraCactus1 } + .desc = { ent-LavalandFloraCactus1.desc } +ent-LavalandFloraCactus3 = { ent-LavalandFloraCactus1 } + .desc = { ent-LavalandFloraCactus1.desc } +ent-LavalandFloraCactus4 = { ent-LavalandFloraCactus1 } + .desc = { ent-LavalandFloraCactus1.desc } +ent-LavalandFloraFireBlossom1 = огнецвет + .desc = Яркий, светящийся цветок, невероятно красивый. +ent-LavalandFloraFireBlossom2 = { ent-LavalandFloraFireBlossom1 } + .desc = { ent-LavalandFloraFireBlossom1.desc } +ent-LavalandFloraFireBlossom3 = { ent-LavalandFloraFireBlossom1 } + .desc = { ent-LavalandFloraFireBlossom1.desc } +ent-LavalandFloraFireBlossom4 = { ent-LavalandFloraFireBlossom1 } + .desc = { ent-LavalandFloraFireBlossom1.desc } +ent-LavalandFloraPolyporeMushroom1 = древесный трутовик + .desc = Жёсткий гриб-паразит, растущий ярусами на мёртвой древесине. Его можно аккуратно срезать. +ent-LavalandFloraPolyporeMushroom2 = { ent-LavalandFloraPolyporeMushroom1 } + .desc = { ent-LavalandFloraPolyporeMushroom1.desc } +ent-LavalandFloraPolyporeMushroom3 = { ent-LavalandFloraPolyporeMushroom1 } + .desc = { ent-LavalandFloraPolyporeMushroom1.desc } +ent-LavalandFloraPolyporeMushroom4 = { ent-LavalandFloraPolyporeMushroom1 } + .desc = { ent-LavalandFloraPolyporeMushroom1.desc } +ent-LavalandFloraInocybeMushroom1 = бледный огнегриб + .desc = Хрупкий гриб с треснувшей шляпкой, испускающий едва заметное свечение. Содержит мощные психоактивные вещества и токсины. +ent-LavalandFloraInocybeMushroom2 = { ent-LavalandFloraInocybeMushroom1 } + .desc = { ent-LavalandFloraInocybeMushroom1.desc } +ent-LavalandFloraInocybeMushroom3 = { ent-LavalandFloraInocybeMushroom1 } + .desc = { ent-LavalandFloraInocybeMushroom1.desc } +ent-LavalandFloraInocybeMushroom4 = { ent-LavalandFloraInocybeMushroom1 } + .desc = { ent-LavalandFloraInocybeMushroom1.desc } +ent-LavalandFloraPorciniMushroom1 = дымчатый боровик + .desc = Крепкий съедобный гриб, известный своим характерным ароматом. Обладает лёгким стимулирующим эффектом. +ent-LavalandFloraPorciniMushroom2 = { ent-LavalandFloraPorciniMushroom1 } + .desc = { ent-LavalandFloraPorciniMushroom1.desc } +ent-LavalandFloraPorciniMushroom3 = { ent-LavalandFloraPorciniMushroom1 } + .desc = { ent-LavalandFloraPorciniMushroom1.desc } +ent-LavalandFloraPorciniMushroom4 = { ent-LavalandFloraPorciniMushroom1 } + .desc = { ent-LavalandFloraPorciniMushroom1.desc } +ent-LavalandFloraEmbershroom1 = угольно-огненный трутовик + .desc = Тяжёлый, почти каменный гриб с тлеющими прожилками. Его стебель содержит вещества, вызывающие эйфорию и свечение кожи. +ent-LavalandFloraEmbershroom2 = { ent-LavalandFloraEmbershroom1 } + .desc = { ent-LavalandFloraEmbershroom1.desc } +ent-LavalandFloraEmbershroom3 = { ent-LavalandFloraEmbershroom1 } + .desc = { ent-LavalandFloraEmbershroom1.desc } +ent-LavalandFloraEmbershroom4 = { ent-LavalandFloraEmbershroom1 } + .desc = { ent-LavalandFloraEmbershroom1.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/throphies.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/throphies.ftl new file mode 100644 index 00000000000..469ca6a7b50 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/throphies.ftl @@ -0,0 +1,30 @@ +ent-TrophyLavalandLegionSkull = череп легиона + .desc = Сросшиеся черепа множества существ, объединённых в единую коллективную сущность. Тяжёлый и холодный на ощупь. +ent-TrophyLavalandGoliathTentacle = щупальце голиафа + .desc = Мускулистый отросток, покрытый каменными пластинами. Пульсирует с остаточной жизненной силой исполинского существа. +ent-TrophyLavalandAncientGoliathTentacle = шупальце древнего голиафа + .desc = Окаменевший отросток древнего голиафа. Его поверхность испещрена трещинами времён, но внутри всё ещё чувствуется древняя мощь. +ent-TrophyLavalandWatcherWing = крыло наблюдателя + .desc = Полупрозрачная перепончатая плоскость, мерцающая перламутровым блеском. Кажется почти невесомой. +ent-TrophyLavalandIceWatcherWing = крыло морозного наблюдателя + .desc = Хрустальное крыло, покрытое изморозью. От него исходит лёгкий холод, а на поверхности постоянно образуются ледяные узоры. +ent-TrophyLavalandMagmaWatcherWing = крыло магмового наблюдателя + .desc = Окаменевшая лавовая форма, всё ещё излучающая тепло. Внутри просвечивают прожилки расплавленной породы. +ent-TrophyLavalandMarrowWeaverPoisonFang = ядовитый клык + .desc = Изогнутый клык костномозгового ткача, всё ещё покрытый скользким бледным ядом. Слабый химический запах костного мозга и тления исходит от него. +ent-TrophyLavalandFrostbiteWeaverFrostGland = морозная железа + .desc = Пульсирующая железа морозного ткача, достаточно холодная, чтобы вызвать онемение пальцев. Бледно-голубая сукровица заморозила внутреннюю сторону её полупрозрачной мембраны. +ent-TrophyLavalandBDMEye = глаз кровожадного шахтёра + .desc = Мутный, кроваво-красный глаз, в глубине которого застыла безумная ярость. На ощупь влажный и неприятно тёплый. +ent-TrophyLavalandAshDrakeSpike = хвостовой шип + .desc = Массивный шип из вулканического стекла, испещрённый прожилками пепла. Острый, как бритва, и невероятно прочный. +ent-TrophyLavalandBubblegumDemonClaws = клыки демона + .desc = Искривлённые когти, покрытые липкой субстанцией. От них исходит сладковато-гнилостный запах. +ent-TrophyLavalandColossusBlasterTubes = трубки бластера + .desc = Набор металлических трубок странной формы, всё ещё пахнущих озоном и гарью. Внутри слышно тихое гудение. +ent-TrophyLavalandHierophantVortexTalisman = вортекс талисман + .desc = Кубический артефакт из тёмного материала, внутри которого медленно вращается фиолетовая туманность. При касании кажется, что он вибрирует на неслышимой частоте. + +# Other +ent-LegionCore = ядро легиона + .desc = Таинственное ядро, наполненное какой-то энергией. Не кажется ли вам, что оно улетучивается? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/tools.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/tools.ftl new file mode 100644 index 00000000000..152090220b7 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/tools.ftl @@ -0,0 +1,4 @@ +ent-WormholeJaunter = джаунтер + .desc = Инструмент, создающий нестабильные порталы. Может спасти вас, если вы провалились в дыру. +ent-BoneOar = костяное весло + .desc = Весло, сделанное из костей. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/transfer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/transfer.ftl new file mode 100644 index 00000000000..36ebd2824af --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/lavaland/transfer.ftl @@ -0,0 +1,6 @@ +ent-TransferCard500 = карта для перевода очков + .desc = Специальная бинарная карта, с помощью которой можно перевести определенное количество баллов на идентификационную карту члена экипажа. + .suffix = 500 +ent-TransferCardDebug = { ent-TransferCard500 } + .desc = { ent-TransferCard500.desc } + .suffix = DEBUG diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/medical/hypospray.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/medical/hypospray.ftl new file mode 100644 index 00000000000..74a2b1ce4fd --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/specific/medical/hypospray.ftl @@ -0,0 +1,2 @@ +ent-SurvivalMedipen = медипен выживания + .desc = Коктейль из мощных целебных химикатов. Содержит все необходимое, чтобы вы могли самостоятельно справиться с ситуацией в экстренной ситуации. Использование более одного препарата одновременно может быть опасным! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/tools/pka_upgrade.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/tools/pka_upgrade.ftl new file mode 100644 index 00000000000..ad0b30bc354 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/tools/pka_upgrade.ftl @@ -0,0 +1,4 @@ +ent-PKAUpgradeAoE = модкит ПКУ (урон по площади) + .desc = { ent-BasePKAUpgrade.desc } +ent-PKAUpgradeLifesteal = кристал вампиризма + .desc = { ent-BasePKAUpgrade.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/vehicles/buckleable.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/vehicles/buckleable.ftl index 4a040f62f3f..f9fa38899d5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/vehicles/buckleable.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/vehicles/buckleable.ftl @@ -21,3 +21,7 @@ ent-VehicleUnicycle = моноцикл ent-VehicleUnicycleFolded = { ent-VehicleUnicycle } .desc = { ent-VehicleUnicycle.desc } .suffix = Сложенное +ent-VehicleBoat = лодка голиафа + .desc = Собранная из дерева и шкур голиафа лодка. Нужно весло для использования. +ent-VehicleDragonBoat = лодка дракон + .desc = Таинственное судно, способное бесследно скользить по раскалённой лаве. Не требует вёсел и, кажется, движется по собственной воле. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/basic/pka.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/basic/pka.ftl new file mode 100644 index 00000000000..96fe8e0984b --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/basic/pka.ftl @@ -0,0 +1,2 @@ +ent-WeaponMagmiteProtoKineticAccelerator = магмитовый протокинетический ускоритель + .desc = Стреляет кинетическими зарядами с низким уроном на короткое расстояние. Имеет наибольшую вместимость улучшений. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/battery/battery_guns.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/battery/battery_guns.ftl index 6fa1f2a3c26..427649b8539 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/battery/battery_guns.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/battery/battery_guns.ftl @@ -3,4 +3,23 @@ ent-WeaponBlueLaserPistol = лазерный пистолет "Синий Щит .suffix = Пистолет ent-WeaponDominator = лазерный пистолет "Доминатор" .desc = Высокотехнологичное оружие, созданное экологической организацией Sibyl System, специально предназначенное для борьбы с преступностью. Имеет два режима стрельбы: летальный и станнер. - .suffix = Пистолет \ No newline at end of file + .suffix = Пистолет +ent-WeaponPlasmaCutter = плазменный резак + .desc = Энергетическое оружие, способное стрелять плазменными снарядами, что рассекают любой камень, а иногда и стену. +ent-WeaponPlasmaCutterEmpty = { ent-WeaponPlasmaCutter } + .desc = { ent-WeaponPlasmaCutter.desc } + .suffix = Пустой +ent-WeaponPlasmaCutterAdv = продвинутый плазменный резак + .desc = Улучшенная версия обычного плазменного резака с более усовершенствованными характеристиками. +ent-WeaponPlasmaCutterAdvEmpty = { ent-WeaponPlasmaCutterAdv } + .desc = { ent-WeaponPlasmaCutterAdv.desc } + .suffix = Пустой +ent-WeaponIndustrialFanPlasmaCutter = индустриальный веерный резак + .desc = Плазменный резак, который стреляет 'дробью'. +ent-WeaponIndustrialFanPlasmaCutterEmpty = { ent-WeaponIndustrialFanPlasmaCutter } + .desc = { ent-WeaponIndustrialFanPlasmaCutter.desc } + .suffix = Пустой +ent-WeaponMagmitePlasmaCutter = магмитовый плазменный резак + .desc = Магмитовая версия плазменного резака. Какой ценой? +ent-WeaponMagmiteFanPlasmaCutter = магмитовый веерный резак + .desc = Магмитовая версия веерного резака. Какой ценой? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/plasma_cutter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/plasma_cutter.ftl deleted file mode 100644 index 915513cc4b0..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/plasma_cutter.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-WeaponPlasmaCutter = плазменный резак - .desc = Энергетическое оружие, способное стрелять плазменными снарядами, что рассекают любой камень, а иногда и стену. -ent-WeaponPlasmaCutterEmpty = плазменный резак - .desc = Энергетическое оружие, способное стрелять плазменными снарядами, что рассекают любой камень, а иногда и стену. - .suffix = Пустой \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/projectiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/projectiles.ftl index 23da3cd63e3..917db3cd7dc 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/projectiles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/guns/projectiles/projectiles.ftl @@ -5,4 +5,8 @@ ent-RedMediumLaser = лазерный выстрел ent-LaserStun = оглушающий лазер .desc = { ent-BaseBullet.desc } ent-BulletPlasmaCutter = плазменный выстрел - .desc = { ent-BaseBullet.desc } \ No newline at end of file + .desc = { ent-BaseBullet.desc } +ent-BulletPlasmaCutterMagma = плазменный заряд + desc = { ent-BaseBullet.desc } +ent-BulletMagmaCharge = магмитовый снаряд + .desc = Помечает цели для нанесения повышенного урона. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/knife.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/knife.ftl index 4e9561e384e..aa0f0937982 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/knife.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/knife.ftl @@ -1,4 +1,6 @@ ent-CombatCrowbar = боевая монтировка .desc = Смертоносный нож, предназначенный для ближнего боя. Благодаря улучшенной ручки работает еще как и лом ent-ArrhythmicKnife = нож аритмии - .desc = Говорят что страх убивает разум, но втыкание ножа в голову тоже работает. \ No newline at end of file + .desc = Говорят что страх убивает разум, но втыкание ножа в голову тоже работает. +ent-WeaponCleawingSaw = боевой секач + .desc = Быстрая разновидность пилы сделанная из очень старого и ржавого металла. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/mining.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/mining.ftl new file mode 100644 index 00000000000..215b2184bc8 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/mining.ftl @@ -0,0 +1,4 @@ +ent-WeaponMagmiteCrusher = магмитовый крушитель + .desc = { ent-WeaponCrusher.desc } +ent-WeaponMagmiteCrusherGlaive = магмитовая глефа + .desc = Ранняя версия протокинетического ускорителя в виде глефы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/sword.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/sword.ftl index d8604aecefb..edaac6eb518 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/sword.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/objects/weapons/melee/sword.ftl @@ -13,4 +13,6 @@ ent-WeaponReaperScythe = коса жнеца ent-WeaponHighFrequencyBlade = высокочастотный меч .desc = Плохие отсылки — это ДНК души. ent-WeaponPossessedBlade = одержимый клинок - .desc = Когда станция погружается в хаос, приятно иметь рядом друга. \ No newline at end of file + .desc = Когда станция погружается в хаос, приятно иметь рядом друга. +ent-WeaponCursedKatana = проклятая катана + .desc = Катана, которая давным-давно использовалась для уничтожения чего-то мерзкого. Даже после уничтожения оружия все части, в которых находилось существо, снова собрались вместе, чтобы найти нового хозяина. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/decoration/statues.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/decoration/statues.ftl new file mode 100644 index 00000000000..ca1c0631bca --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/decoration/statues.ftl @@ -0,0 +1,4 @@ +StatueAshDrake = статуя дракона + .desc = Это статуя дракона. Возвышающаяся базальтовая скульптура гордого и царственного дракона. Его глаза - это шесть светящихся драгоценных камней. +StatueAshDrake = разбитая статуя дракона + .desc = Это статуя дракона. Огромная базальтовая скульптура дракона. По ее поверхности идут трещины, и некоторые части ее отвалились. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/doors/airlocks/access.ftl new file mode 100644 index 00000000000..b83914dae71 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/doors/airlocks/access.ftl @@ -0,0 +1,12 @@ +ent-AirlockExternalGlassShuttleLavalandStation = { ent-AirlockExternalGlass } + .suffix = Внешний, Стеклянный, Лаваленд, Станция + .desc = { ent-AirlockExternalGlass.desc } +ent-AirlockExternalGlassShuttleLavalandOutpost = { ent-AirlockExternalGlass } + .suffix = Внешний, Стеклянный, Лаваленд, Аванпост + .desc = { ent-AirlockExternalGlass.desc } +ent-AirlockExternalGlassPenalServitudeShuttleLavalandStation = { ent-AirlockExternalGlass } + .suffix = Внешний, Стеклянный, Лаваленд, Каторга, Станция + .desc = { ent-AirlockExternalGlass.desc } +ent-AirlockExternalGlassPenalServitudeShuttleLavaland = { ent-AirlockExternalGlass } + .suffix = Внешний, Стеклянный, Лаваленд, Каторга + .desc = { ent-AirlockExternalGlass.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/floors.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/floors.ftl new file mode 100644 index 00000000000..3fb3b5187f2 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/floors.ftl @@ -0,0 +1,19 @@ +ent-BaseFloorEntity = плитка +ent-FloorEntityPristineTile = { ent-BaseFloorEntity } +ent-FloorEntityPristineSlab = { ent-BaseFloorEntity } +ent-FloorEntityPristineBlock = { ent-BaseFloorEntity } +ent-FloorEntityPristineCenter = { ent-BaseFloorEntity } +ent-FloorEntityPristineSurrounding = { ent-BaseFloorEntity } +ent-FloorEntityPristineSurroundingTile = { ent-BaseFloorEntity } +ent-FloorEntityCrackedTile = { ent-BaseFloorEntity } +ent-FloorEntityCrackedSlab = { ent-BaseFloorEntity } +ent-FloorEntityCrackedBlock = { ent-BaseFloorEntity } +ent-FloorEntityCrackedCenter = { ent-BaseFloorEntity } +ent-FloorEntityCrackedSurrounding = { ent-BaseFloorEntity } +ent-FloorEntityCrackedSurroundingTile = { ent-BaseFloorEntity } +ent-FloorEntityBurntTile = { ent-BaseFloorEntity } +ent-FloorEntityBurntBlock = { ent-BaseFloorEntity } +ent-FloorEntityBurntSlab = { ent-BaseFloorEntity } +ent-FloorEntityBurntCenter = { ent-BaseFloorEntity } +ent-FloorEntityBurntSurrounding = { ent-BaseFloorEntity } +ent-FloorEntityBurntSurroundingTile = { ent-BaseFloorEntity } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/computers/computers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/computers/computers.ftl index 54245189a88..cca43b91bd8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/computers/computers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/computers/computers.ftl @@ -2,3 +2,7 @@ ent-DnaModifierConsole = консоль модификатора-ДНК .desc = С помощью данного интерфейса ведутся изменения строения ДНК. ent-MiningMonitoringConsole = консоль мониторинга майнинга .desc = Центральная консоль управления майнинг-серверами. +ent-LavalandShuttleConsole = консоль шаттла лаваленда + .desc = Используйте этот терминал, чтобы вызвать шаттл до Лаваленда - места, где начинается настоящее приключение. +ent-PenalServitudeLavalandShuttleConsole = консоль каторжного шаттла лаваленда + .desc = Используйте этот терминал, чтобы вызвать шаттл до Лаваленда - места, где начинается настоящее приключение. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/fabricator_hyper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/lathe.ftl similarity index 56% rename from Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/fabricator_hyper.ftl rename to Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/lathe.ftl index 784dec191d1..cbc0a9689c5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/fabricator_hyper.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/lathe.ftl @@ -1,2 +1,4 @@ ent-ExosuitFabricatorHyperConvection = гиперконвекционный фабрикатор экзокостюмов - .desc = Экспериментальный фабрикатор экзокостюмов, использующий технологию экстремального нагрева для замедленного, но гораздо более экономичного создания предметов. \ No newline at end of file + .desc = Экспериментальный фабрикатор экзокостюмов, использующий технологию экстремального нагрева для замедленного, но гораздо более экономичного создания предметов. +ent-MagmiteAnvil = магмитовая наковальня + .desc = На вид это очень старая наковальня. Интересно, что она здесь делает и кто за ней работал? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/telecomms.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/telecomms.ftl new file mode 100644 index 00000000000..a90da6f80f1 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/telecomms.ftl @@ -0,0 +1,3 @@ +ent-TelecomServerFilledLavaland = { ent-TelecomServer } + .desc = { ent-TelecomServer.desc } + .suffix = Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/vending_machines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/vending_machines.ftl index 0d50d41aa73..a90e05e74d9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/machines/vending_machines.ftl @@ -4,3 +4,6 @@ ent-VendingMachineCosinessmat = Уютомат .desc = Автомат для быстрого шопинга нижнего белья и носков. ent-BaseUsVoidPat = П.А.Т. .desc = В Торговом Автомате Пустоты есть блюспейс компонент, который позволяет вам торговать с разными участками галактиками. +ent-VendingMachineTankDispenserExtO2 = раздатчик газовых баллонов + .desc = Автомат по выдаче газовых баллонов. + .suffix = Больше O2 diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/specific/tendril.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/specific/tendril.ftl new file mode 100644 index 00000000000..4da9e29b5a5 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/specific/tendril.ftl @@ -0,0 +1,12 @@ +ent-NecropolisTendril = шип некрополя + .desc = Гигантский пульсирующий шип, проросший из самых глубин планеты. Испускает зловещую энергию и привлекает других ужасов этого места. + .suffix = НЕ МАППИТЬ +ent-GoliathNecropolisTendril = { ent-NecropolisTendril } + .desc = { ent-NecropolisTendril.desc } + .suffix = { ent-NecropolisTendril.suffix } +ent-LegionNecropolisTendril = { ent-NecropolisTendril } + .desc = { ent-NecropolisTendril.desc } + .suffix = { ent-NecropolisTendril.suffix } +ent-WatchersNecropolisTendril = { ent-NecropolisTendril } + .desc = { ent-NecropolisTendril.desc } + .suffix = { ent-NecropolisTendril.suffix } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/storage/crates/crates.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/storage/crates/crates.ftl new file mode 100644 index 00000000000..9073a96214c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/storage/crates/crates.ftl @@ -0,0 +1,2 @@ +ent-CrateNecropolis = сундук некрополя + .desc = Древний саркофаг, испускающий зловещее свечение. Содержит награды за победу над ужасами некрополя. Обладает странными защитными свойствами. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/asteroid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/asteroid.ftl new file mode 100644 index 00000000000..58991927119 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/asteroid.ftl @@ -0,0 +1,39 @@ +ent-WallRockBasaltIndestructible = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Неразрушимый +ent-WallRockBasaltLavalandCoal = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Уголь, Лаваленд +ent-WallRockBasaltLavalandGold = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Золото, Лаваленд +ent-WallRockBasaltLavalandDiamond = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Алмазы, Лаваленд +ent-WallRockBasaltLavalandPlasma = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Плазма, Лаваленд +ent-WallRockBasaltLavalandQuartz = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Кварц, Лаваленд +ent-WallRockBasaltLavalandSilver = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Серебро, Лаваленд +ent-WallRockBasaltLavalandTin = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Железо, Лаваленд +ent-WallRockBasaltLavalandUranium = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Уран, Лаваленд +ent-WallRockBasaltLavalandBananium = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Бананиум, Лаваленд +ent-WallRockBasaltLavalandGems = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Драгоценные камни, Лаваленд +ent-WallRockBasaltLavalandMagmite = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Магмит, Лаваленд +ent-WallRockBasaltLavalandGibtonite = { ent-WallRockBasalt } + .desc = { ent-WallRockBasalt.desc } + .suffix = Гибтонит, Лаваленд diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/walls.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/walls.ftl new file mode 100644 index 00000000000..445ab3ff5a4 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_wega/entities/structures/walls/walls.ftl @@ -0,0 +1,4 @@ +ent-WallHierophantArena = стена иерофанта + .desc = { ent-BaseWall.desc } +ent-WallHierophantTemporary = поле иерофанта + .desc = Держит исследователя внутри... Почему ты смотришь на это в разгар драки? Тебе нечего делать?! diff --git a/Resources/Maps/_Wega/Lavaland/Envy.yml b/Resources/Maps/_Wega/Lavaland/Envy.yml new file mode 100644 index 00000000000..503568a80e0 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/Envy.yml @@ -0,0 +1,855 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:56:00 + entityCount: 118 +maps: [] +grids: +- 6504 +orphans: +- 6504 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 6504 + components: + - type: MetaData + name: Зависть + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAMAAAAAAAAWAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAADAAAAAAAAFgAAAAAAAAoAAAAAAAAKAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAKAAAAAAAAFgAAAAAAAAoAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABYAAAAAAAAKAAAAAAAAFgAAAAAAAAMAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAFgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#C70000FF' + id: slash + decals: + 6: 2.2797546,3.0162835 + 7: 2.3031921,2.289721 + 8: 2.3031921,1.7975333 + 9: 2.3031921,1.1412833 + 10: 2.3031921,0.6022208 + 11: 2.3031921,-0.054029226 + 12: 2.3031921,-0.6634042 + 13: 1.7406921,-0.6634042 + 14: 1.7406921,-0.12434173 + 15: 1.7641296,0.5319083 + 16: 1.7875671,1.0944083 + 17: 1.7641296,1.6334708 + 18: 1.7641296,2.102221 + 19: 1.8110046,2.758471 + 20: 1.8344421,3.227221 + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#B40000FF' + id: splatter + decals: + 21: 1.9985046,4.024096 + 22: 1.8514404,3.789721 + 23: 2.0858154,3.930346 + 24: 1.8748779,4.164721 + 25: 1.7576904,4.1881585 + 26: 2.0389404,4.070971 + 27: 2.203003,4.070971 + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#C70000FF' + id: splatter + decals: + 0: 0.94381714,2.992846 + 1: 3.0063171,2.0319085 + 2: 5.2797546,1.7740958 + 3: 5.865692,0.9772208 + 4: 7.0610046,1.961596 + 5: 1.9516296,2.5006585 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: BookshelfFilled + entities: + - uid: 6505 + components: + - type: Transform + pos: 5.5,3.5 + parent: 6504 +- proto: CandleRedInfinite + entities: + - uid: 6506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.7030945,3.423287 + parent: 6504 +- proto: ChairWood + entities: + - uid: 6507 + components: + - type: Transform + pos: 2.504181,4.6001034 + parent: 6504 + - uid: 6508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.742157,3.610787 + parent: 6504 +- proto: ClothingHeadHelmetHardsuitLing + entities: + - uid: 6509 + components: + - type: Transform + pos: 2.4807434,4.482916 + parent: 6504 +- proto: ClothingOuterHardsuitLing + entities: + - uid: 6510 + components: + - type: Transform + pos: 2.4807434,4.4594784 + parent: 6504 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]0%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]80%[/color]. + priority: 0 + component: Armor +- proto: Cobweb1 + entities: + - uid: 6511 + components: + - type: Transform + pos: 1.5,3.5 + parent: 6504 +- proto: Cobweb2 + entities: + - uid: 6512 + components: + - type: Transform + pos: 2.5,4.5 + parent: 6504 + - uid: 6513 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6504 + - uid: 6514 + components: + - type: Transform + pos: 7.5,3.5 + parent: 6504 +- proto: FenceWoodHighGate + entities: + - uid: 6515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 6504 +- proto: FenceWoodHighStraight + entities: + - uid: 6516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 6504 + - uid: 6517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 6504 + - uid: 6518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 6504 + - uid: 6519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 6504 + - uid: 6520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 6504 + - uid: 6521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 6504 + - uid: 6522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 6504 + - uid: 6523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 6504 + - uid: 6524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 6504 +- proto: FoodMeat + entities: + - uid: 6525 + components: + - type: Transform + pos: 7.3749695,3.5404744 + parent: 6504 +- proto: Mirror + entities: + - uid: 6526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 6504 + - type: Fixtures + fixtures: {} + - uid: 6527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 6504 + - type: Fixtures + fixtures: {} + - uid: 6528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 6504 + - type: Fixtures + fixtures: {} + - uid: 6529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 6504 + - type: Fixtures + fixtures: {} + - uid: 6530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 6504 + - type: Fixtures + fixtures: {} +- proto: RitualDagger + entities: + - uid: 6531 + components: + - type: MetaData + desc: Зачарованный кинжал, который позволяет заимствовать облик того, кого вы им ударите. + name: клинок Зависти + - type: Transform + pos: 8.657013,2.573206 + parent: 6504 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 6532 + components: + - type: Transform + pos: 9.5,0.5 + parent: 6504 +- proto: TableWood + entities: + - uid: 6533 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6504 + - uid: 6534 + components: + - type: Transform + pos: 7.5,3.5 + parent: 6504 +- proto: WallRockBasalt + entities: + - uid: 6535 + components: + - type: Transform + pos: -0.5,7.5 + parent: 6504 + - uid: 6536 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6504 + - uid: 6537 + components: + - type: Transform + pos: -1.5,4.5 + parent: 6504 + - uid: 6538 + components: + - type: Transform + pos: -1.5,3.5 + parent: 6504 + - uid: 6539 + components: + - type: Transform + pos: -1.5,2.5 + parent: 6504 + - uid: 6540 + components: + - type: Transform + pos: -1.5,1.5 + parent: 6504 + - uid: 6541 + components: + - type: Transform + pos: -1.5,0.5 + parent: 6504 + - uid: 6542 + components: + - type: Transform + pos: -0.5,6.5 + parent: 6504 + - uid: 6543 + components: + - type: Transform + pos: -0.5,5.5 + parent: 6504 + - uid: 6544 + components: + - type: Transform + pos: -0.5,4.5 + parent: 6504 + - uid: 6545 + components: + - type: Transform + pos: -0.5,3.5 + parent: 6504 + - uid: 6546 + components: + - type: Transform + pos: -0.5,2.5 + parent: 6504 + - uid: 6547 + components: + - type: Transform + pos: -0.5,1.5 + parent: 6504 + - uid: 6548 + components: + - type: Transform + pos: -0.5,0.5 + parent: 6504 + - uid: 6549 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6504 + - uid: 6550 + components: + - type: Transform + pos: 0.5,6.5 + parent: 6504 + - uid: 6551 + components: + - type: Transform + pos: 1.5,6.5 + parent: 6504 + - uid: 6552 + components: + - type: Transform + pos: 2.5,6.5 + parent: 6504 + - uid: 6553 + components: + - type: Transform + pos: 3.5,6.5 + parent: 6504 + - uid: 6554 + components: + - type: Transform + pos: 4.5,6.5 + parent: 6504 + - uid: 6555 + components: + - type: Transform + pos: 5.5,6.5 + parent: 6504 + - uid: 6556 + components: + - type: Transform + pos: 6.5,6.5 + parent: 6504 + - uid: 6557 + components: + - type: Transform + pos: 7.5,6.5 + parent: 6504 + - uid: 6558 + components: + - type: Transform + pos: 8.5,6.5 + parent: 6504 + - uid: 6559 + components: + - type: Transform + pos: 9.5,5.5 + parent: 6504 + - uid: 6560 + components: + - type: Transform + pos: 11.5,4.5 + parent: 6504 + - uid: 6561 + components: + - type: Transform + pos: 4.5,5.5 + parent: 6504 + - uid: 6562 + components: + - type: Transform + pos: 5.5,5.5 + parent: 6504 + - uid: 6563 + components: + - type: Transform + pos: 6.5,5.5 + parent: 6504 + - uid: 6564 + components: + - type: Transform + pos: 7.5,5.5 + parent: 6504 + - uid: 6565 + components: + - type: Transform + pos: 8.5,5.5 + parent: 6504 + - uid: 6566 + components: + - type: Transform + pos: 11.5,3.5 + parent: 6504 + - uid: 6567 + components: + - type: Transform + pos: 10.5,5.5 + parent: 6504 + - uid: 6568 + components: + - type: Transform + pos: 9.5,4.5 + parent: 6504 + - uid: 6569 + components: + - type: Transform + pos: 10.5,4.5 + parent: 6504 + - uid: 6570 + components: + - type: Transform + pos: 10.5,3.5 + parent: 6504 + - uid: 6571 + components: + - type: Transform + pos: 10.5,2.5 + parent: 6504 + - uid: 6572 + components: + - type: Transform + pos: 10.5,1.5 + parent: 6504 + - uid: 6573 + components: + - type: Transform + pos: 10.5,0.5 + parent: 6504 + - uid: 6574 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 6504 + - uid: 6575 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 6504 + - uid: 6576 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 6504 + - uid: 6577 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 6504 + - uid: 6578 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 6504 + - uid: 6579 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 6504 + - uid: 6580 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 6504 + - uid: 6581 + components: + - type: Transform + pos: 1.5,7.5 + parent: 6504 + - uid: 6582 + components: + - type: Transform + pos: 2.5,7.5 + parent: 6504 + - uid: 6583 + components: + - type: Transform + pos: 3.5,7.5 + parent: 6504 + - uid: 6584 + components: + - type: Transform + pos: 4.5,7.5 + parent: 6504 + - uid: 6585 + components: + - type: Transform + pos: 11.5,2.5 + parent: 6504 + - uid: 6586 + components: + - type: Transform + pos: 11.5,1.5 + parent: 6504 + - uid: 6587 + components: + - type: Transform + pos: 11.5,0.5 + parent: 6504 + - uid: 6588 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 6504 + - uid: 6589 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 6504 +- proto: WallWood + entities: + - uid: 6590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 6504 + - uid: 6591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 6504 + - uid: 6592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 6504 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 6504 + - uid: 6594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 6504 + - uid: 6595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 6504 + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 6504 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 6504 + - uid: 6598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 6504 + - uid: 6599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 6504 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 6504 + - uid: 6601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 6504 + - uid: 6602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 6504 + - uid: 6603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 6504 + - uid: 6604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 6504 + - uid: 6605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 6504 + - uid: 6606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 6504 + - uid: 6607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 6504 + - uid: 6608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 6504 + - uid: 6609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 6504 + - uid: 6610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 6504 + - uid: 6611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 6504 + - uid: 6612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 6504 + - uid: 6613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 6504 + - uid: 6614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 6504 + - uid: 6615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 6504 + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 6504 + - uid: 6617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 6504 + - uid: 6618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 6504 +- proto: WoodDoor + entities: + - uid: 6620 + components: + - type: Transform + pos: 2.5,0.5 + parent: 6504 + - uid: 6621 + components: + - type: Transform + pos: 4.5,2.5 + parent: 6504 +... diff --git a/Resources/Maps/_Wega/Lavaland/Greed.yml b/Resources/Maps/_Wega/Lavaland/Greed.yml new file mode 100644 index 00000000000..b9ed50b7ab3 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/Greed.yml @@ -0,0 +1,746 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 23:27:09 + entityCount: 102 +maps: [] +grids: +- 7313 +orphans: +- 7313 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 7313 + components: + - type: MetaData + name: Жадность + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAABYAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAoAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAFgAAAAAAAAoAAAAAAAAWAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAWAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAFgAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAFgAAAAAAAAoAAAAAAAAWAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABYAAAAAAAAKAAAAAAAAFgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAoAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: Carpet + entities: + - uid: 7315 + components: + - type: Transform + pos: 3.5,4.5 + parent: 7313 + - uid: 7316 + components: + - type: Transform + pos: 4.5,3.5 + parent: 7313 + - uid: 7317 + components: + - type: Transform + pos: 4.5,4.5 + parent: 7313 + - uid: 7318 + components: + - type: Transform + pos: 5.5,4.5 + parent: 7313 + - uid: 7319 + components: + - type: Transform + pos: 5.5,3.5 + parent: 7313 + - uid: 7320 + components: + - type: Transform + pos: 3.5,3.5 + parent: 7313 +- proto: CigarGold + entities: + - uid: 7321 + components: + - type: Transform + pos: 3.4322815,4.197858 + parent: 7313 + - uid: 7322 + components: + - type: Transform + pos: 3.6368713,4.236806 + parent: 7313 + - uid: 7323 + components: + - type: Transform + pos: 3.695343,4.051801 + parent: 7313 + - uid: 7324 + components: + - type: Transform + pos: 3.3641052,3.9154816 + parent: 7313 +- proto: ClothingNeckElysiumPin + entities: + - uid: 7325 + components: + - type: Transform + pos: 3.473297,3.5065389 + parent: 7313 +- proto: ClothingNeckGoldAutismPin + entities: + - uid: 7326 + components: + - type: Transform + pos: 5.5592346,2.4193516 + parent: 7313 +- proto: ClothingNeckGoldmedal + entities: + - uid: 7327 + components: + - type: Transform + pos: 6.6842346,-0.5103359 + parent: 7313 +- proto: DrinkChampagneBottleFull + entities: + - uid: 7329 + components: + - type: Transform + pos: 6.0303345,2.6593015 + parent: 7313 +- proto: DrinkGoldenCup + entities: + - uid: 7330 + components: + - type: Transform + pos: 5.6039124,4.421102 + parent: 7313 +- proto: DrinkRumBottleFull + entities: + - uid: 7331 + components: + - type: Transform + pos: 5.828949,-1.4259595 + parent: 7313 +- proto: DrinkVermouthBottleFull + entities: + - uid: 7332 + components: + - type: Transform + pos: 2.1949768,-0.4321246 + parent: 7313 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 7333 + components: + - type: Transform + pos: 5.8094788,-3.4318035 + parent: 7313 +- proto: DrinkWineBottleFull + entities: + - uid: 7334 + components: + - type: Transform + pos: 3.1733704,-2.3996694 + parent: 7313 +- proto: FloorTileItemGold + entities: + - uid: 7335 + components: + - type: Transform + pos: 6.666809,1.5737176 + parent: 7313 + - uid: 7336 + components: + - type: Transform + pos: 3.8024902,2.411108 + parent: 7313 + - uid: 7337 + components: + - type: Transform + pos: 3.3738403,1.680826 + parent: 7313 + - uid: 7338 + components: + - type: Transform + pos: 2.5067444,0.45395112 + parent: 7313 + - uid: 7339 + components: + - type: Transform + pos: 2.915924,-0.2958051 + parent: 7313 + - uid: 7340 + components: + - type: Transform + pos: 6.5986023,0.37605453 + parent: 7313 + - uid: 7341 + components: + - type: Transform + pos: 6.0530396,-0.48081034 + parent: 7313 + - uid: 7342 + components: + - type: Transform + pos: 5.9750977,0.14236414 + parent: 7313 +- proto: FoodTartGapple + entities: + - uid: 7343 + components: + - type: Transform + pos: 1.4776917,1.0499778 + parent: 7313 +- proto: GoldDoor + entities: + - uid: 7344 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 7313 + missingComponents: + - Construction + - Destructible + - RCDDeconstructable +- proto: GoldenBikeHorn + entities: + - uid: 7345 + components: + - type: Transform + pos: 5.633148,3.7687163 + parent: 7313 +- proto: GoldenPlunger + entities: + - uid: 7346 + components: + - type: Transform + pos: 5.340851,3.827139 + parent: 7313 +- proto: GoldOre1 + entities: + - uid: 7347 + components: + - type: Transform + pos: 7.551422,1.4674764 + parent: 7313 +- proto: IngotGold + entities: + - uid: 7348 + components: + - type: Transform + pos: 7.5231934,1.1104887 + parent: 7313 +- proto: IngotGold1 + entities: + - uid: 7349 + components: + - type: Transform + pos: 1.3754272,0.25551558 + parent: 7313 + - uid: 7350 + components: + - type: Transform + pos: 1.3948975,0.012087822 + parent: 7313 + - uid: 7351 + components: + - type: Transform + pos: 1.6969299,0.2263043 + parent: 7313 +- proto: RandomArcade + entities: + - uid: 2 + components: + - type: Transform + pos: 6.5,2.5 + parent: 7313 + - uid: 4 + components: + - type: Transform + pos: 2.5,2.5 + parent: 7313 +- proto: SmallLight + entities: + - uid: 7353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 7313 + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 7313 + - uid: 7355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 7313 + - uid: 7356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 7313 + - uid: 7357 + components: + - type: Transform + pos: 5.5,4.5 + parent: 7313 + - uid: 7358 + components: + - type: Transform + pos: 3.5,4.5 + parent: 7313 +- proto: SpaceCash100 + entities: + - uid: 7359 + components: + - type: Transform + pos: 1.5312195,1.5613017 + parent: 7313 +- proto: SpaceCash1000 + entities: + - uid: 7360 + components: + - type: Transform + pos: 7.504547,-0.19651079 + parent: 7313 +- proto: SpaceCash10000 + entities: + - uid: 7361 + components: + - type: Transform + pos: 1.5045471,0.6472392 + parent: 7313 +- proto: SpaceCash500 + entities: + - uid: 7362 + components: + - type: Transform + pos: 7.551422,0.6941142 + parent: 7313 + - uid: 7363 + components: + - type: Transform + pos: 1.5045471,-0.21994829 + parent: 7313 +- proto: SpawnCursedSlotMachine + entities: + - uid: 3 + components: + - type: Transform + pos: 4.5,4.5 + parent: 7313 +- proto: TableCarpet + entities: + - uid: 7365 + components: + - type: Transform + pos: 3.5,4.5 + parent: 7313 + - uid: 7366 + components: + - type: Transform + pos: 3.5,3.5 + parent: 7313 + - uid: 7367 + components: + - type: Transform + pos: 5.5,4.5 + parent: 7313 + - uid: 7368 + components: + - type: Transform + pos: 5.5,3.5 + parent: 7313 + - uid: 7369 + components: + - type: Transform + pos: 1.5,1.5 + parent: 7313 + - uid: 7370 + components: + - type: Transform + pos: 1.5,0.5 + parent: 7313 + - uid: 7371 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 7313 + - uid: 7372 + components: + - type: Transform + pos: 7.5,1.5 + parent: 7313 + - uid: 7373 + components: + - type: Transform + pos: 7.5,0.5 + parent: 7313 + - uid: 7374 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 7313 +- proto: ToolboxGolden + entities: + - uid: 7375 + components: + - type: Transform + pos: 7.481842,0.20682979 + parent: 7313 +- proto: WallCult + entities: + - uid: 7376 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7377 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7378 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7379 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7380 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7381 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7382 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7383 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7384 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7385 + components: + - type: Transform + pos: 0.5,0.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7386 + components: + - type: Transform + pos: 0.5,1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7387 + components: + - type: Transform + pos: 0.5,2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7388 + components: + - type: Transform + pos: 1.5,2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7389 + components: + - type: Transform + pos: 1.5,3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7390 + components: + - type: Transform + pos: 2.5,3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7391 + components: + - type: Transform + pos: 2.5,4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7392 + components: + - type: Transform + pos: 2.5,5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7393 + components: + - type: Transform + pos: 3.5,5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7394 + components: + - type: Transform + pos: 4.5,5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7395 + components: + - type: Transform + pos: 5.5,5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7396 + components: + - type: Transform + pos: 6.5,5.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7397 + components: + - type: Transform + pos: 6.5,4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7398 + components: + - type: Transform + pos: 6.5,3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7399 + components: + - type: Transform + pos: 7.5,3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7400 + components: + - type: Transform + pos: 7.5,2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7401 + components: + - type: Transform + pos: 8.5,2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7402 + components: + - type: Transform + pos: 8.5,1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7403 + components: + - type: Transform + pos: 8.5,0.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7404 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7405 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7406 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7407 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7408 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7409 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7410 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7411 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 7313 + missingComponents: + - Destructible + - uid: 7412 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 7313 + missingComponents: + - Destructible +- proto: WeaponRevolverPython + entities: + - uid: 7414 + components: + - type: Transform + pos: 3.520172,4.537789 + parent: 7313 +- proto: WristwatchGold + entities: + - uid: 7415 + components: + - type: Transform + pos: 2.629547,1.4643633 + parent: 7313 +... diff --git a/Resources/Maps/_Wega/Lavaland/Laziness.yml b/Resources/Maps/_Wega/Lavaland/Laziness.yml new file mode 100644 index 00000000000..a1295b2c825 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/Laziness.yml @@ -0,0 +1,2160 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 21:00:55 + entityCount: 400 +maps: [] +grids: +- 8398 +orphans: +- 8398 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 8398 + components: + - type: MetaData + name: Лень + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAABYAAAAAAAADAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: DQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAwAAAAAAAAMAAAAAAAAWAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAMAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAADAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAwAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAFgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAQAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAADQAAAAAAAAMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAMAAAAAAAANAAAAAAAAAwAAAAAAAA0AAAAAAAADAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: BaseAPC + entities: + - uid: 8435 + components: + - type: Transform + pos: 12.5,2.5 + parent: 8398 + - type: BatterySelfRecharger + autoRechargeRate: 5000 + - type: Fixtures + fixtures: {} + missingComponents: + - Construction + - Destructible +- proto: Bed + entities: + - uid: 8399 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 8398 +- proto: BedsheetCentcom + entities: + - uid: 8400 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 8398 +- proto: CableApcExtension + entities: + - uid: 8401 + components: + - type: Transform + pos: 12.5,2.5 + parent: 8398 + - uid: 8402 + components: + - type: Transform + pos: 12.5,1.5 + parent: 8398 + - uid: 8403 + components: + - type: Transform + pos: 12.5,0.5 + parent: 8398 + - uid: 8404 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 8398 + - uid: 8405 + components: + - type: Transform + pos: 11.5,0.5 + parent: 8398 + - uid: 8406 + components: + - type: Transform + pos: 10.5,0.5 + parent: 8398 + - uid: 8407 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 8398 + - uid: 8408 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 8398 + - uid: 8409 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 8398 + - uid: 8410 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 8398 + - uid: 8411 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 8398 + - uid: 8412 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 8398 + - uid: 8413 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 8398 + - uid: 8414 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 8398 + - uid: 8415 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 8398 + - uid: 8416 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 8398 + - uid: 8417 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 8398 + - uid: 8418 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 8398 + - uid: 8419 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 8398 + - uid: 8420 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 8398 + - uid: 8421 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 8398 + - uid: 8422 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 8398 + - uid: 8423 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 8398 + - uid: 8424 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 8398 + - uid: 8425 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 8398 + - uid: 8426 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 8398 + - uid: 8427 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 8398 + - uid: 8428 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 8398 +- proto: CarpetGreen + entities: + - uid: 8429 + components: + - type: Transform + pos: 11.5,1.5 + parent: 8398 + - uid: 8430 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 8398 +- proto: ChairWood + entities: + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.53302,-12.433493 + parent: 8398 + - uid: 8432 + components: + - type: Transform + pos: 4.5564575,-10.48818 + parent: 8398 +- proto: ComfyChair + entities: + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 8398 +- proto: ComputerTelevision + entities: + - uid: 8434 + components: + - type: Transform + pos: 10.5,1.5 + parent: 8398 +- proto: DrinkColaCan + entities: + - uid: 8436 + components: + - type: Transform + pos: 4.43927,-11.167868 + parent: 8398 + - uid: 8437 + components: + - type: Transform + pos: 4.7439575,-11.449118 + parent: 8398 +- proto: FloorLavaEntity + entities: + - uid: 8438 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 8398 + - uid: 8439 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 8398 + - uid: 8440 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 8398 + - uid: 8441 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 8398 + - uid: 8442 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 8398 + - uid: 8443 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 8398 + - uid: 8444 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 8398 + - uid: 8445 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 8398 + - uid: 8446 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 8398 + - uid: 8447 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 8398 + - uid: 8448 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 8398 + - uid: 8449 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 8398 + - uid: 8450 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 8398 + - uid: 8451 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 8398 + - uid: 8452 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 8398 + - uid: 8453 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 8398 + - uid: 8454 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 8398 + - uid: 8455 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 8398 + - uid: 8456 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 8398 + - uid: 8457 + components: + - type: Transform + pos: 0.5,0.5 + parent: 8398 + - uid: 8458 + components: + - type: Transform + pos: 0.5,1.5 + parent: 8398 + - uid: 8459 + components: + - type: Transform + pos: 0.5,2.5 + parent: 8398 + - uid: 8460 + components: + - type: Transform + pos: 0.5,3.5 + parent: 8398 + - uid: 8461 + components: + - type: Transform + pos: 0.5,4.5 + parent: 8398 + - uid: 8462 + components: + - type: Transform + pos: 0.5,5.5 + parent: 8398 + - uid: 8463 + components: + - type: Transform + pos: 0.5,6.5 + parent: 8398 + - uid: 8464 + components: + - type: Transform + pos: 0.5,7.5 + parent: 8398 + - uid: 8465 + components: + - type: Transform + pos: 0.5,8.5 + parent: 8398 + - uid: 8466 + components: + - type: Transform + pos: 0.5,9.5 + parent: 8398 + - uid: 8467 + components: + - type: Transform + pos: 0.5,10.5 + parent: 8398 + - uid: 8468 + components: + - type: Transform + pos: 0.5,11.5 + parent: 8398 + - uid: 8469 + components: + - type: Transform + pos: 1.5,11.5 + parent: 8398 + - uid: 8470 + components: + - type: Transform + pos: 2.5,11.5 + parent: 8398 + - uid: 8471 + components: + - type: Transform + pos: 3.5,11.5 + parent: 8398 + - uid: 8472 + components: + - type: Transform + pos: 4.5,11.5 + parent: 8398 + - uid: 8473 + components: + - type: Transform + pos: 5.5,11.5 + parent: 8398 + - uid: 8474 + components: + - type: Transform + pos: 6.5,11.5 + parent: 8398 + - uid: 8475 + components: + - type: Transform + pos: 7.5,11.5 + parent: 8398 + - uid: 8476 + components: + - type: Transform + pos: 8.5,11.5 + parent: 8398 + - uid: 8477 + components: + - type: Transform + pos: 9.5,11.5 + parent: 8398 + - uid: 8478 + components: + - type: Transform + pos: 10.5,11.5 + parent: 8398 + - uid: 8479 + components: + - type: Transform + pos: 11.5,11.5 + parent: 8398 + - uid: 8480 + components: + - type: Transform + pos: 12.5,11.5 + parent: 8398 + - uid: 8481 + components: + - type: Transform + pos: 13.5,11.5 + parent: 8398 + - uid: 8482 + components: + - type: Transform + pos: 14.5,11.5 + parent: 8398 + - uid: 8483 + components: + - type: Transform + pos: 15.5,11.5 + parent: 8398 + - uid: 8484 + components: + - type: Transform + pos: 16.5,11.5 + parent: 8398 + - uid: 8485 + components: + - type: Transform + pos: 17.5,11.5 + parent: 8398 + - uid: 8486 + components: + - type: Transform + pos: 18.5,11.5 + parent: 8398 + - uid: 8487 + components: + - type: Transform + pos: 19.5,11.5 + parent: 8398 + - uid: 8488 + components: + - type: Transform + pos: 20.5,11.5 + parent: 8398 + - uid: 8489 + components: + - type: Transform + pos: 21.5,11.5 + parent: 8398 + - uid: 8490 + components: + - type: Transform + pos: 22.5,11.5 + parent: 8398 + - uid: 8491 + components: + - type: Transform + pos: 22.5,10.5 + parent: 8398 + - uid: 8492 + components: + - type: Transform + pos: 22.5,9.5 + parent: 8398 + - uid: 8493 + components: + - type: Transform + pos: 22.5,8.5 + parent: 8398 + - uid: 8494 + components: + - type: Transform + pos: 22.5,7.5 + parent: 8398 + - uid: 8495 + components: + - type: Transform + pos: 22.5,6.5 + parent: 8398 + - uid: 8496 + components: + - type: Transform + pos: 22.5,5.5 + parent: 8398 + - uid: 8497 + components: + - type: Transform + pos: 22.5,4.5 + parent: 8398 + - uid: 8498 + components: + - type: Transform + pos: 22.5,3.5 + parent: 8398 + - uid: 8499 + components: + - type: Transform + pos: 22.5,2.5 + parent: 8398 + - uid: 8500 + components: + - type: Transform + pos: 22.5,1.5 + parent: 8398 + - uid: 8501 + components: + - type: Transform + pos: 22.5,0.5 + parent: 8398 + - uid: 8502 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 8398 + - uid: 8503 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 8398 + - uid: 8504 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 8398 + - uid: 8505 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 8398 + - uid: 8506 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 8398 + - uid: 8507 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 8398 + - uid: 8508 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 8398 + - uid: 8509 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 8398 + - uid: 8510 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 8398 + - uid: 8511 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 8398 + - uid: 8512 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 8398 + - uid: 8513 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 8398 + - uid: 8514 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 8398 + - uid: 8515 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 8398 + - uid: 8516 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 8398 + - uid: 8517 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 8398 + - uid: 8518 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 8398 + - uid: 8519 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 8398 + - uid: 8520 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 8398 + - uid: 8521 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 8398 + - uid: 8522 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 8398 + - uid: 8523 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 8398 + - uid: 8524 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 8398 + - uid: 8525 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 8398 + - uid: 8526 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 8398 + - uid: 8527 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 8398 + - uid: 8528 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 8398 + - uid: 8529 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 8398 + - uid: 8530 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 8398 + - uid: 8531 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 8398 + - uid: 8532 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 8398 +- proto: FoodOrange + entities: + - uid: 8533 + components: + - type: Transform + pos: 11.5383,-0.37114096 + parent: 8398 +- proto: Lamp + entities: + - uid: 8534 + components: + - type: Transform + pos: 11.303925,-0.3507948 + parent: 8398 + - uid: 8535 + components: + - type: Transform + pos: 2.3064575,-12.339743 + parent: 8398 +- proto: Paper + entities: + - uid: 8536 + components: + - type: Transform + pos: 2.7283325,-12.45693 + parent: 8398 +- proto: PoweredSmallLight + entities: + - uid: 8537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 8398 + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 8398 +- proto: RandomVendingSnacks + entities: + - uid: 8539 + components: + - type: Transform + pos: 12.5,1.5 + parent: 8398 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 8540 + components: + - type: Transform + pos: 11.5,0.5 + parent: 8398 +- proto: TableWood + entities: + - uid: 8541 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 8398 + - uid: 8542 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 8398 + - uid: 8543 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 8398 +- proto: VendingMachineColaRed + entities: + - uid: 8544 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 8398 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 8545 + components: + - type: Transform + pos: 1.5,8.5 + parent: 8398 + - uid: 8546 + components: + - type: Transform + pos: 1.5,10.5 + parent: 8398 + - uid: 8547 + components: + - type: Transform + pos: 1.5,9.5 + parent: 8398 + - uid: 8548 + components: + - type: Transform + pos: 1.5,7.5 + parent: 8398 + - uid: 8549 + components: + - type: Transform + pos: 1.5,6.5 + parent: 8398 + - uid: 8550 + components: + - type: Transform + pos: 1.5,5.5 + parent: 8398 + - uid: 8551 + components: + - type: Transform + pos: 1.5,4.5 + parent: 8398 + - uid: 8552 + components: + - type: Transform + pos: 1.5,3.5 + parent: 8398 + - uid: 8553 + components: + - type: Transform + pos: 1.5,2.5 + parent: 8398 + - uid: 8554 + components: + - type: Transform + pos: 1.5,1.5 + parent: 8398 + - uid: 8555 + components: + - type: Transform + pos: 1.5,0.5 + parent: 8398 + - uid: 8556 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 8398 + - uid: 8557 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 8398 + - uid: 8558 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 8398 + - uid: 8559 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 8398 + - uid: 8560 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 8398 + - uid: 8561 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 8398 + - uid: 8562 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 8398 + - uid: 8563 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 8398 + - uid: 8564 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 8398 + - uid: 8565 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 8398 + - uid: 8566 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 8398 + - uid: 8567 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 8398 + - uid: 8568 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 8398 + - uid: 8569 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 8398 + - uid: 8570 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 8398 + - uid: 8571 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 8398 + - uid: 8572 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 8398 + - uid: 8573 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 8398 + - uid: 8574 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 8398 + - uid: 8575 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 8398 + - uid: 8576 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 8398 + - uid: 8577 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 8398 + - uid: 8578 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 8398 + - uid: 8579 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 8398 + - uid: 8580 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 8398 + - uid: 8581 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 8398 + - uid: 8582 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 8398 + - uid: 8583 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 8398 + - uid: 8584 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 8398 + - uid: 8585 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 8398 + - uid: 8586 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 8398 + - uid: 8587 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 8398 + - uid: 8588 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 8398 + - uid: 8589 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 8398 + - uid: 8590 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 8398 + - uid: 8591 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 8398 + - uid: 8592 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 8398 + - uid: 8593 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 8398 + - uid: 8594 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 8398 + - uid: 8595 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 8398 + - uid: 8596 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 8398 + - uid: 8597 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 8398 + - uid: 8598 + components: + - type: Transform + pos: 21.5,0.5 + parent: 8398 + - uid: 8599 + components: + - type: Transform + pos: 21.5,1.5 + parent: 8398 + - uid: 8600 + components: + - type: Transform + pos: 21.5,2.5 + parent: 8398 + - uid: 8601 + components: + - type: Transform + pos: 21.5,3.5 + parent: 8398 + - uid: 8602 + components: + - type: Transform + pos: 21.5,4.5 + parent: 8398 + - uid: 8603 + components: + - type: Transform + pos: 21.5,5.5 + parent: 8398 + - uid: 8604 + components: + - type: Transform + pos: 21.5,6.5 + parent: 8398 + - uid: 8605 + components: + - type: Transform + pos: 21.5,7.5 + parent: 8398 + - uid: 8606 + components: + - type: Transform + pos: 21.5,8.5 + parent: 8398 + - uid: 8607 + components: + - type: Transform + pos: 21.5,9.5 + parent: 8398 + - uid: 8608 + components: + - type: Transform + pos: 21.5,10.5 + parent: 8398 + - uid: 8609 + components: + - type: Transform + pos: 20.5,10.5 + parent: 8398 + - uid: 8610 + components: + - type: Transform + pos: 19.5,10.5 + parent: 8398 + - uid: 8611 + components: + - type: Transform + pos: 18.5,10.5 + parent: 8398 + - uid: 8612 + components: + - type: Transform + pos: 17.5,10.5 + parent: 8398 + - uid: 8613 + components: + - type: Transform + pos: 16.5,10.5 + parent: 8398 + - uid: 8614 + components: + - type: Transform + pos: 15.5,10.5 + parent: 8398 + - uid: 8615 + components: + - type: Transform + pos: 14.5,10.5 + parent: 8398 + - uid: 8616 + components: + - type: Transform + pos: 13.5,10.5 + parent: 8398 + - uid: 8617 + components: + - type: Transform + pos: 12.5,10.5 + parent: 8398 + - uid: 8618 + components: + - type: Transform + pos: 11.5,10.5 + parent: 8398 + - uid: 8619 + components: + - type: Transform + pos: 10.5,10.5 + parent: 8398 + - uid: 8620 + components: + - type: Transform + pos: 9.5,10.5 + parent: 8398 + - uid: 8621 + components: + - type: Transform + pos: 8.5,10.5 + parent: 8398 + - uid: 8622 + components: + - type: Transform + pos: 7.5,10.5 + parent: 8398 + - uid: 8623 + components: + - type: Transform + pos: 6.5,10.5 + parent: 8398 + - uid: 8624 + components: + - type: Transform + pos: 5.5,10.5 + parent: 8398 + - uid: 8625 + components: + - type: Transform + pos: 4.5,10.5 + parent: 8398 + - uid: 8626 + components: + - type: Transform + pos: 3.5,10.5 + parent: 8398 + - uid: 8627 + components: + - type: Transform + pos: 2.5,10.5 + parent: 8398 + - uid: 8628 + components: + - type: Transform + pos: 12.5,8.5 + parent: 8398 + - uid: 8629 + components: + - type: Transform + pos: 12.5,9.5 + parent: 8398 + - uid: 8630 + components: + - type: Transform + pos: 11.5,8.5 + parent: 8398 + - uid: 8631 + components: + - type: Transform + pos: 2.5,5.5 + parent: 8398 + - uid: 8632 + components: + - type: Transform + pos: 3.5,5.5 + parent: 8398 + - uid: 8633 + components: + - type: Transform + pos: 3.5,6.5 + parent: 8398 + - uid: 8634 + components: + - type: Transform + pos: 3.5,4.5 + parent: 8398 + - uid: 8635 + components: + - type: Transform + pos: 3.5,2.5 + parent: 8398 + - uid: 8636 + components: + - type: Transform + pos: 3.5,1.5 + parent: 8398 + - uid: 8637 + components: + - type: Transform + pos: 3.5,0.5 + parent: 8398 + - uid: 8638 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 8398 + - uid: 8639 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 8398 + - uid: 8640 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 8398 + - uid: 8641 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 8398 + - uid: 8642 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 8398 + - uid: 8643 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 8398 + - uid: 8644 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 8398 + - uid: 8645 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 8398 + - uid: 8646 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 8398 + - uid: 8647 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 8398 + - uid: 8648 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 8398 + - uid: 8649 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 8398 + - uid: 8650 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 8398 + - uid: 8651 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 8398 + - uid: 8652 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 8398 + - uid: 8653 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 8398 + - uid: 8654 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 8398 + - uid: 8655 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 8398 + - uid: 8656 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 8398 + - uid: 8657 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 8398 + - uid: 8658 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 8398 + - uid: 8659 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 8398 + - uid: 8660 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 8398 + - uid: 8661 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 8398 + - uid: 8662 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 8398 + - uid: 8663 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 8398 + - uid: 8664 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 8398 + - uid: 8665 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 8398 + - uid: 8666 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 8398 + - uid: 8667 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 8398 + - uid: 8668 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 8398 + - uid: 8669 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 8398 + - uid: 8670 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 8398 + - uid: 8671 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 8398 + - uid: 8672 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 8398 + - uid: 8673 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 8398 + - uid: 8674 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 8398 + - uid: 8675 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 8398 + - uid: 8676 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 8398 + - uid: 8677 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 8398 + - uid: 8678 + components: + - type: Transform + pos: 19.5,0.5 + parent: 8398 + - uid: 8679 + components: + - type: Transform + pos: 19.5,1.5 + parent: 8398 + - uid: 8680 + components: + - type: Transform + pos: 19.5,2.5 + parent: 8398 + - uid: 8681 + components: + - type: Transform + pos: 19.5,3.5 + parent: 8398 + - uid: 8682 + components: + - type: Transform + pos: 19.5,5.5 + parent: 8398 + - uid: 8683 + components: + - type: Transform + pos: 19.5,6.5 + parent: 8398 + - uid: 8684 + components: + - type: Transform + pos: 19.5,7.5 + parent: 8398 + - uid: 8685 + components: + - type: Transform + pos: 19.5,8.5 + parent: 8398 + - uid: 8686 + components: + - type: Transform + pos: 20.5,1.5 + parent: 8398 + - uid: 8687 + components: + - type: Transform + pos: 2.5,1.5 + parent: 8398 + - uid: 8688 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 8398 + - uid: 8689 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 8398 + - uid: 8690 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 8398 + - uid: 8691 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 8398 + - uid: 8692 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 8398 + - uid: 8693 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 8398 + - uid: 8694 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 8398 + - uid: 8695 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 8398 + - uid: 8696 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 8398 + - uid: 8697 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 8398 + - uid: 8698 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 8398 + - uid: 8699 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 8398 + - uid: 8700 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 8398 + - uid: 8701 + components: + - type: Transform + pos: 17.5,0.5 + parent: 8398 + - uid: 8702 + components: + - type: Transform + pos: 13.5,6.5 + parent: 8398 + - uid: 8703 + components: + - type: Transform + pos: 14.5,6.5 + parent: 8398 + - uid: 8704 + components: + - type: Transform + pos: 14.5,8.5 + parent: 8398 + - uid: 8705 + components: + - type: Transform + pos: 15.5,8.5 + parent: 8398 + - uid: 8706 + components: + - type: Transform + pos: 16.5,8.5 + parent: 8398 + - uid: 8707 + components: + - type: Transform + pos: 17.5,8.5 + parent: 8398 + - uid: 8708 + components: + - type: Transform + pos: 18.5,8.5 + parent: 8398 + - uid: 8709 + components: + - type: Transform + pos: 15.5,7.5 + parent: 8398 + - uid: 8710 + components: + - type: Transform + pos: 15.5,6.5 + parent: 8398 + - uid: 8711 + components: + - type: Transform + pos: 16.5,6.5 + parent: 8398 + - uid: 8712 + components: + - type: Transform + pos: 17.5,6.5 + parent: 8398 + - uid: 8713 + components: + - type: Transform + pos: 17.5,5.5 + parent: 8398 + - uid: 8714 + components: + - type: Transform + pos: 17.5,4.5 + parent: 8398 + - uid: 8715 + components: + - type: Transform + pos: 17.5,3.5 + parent: 8398 + - uid: 8716 + components: + - type: Transform + pos: 17.5,2.5 + parent: 8398 + - uid: 8717 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 8398 + - uid: 8718 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 8398 + - uid: 8719 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 8398 + - uid: 8720 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 8398 + - uid: 8721 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 8398 + - uid: 8722 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 8398 + - uid: 8723 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 8398 + - uid: 8724 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 8398 + - uid: 8725 + components: + - type: Transform + pos: 15.5,0.5 + parent: 8398 + - uid: 8726 + components: + - type: Transform + pos: 15.5,1.5 + parent: 8398 + - uid: 8727 + components: + - type: Transform + pos: 15.5,2.5 + parent: 8398 + - uid: 8728 + components: + - type: Transform + pos: 15.5,3.5 + parent: 8398 + - uid: 8729 + components: + - type: Transform + pos: 16.5,3.5 + parent: 8398 + - uid: 8730 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 8398 + - uid: 8731 + components: + - type: Transform + pos: 12.5,6.5 + parent: 8398 + - uid: 8732 + components: + - type: Transform + pos: 5.5,6.5 + parent: 8398 + - uid: 8733 + components: + - type: Transform + pos: 5.5,5.5 + parent: 8398 + - uid: 8734 + components: + - type: Transform + pos: 5.5,4.5 + parent: 8398 + - uid: 8735 + components: + - type: Transform + pos: 5.5,3.5 + parent: 8398 + - uid: 8736 + components: + - type: Transform + pos: 5.5,2.5 + parent: 8398 + - uid: 8737 + components: + - type: Transform + pos: 5.5,1.5 + parent: 8398 + - uid: 8738 + components: + - type: Transform + pos: 5.5,0.5 + parent: 8398 + - uid: 8739 + components: + - type: Transform + pos: 3.5,8.5 + parent: 8398 + - uid: 8740 + components: + - type: Transform + pos: 4.5,8.5 + parent: 8398 + - uid: 8741 + components: + - type: Transform + pos: 5.5,8.5 + parent: 8398 + - uid: 8742 + components: + - type: Transform + pos: 6.5,8.5 + parent: 8398 + - uid: 8743 + components: + - type: Transform + pos: 7.5,8.5 + parent: 8398 + - uid: 8744 + components: + - type: Transform + pos: 8.5,8.5 + parent: 8398 + - uid: 8745 + components: + - type: Transform + pos: 9.5,8.5 + parent: 8398 + - uid: 8746 + components: + - type: Transform + pos: 9.5,7.5 + parent: 8398 + - uid: 8747 + components: + - type: Transform + pos: 6.5,1.5 + parent: 8398 + - uid: 8748 + components: + - type: Transform + pos: 7.5,1.5 + parent: 8398 + - uid: 8749 + components: + - type: Transform + pos: 7.5,0.5 + parent: 8398 + - uid: 8750 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 8398 + - uid: 8751 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 8398 + - uid: 8752 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 8398 + - uid: 8753 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 8398 + - uid: 8754 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 8398 + - uid: 8755 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 8398 + - uid: 8756 + components: + - type: Transform + pos: 7.5,4.5 + parent: 8398 + - uid: 8757 + components: + - type: Transform + pos: 7.5,3.5 + parent: 8398 + - uid: 8758 + components: + - type: Transform + pos: 7.5,2.5 + parent: 8398 + - uid: 8759 + components: + - type: Transform + pos: 6.5,6.5 + parent: 8398 + - uid: 8760 + components: + - type: Transform + pos: 7.5,6.5 + parent: 8398 + - uid: 8761 + components: + - type: Transform + pos: 8.5,6.5 + parent: 8398 + - uid: 8762 + components: + - type: Transform + pos: 9.5,6.5 + parent: 8398 + - uid: 8763 + components: + - type: Transform + pos: 10.5,6.5 + parent: 8398 + - uid: 8764 + components: + - type: Transform + pos: 11.5,6.5 + parent: 8398 + - uid: 8765 + components: + - type: Transform + pos: 9.5,4.5 + parent: 8398 + - uid: 8766 + components: + - type: Transform + pos: 10.5,4.5 + parent: 8398 + - uid: 8767 + components: + - type: Transform + pos: 11.5,4.5 + parent: 8398 + - uid: 8768 + components: + - type: Transform + pos: 12.5,4.5 + parent: 8398 + - uid: 8769 + components: + - type: Transform + pos: 13.5,4.5 + parent: 8398 + - uid: 8770 + components: + - type: Transform + pos: 14.5,4.5 + parent: 8398 + - uid: 8771 + components: + - type: Transform + pos: 15.5,4.5 + parent: 8398 + - uid: 8772 + components: + - type: Transform + pos: 9.5,2.5 + parent: 8398 + - uid: 8773 + components: + - type: Transform + pos: 10.5,2.5 + parent: 8398 + - uid: 8774 + components: + - type: Transform + pos: 12.5,2.5 + parent: 8398 + - uid: 8775 + components: + - type: Transform + pos: 13.5,2.5 + parent: 8398 + - uid: 8776 + components: + - type: Transform + pos: 12.5,3.5 + parent: 8398 + - uid: 8777 + components: + - type: Transform + pos: 13.5,1.5 + parent: 8398 + - uid: 8778 + components: + - type: Transform + pos: 13.5,0.5 + parent: 8398 + - uid: 8779 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 8398 + - uid: 8780 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 8398 + - uid: 8781 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 8398 + - uid: 8782 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 8398 + - uid: 8783 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 8398 + - uid: 8784 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 8398 + - uid: 8785 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 8398 + - uid: 8786 + components: + - type: Transform + pos: 9.5,0.5 + parent: 8398 + - uid: 8787 + components: + - type: Transform + pos: 9.5,1.5 + parent: 8398 + - uid: 8788 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 8398 + - uid: 8789 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 8398 + - uid: 8790 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 8398 + - uid: 8791 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 8398 + - uid: 8792 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 8398 + - uid: 8793 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 8398 +- proto: WarpPoint + entities: + - uid: 8794 + components: + - type: Transform + pos: 11.5,0.5 + parent: 8398 + - type: WarpPoint + location: Лень +- proto: WoodDoor + entities: + - uid: 8795 + components: + - type: Transform + pos: 11.5,2.5 + parent: 8398 + - uid: 8796 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 8398 + - uid: 8797 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 8398 +... diff --git a/Resources/Maps/_Wega/Lavaland/barracks.yml b/Resources/Maps/_Wega/Lavaland/barracks.yml new file mode 100644 index 00000000000..412c07706cd --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/barracks.yml @@ -0,0 +1,1283 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 21:00:02 + entityCount: 222 +maps: [] +grids: +- 8798 +orphans: +- 8798 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 8798 + components: + - type: MetaData + name: Барраки + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: Bed + entities: + - uid: 8799 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 8798 + - uid: 8800 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 8798 + - uid: 8801 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 8798 + - uid: 8802 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 8798 + - uid: 8803 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 8798 + - uid: 8804 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 8798 + - uid: 8805 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 8798 + - uid: 8806 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 8798 + - uid: 8807 + components: + - type: Transform + pos: 6.5,1.5 + parent: 8798 + - uid: 8808 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 8798 + - uid: 8809 + components: + - type: Transform + pos: 9.5,1.5 + parent: 8798 +- proto: BedsheetOrange + entities: + - uid: 8810 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 8798 + - uid: 8811 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 8798 + - uid: 8812 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 8798 + - uid: 8813 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 8798 + - uid: 8814 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 8798 + - uid: 8815 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 8798 + - uid: 8816 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 8798 + - uid: 8817 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 8798 +- proto: BedsheetYellow + entities: + - uid: 8818 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 8798 + - uid: 8819 + components: + - type: Transform + pos: 6.5,1.5 + parent: 8798 + - uid: 8820 + components: + - type: Transform + pos: 9.5,1.5 + parent: 8798 +- proto: Claymore + entities: + - uid: 8821 + components: + - type: MetaData + desc: Выглядит слегка затупившимся. + name: гладиус + - type: Transform + pos: 4.4753723,-6.4509516 + parent: 8798 + - uid: 8822 + components: + - type: MetaData + desc: Выглядит слегка затупившимся. + name: гладиус + - type: Transform + pos: 4.545685,-7.411889 + parent: 8798 + - uid: 8823 + components: + - type: MetaData + desc: Выглядит слегка затупившимся. + name: гладиус + - type: Transform + pos: 4.499695,-8.491926 + parent: 8798 + - uid: 8824 + components: + - type: MetaData + desc: Выглядит слегка затупившимся. + name: гладиус + - type: Transform + pos: 4.49881,-9.474389 + parent: 8798 +- proto: ClothingHeadHatGladiator + entities: + - uid: 8825 + components: + - type: Transform + pos: 0.48776245,-7.44578 + parent: 8798 + - uid: 8826 + components: + - type: Transform + pos: 0.46432495,-8.453592 + parent: 8798 + - uid: 8827 + components: + - type: Transform + pos: 0.41744995,-9.50828 + parent: 8798 + - uid: 8828 + components: + - type: Transform + pos: 1.5190125,-10.492655 + parent: 8798 + - uid: 8829 + components: + - type: Transform + pos: 0.55807495,-6.367655 + parent: 8798 + - uid: 8830 + components: + - type: Transform + pos: 2.526825,-10.492655 + parent: 8798 + - uid: 8831 + components: + - type: Transform + pos: 3.5346375,-10.492655 + parent: 8798 +- proto: ClothingShoesCult + entities: + - uid: 8832 + components: + - type: Transform + pos: 3.532837,-10.375467 + parent: 8798 + - uid: 8833 + components: + - type: Transform + pos: 2.548462,-10.398905 + parent: 8798 + - uid: 8834 + components: + - type: Transform + pos: 1.5640869,-10.375467 + parent: 8798 + - uid: 8835 + components: + - type: Transform + pos: 0.5093994,-9.344217 + parent: 8798 + - uid: 8836 + components: + - type: Transform + pos: 0.4859619,-8.312967 + parent: 8798 + - uid: 8837 + components: + - type: Transform + pos: 0.5562744,-7.398905 + parent: 8798 + - uid: 8838 + components: + - type: Transform + pos: 0.5328369,-6.3442173 + parent: 8798 +- proto: ClothingUniformJumpsuitGladiator + entities: + - uid: 8839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.48776245,-6.461405 + parent: 8798 + - uid: 8840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.51119995,-7.492655 + parent: 8798 + - uid: 8841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.44088745,-8.453592 + parent: 8798 + - uid: 8842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.46432495,-9.625467 + parent: 8798 + - uid: 8843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5190125,-10.492655 + parent: 8798 + - uid: 8844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5033875,-10.492655 + parent: 8798 + - uid: 8845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.60495,-10.53953 + parent: 8798 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 8846 + components: + - type: MetaData + desc: Мммммммм. Винтажное вино выдержанное с 1984 года. + - type: Transform + pos: 8.584656,-8.3312645 + parent: 8798 +- proto: FoodMeatSpider + entities: + - uid: 8847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.589569,0.6288986 + parent: 8798 +- proto: FoodPlateSmall + entities: + - uid: 8848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.542694,0.30077362 + parent: 8798 +- proto: MakeshiftShield + entities: + - uid: 8849 + components: + - type: Transform + pos: 4.5190125,-6.4379673 + parent: 8798 + - uid: 8850 + components: + - type: Transform + pos: 4.5190125,-7.44578 + parent: 8798 + - uid: 8851 + components: + - type: Transform + pos: 4.54245,-8.47703 + parent: 8798 + - uid: 8852 + components: + - type: Transform + pos: 4.5190125,-9.437967 + parent: 8798 +- proto: Rack + entities: + - uid: 8853 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 8798 + - uid: 8854 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 8798 + - uid: 8855 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 8798 + - uid: 8856 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 8798 + - uid: 8857 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 8798 + - uid: 8858 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 8798 + - uid: 8859 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 8798 + - uid: 8860 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 8798 + - uid: 8861 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 8798 + - uid: 8862 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 8798 + - uid: 8863 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 8798 +- proto: RGBStaff + entities: + - uid: 8864 + components: + - type: Transform + pos: 2.464569,0.6054611 + parent: 8798 +- proto: SpawnMobLegionLavaland + entities: + - uid: 1 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 8798 + - uid: 2 + components: + - type: Transform + pos: 6.5,1.5 + parent: 8798 + - uid: 3 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 8798 +- proto: Table + entities: + - uid: 8865 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 8798 + - uid: 8866 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 8798 + - uid: 8867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 8798 + - uid: 8868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 8798 + - uid: 8869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 8798 +- proto: Torch + entities: + - uid: 8870 + components: + - type: Transform + pos: 4.544586,-4.435208 + parent: 8798 + - uid: 8871 + components: + - type: Transform + pos: 1.5211487,-0.28677034 + parent: 8798 + - uid: 8872 + components: + - type: Transform + pos: 9.642212,-0.28516388 + parent: 8798 + - uid: 8873 + components: + - type: Transform + pos: 8.610962,-9.147792 + parent: 8798 + - uid: 8874 + components: + - type: Transform + pos: 2.563385,-9.405604 + parent: 8798 +- proto: WallRockBasalt + entities: + - uid: 8875 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 8798 + - uid: 8876 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 8798 + - uid: 8877 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 8798 + - uid: 8878 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 8798 + - uid: 8879 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 8798 + - uid: 8880 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 8798 + - uid: 8881 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 8798 + - uid: 8882 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 8798 + - uid: 8883 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 8798 + - uid: 8884 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 8798 + - uid: 8885 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 8798 + - uid: 8886 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 8798 + - uid: 8887 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 8798 + - uid: 8888 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 8798 + - uid: 8889 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 8798 + - uid: 8890 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 8798 + - uid: 8891 + components: + - type: Transform + pos: 11.5,0.5 + parent: 8798 + - uid: 8892 + components: + - type: Transform + pos: 11.5,1.5 + parent: 8798 + - uid: 8893 + components: + - type: Transform + pos: 11.5,2.5 + parent: 8798 + - uid: 8894 + components: + - type: Transform + pos: 11.5,3.5 + parent: 8798 + - uid: 8895 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 8798 + - uid: 8896 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 8798 + - uid: 8897 + components: + - type: Transform + pos: 12.5,0.5 + parent: 8798 + - uid: 8898 + components: + - type: Transform + pos: 12.5,1.5 + parent: 8798 + - uid: 8899 + components: + - type: Transform + pos: 12.5,2.5 + parent: 8798 + - uid: 8900 + components: + - type: Transform + pos: 12.5,3.5 + parent: 8798 + - uid: 8901 + components: + - type: Transform + pos: 10.5,3.5 + parent: 8798 + - uid: 8902 + components: + - type: Transform + pos: 9.5,3.5 + parent: 8798 + - uid: 8903 + components: + - type: Transform + pos: 8.5,3.5 + parent: 8798 + - uid: 8904 + components: + - type: Transform + pos: 7.5,3.5 + parent: 8798 + - uid: 8905 + components: + - type: Transform + pos: 6.5,3.5 + parent: 8798 + - uid: 8906 + components: + - type: Transform + pos: 5.5,3.5 + parent: 8798 + - uid: 8907 + components: + - type: Transform + pos: 4.5,3.5 + parent: 8798 + - uid: 8908 + components: + - type: Transform + pos: 3.5,3.5 + parent: 8798 + - uid: 8909 + components: + - type: Transform + pos: 2.5,3.5 + parent: 8798 + - uid: 8910 + components: + - type: Transform + pos: 1.5,3.5 + parent: 8798 + - uid: 8911 + components: + - type: Transform + pos: 0.5,3.5 + parent: 8798 + - uid: 8912 + components: + - type: Transform + pos: -0.5,3.5 + parent: 8798 + - uid: 8913 + components: + - type: Transform + pos: -1.5,3.5 + parent: 8798 + - uid: 8914 + components: + - type: Transform + pos: -1.5,2.5 + parent: 8798 + - uid: 8915 + components: + - type: Transform + pos: -1.5,1.5 + parent: 8798 + - uid: 8916 + components: + - type: Transform + pos: -1.5,0.5 + parent: 8798 + - uid: 8917 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 8798 + - uid: 8918 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 8798 + - uid: 8919 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 8798 + - uid: 8920 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 8798 + - uid: 8921 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 8798 + - uid: 8922 + components: + - type: Transform + pos: -0.5,2.5 + parent: 8798 + - uid: 8923 + components: + - type: Transform + pos: -0.5,1.5 + parent: 8798 + - uid: 8924 + components: + - type: Transform + pos: -0.5,0.5 + parent: 8798 + - uid: 8925 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 8798 + - uid: 8926 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 8798 + - uid: 8927 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 8798 + - uid: 8928 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 8798 + - uid: 8929 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 8798 + - uid: 8930 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 8798 + - uid: 8931 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 8798 + - uid: 8932 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 8798 + - uid: 8933 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 8798 + - uid: 8934 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 8798 + - uid: 8935 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 8798 + - uid: 8936 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 8798 + - uid: 8937 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 8798 +- proto: WallSandstone + entities: + - uid: 8938 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8798 + - uid: 8939 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 8798 + - uid: 8940 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 8798 + - uid: 8941 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 8798 + - uid: 8942 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 8798 + - uid: 8943 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 8798 + - uid: 8944 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 8798 + - uid: 8945 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 8798 + - uid: 8946 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 8798 + - uid: 8947 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 8798 + - uid: 8948 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 8798 + - uid: 8949 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 8798 + - uid: 8950 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 8798 + - uid: 8951 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 8798 + - uid: 8952 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 8798 + - uid: 8953 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 8798 + - uid: 8954 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 8798 + - uid: 8955 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 8798 + - uid: 8956 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 8798 + - uid: 8957 + components: + - type: Transform + pos: 0.5,0.5 + parent: 8798 + - uid: 8958 + components: + - type: Transform + pos: 0.5,1.5 + parent: 8798 + - uid: 8959 + components: + - type: Transform + pos: 0.5,2.5 + parent: 8798 + - uid: 8960 + components: + - type: Transform + pos: 1.5,2.5 + parent: 8798 + - uid: 8961 + components: + - type: Transform + pos: 2.5,2.5 + parent: 8798 + - uid: 8962 + components: + - type: Transform + pos: 3.5,2.5 + parent: 8798 + - uid: 8963 + components: + - type: Transform + pos: 4.5,2.5 + parent: 8798 + - uid: 8964 + components: + - type: Transform + pos: 5.5,2.5 + parent: 8798 + - uid: 8965 + components: + - type: Transform + pos: 6.5,2.5 + parent: 8798 + - uid: 8966 + components: + - type: Transform + pos: 7.5,2.5 + parent: 8798 + - uid: 8967 + components: + - type: Transform + pos: 8.5,2.5 + parent: 8798 + - uid: 8968 + components: + - type: Transform + pos: 9.5,2.5 + parent: 8798 + - uid: 8969 + components: + - type: Transform + pos: 10.5,2.5 + parent: 8798 + - uid: 8970 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 8798 + - uid: 8971 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 8798 + - uid: 8972 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 8798 + - uid: 8973 + components: + - type: Transform + pos: 5.5,1.5 + parent: 8798 + - uid: 8974 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 8798 + - uid: 8975 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 8798 + - uid: 8976 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 8798 + - uid: 8977 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 8798 + - uid: 8978 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 8798 + - uid: 8979 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 8798 + - uid: 8980 + components: + - type: Transform + pos: 5.5,0.5 + parent: 8798 + - uid: 8981 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 8798 + - uid: 8982 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 8798 + - uid: 8983 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 8798 + - uid: 8984 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 8798 + - uid: 8985 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 8798 + - uid: 8986 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 8798 + - uid: 8987 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 8798 + - uid: 8988 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 8798 + - uid: 8989 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 8798 + - uid: 8990 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 8798 + - uid: 8991 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 8798 + - uid: 8992 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 8798 + - uid: 8993 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 8798 + - uid: 8994 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 8798 + - uid: 8995 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 8798 + - uid: 8996 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 8798 + - uid: 8997 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 8798 + - uid: 8998 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 8798 + - uid: 8999 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 8798 + - uid: 9000 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 8798 + - uid: 9001 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 8798 + - uid: 9002 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 8798 + - uid: 9003 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 8798 + - uid: 9004 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 8798 + - uid: 9005 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 8798 + - uid: 9006 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 8798 + - uid: 9007 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 8798 + - uid: 9008 + components: + - type: Transform + pos: 10.5,0.5 + parent: 8798 + - uid: 9009 + components: + - type: Transform + pos: 10.5,1.5 + parent: 8798 + - uid: 9010 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 8798 +- proto: WarpPoint + entities: + - uid: 9011 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 8798 + - type: WarpPoint + location: Барраки Легионеров +- proto: WoodDoor + entities: + - uid: 9012 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 8798 + - uid: 9013 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 8798 + - uid: 9014 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 8798 + - uid: 9015 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 8798 + - uid: 9016 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 8798 +... diff --git a/Resources/Maps/_Wega/Lavaland/basalt_ruin.yml b/Resources/Maps/_Wega/Lavaland/basalt_ruin.yml new file mode 100644 index 00000000000..a8660bb5561 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/basalt_ruin.yml @@ -0,0 +1,1378 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 13:34:51 + entityCount: 226 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt + 2: FloorDarkDiagonalMini +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -5.6343684,3.518619 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 36343 + 0,-1: + 0: 64733 + -1,0: + 0: 61183 + -1,1: + 0: 61166 + 0,1: + 0: 65416 + 1,0: + 0: 65471 + 1,1: + 0: 32767 + 1,-1: + 0: 65535 + 2,0: + 0: 8191 + 2,1: + 0: 17 + 2,-1: + 0: 65529 + 3,0: + 0: 307 + 3,-1: + 0: 13104 + 0,-3: + 0: 61440 + 0,-2: + 0: 53247 + -1,-3: + 0: 61440 + -1,-2: + 0: 16383 + -1,-1: + 0: 62395 + 1,-2: + 0: 61440 + 2,-2: + 0: 52972 + 3,-2: + 0: 273 + -2,-3: + 0: 49152 + -2,-2: + 0: 52428 + -2,-1: + 0: 34956 + -2,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: BasaltRandom + entities: + - uid: 138 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 134 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: BasaltTwo + entities: + - uid: 135 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 81 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 +- proto: Grille + entities: + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 187 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: MetalDoor + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 +- proto: MiningDrill + entities: + - uid: 179 + components: + - type: Transform + pos: 12.36946,-5.5208426 + parent: 1 +- proto: PoweredLightPostSmall + entities: + - uid: 128 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 +- proto: Rack + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: RightArmSkeleton + entities: + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.697422,-7.4114676 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 182 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 72 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: TorsoSkeleton + entities: + - uid: 184 + components: + - type: Transform + pos: 10.603672,-7.3802176 + parent: 1 +- proto: WallBasaltCobblebrick + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 +- proto: WallMining + entities: + - uid: 130 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 136 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 +- proto: WallRockBasaltArtifactFragment + entities: + - uid: 152 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 +- proto: WallRockBasaltDiamond + entities: + - uid: 172 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: WallRockBasaltPlasma + entities: + - uid: 139 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 +- proto: WallRockBasaltSilver + entities: + - uid: 200 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 173 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/beach.yml b/Resources/Maps/_Wega/Lavaland/beach.yml new file mode 100644 index 00000000000..d93e38ca6a8 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/beach.yml @@ -0,0 +1,3944 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 18:03:29 + entityCount: 631 +maps: [] +grids: +- 3885 +orphans: +- 3885 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 7: FloorAstroAsteroidSand + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 40: FloorCarpetOffice + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 39: FloorSteelDirty + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 3885 + components: + - type: MetaData + name: Пляж + - type: Transform + pos: 5.875,-4.625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAJwAAAAAAAA0AAAAAAAASAAAAAAAAEgAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAACcAAAAAAAARAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAA4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAADAAAAAAAADgAAAAAAAAMAAAAAAAAOAAAAAAAAEAAAAAAAAAcAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: EAAAAAAAABIAAAAAAAASAAAAAAAADQAAAAAAACcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABEAAAAAAAAnAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAQAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAACgAAAAAAAAoAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAoAAAAAAAAEAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAoAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAKAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAAAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAACgAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEgAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAoAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAAAAAAAAAAAQAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAKAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAAAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAACgAAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAoAAAAAAAADgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAKAAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAOAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAHAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAADgAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA8AAAAAAAAPAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAPAAAAAAAADwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAJwAAAAAAABEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAABAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAAAQAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAQAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEQAAAAAAACcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 15: 1.4823914,-0.36037052 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 14: 7.832947,6.8357043 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 16: 6.962555,-1.8501465 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 28: 10.91037,5.5029173 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 24: -7.244995,-2.14461 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 25: -5.8128357,-1.1806371 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 26: -3.3666687,-1.7064404 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 29: 10.515808,7.328624 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 27: 5.4154663,-0.09465647 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 23: -14.041382,-5.9875755 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 22: -12.316956,-4.862941 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 21: 10.93988,-5.216315 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 19: -9.012146,12.932026 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 20: 9.920502,9.991228 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 17: 8.385193,8.09156 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 18: -12.066528,11.047896 + - node: + color: '#DAA976FF' + id: Dirt + decals: + 30: 11,0 + 31: 11,0 + 32: 11,1 + 33: 12,0 + 34: 11,-1 + 35: 12,0 + 36: 11,1 + 37: 12,2 + 38: 12,3 + 39: 11,3 + 40: -15,-2 + 41: -15,0 + 42: -15,0 + 43: -14,0 + 44: -14,0 + 45: -14,1 + 46: -14,1 + 47: 3,12 + 48: 4,12 + 49: 4,13 + 50: 2,13 + 51: -1,12 + 52: -1,13 + 53: 5,2 + 54: 5,3 + 55: 5,4 + 56: 5,5 + 57: 5,7 + 58: 5,6 + 59: 5,8 + 60: 5,10 + 61: 5,9 + 62: 11,-2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassa2 + decals: + 9: 6.0324097,12.82037 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassa4 + decals: + 1: -9.844574,10.934425 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassb2 + decals: + 0: -13.921814,7.808817 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassb3 + decals: + 6: -13.259369,-5.2835975 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassb4 + decals: + 2: -12.679657,9.503072 + 8: 7.786072,-5.892486 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grassb5 + decals: + 7: 9.539917,-5.0206957 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grasse1 + decals: + 5: 5.269226,-11.257871 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grasse2 + decals: + 4: 1.4242859,-9.388348 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Grasse3 + decals: + 3: -6.007965,-11.038786 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 13: -11.781494,3.938407 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 12: -4.2937927,-0.2807982 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 10: -6.036804,-2.3611772 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 11: 8.887451,-3.513702 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 48015 + -1,1: + 0: 32639 + 0,2: + 0: 3003 + -1,2: + 0: 4087 + 0,3: + 0: 239 + 1: 61440 + -1,3: + 0: 187 + 1: 61440 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 57343 + 1,3: + 0: 93 + 1: 61440 + 1,-1: + 0: 65535 + 2,0: + 0: 48063 + 2,1: + 0: 65523 + 2,2: + 0: 14207 + 2,3: + 0: 1 + 1: 65480 + 2,-1: + 0: 48051 + 3,0: + 0: 4401 + 1: 17476 + 3,2: + 1: 30566 + 3,3: + 1: 30583 + 3,-1: + 0: 12560 + 1: 17476 + 3,1: + 1: 26212 + -4,0: + 0: 26238 + -4,-1: + 0: 30304 + -5,0: + 1: 34952 + -4,1: + 1: 4368 + 0: 52416 + -5,1: + 1: 34952 + -4,2: + 1: 13073 + 0: 2188 + -5,2: + 1: 34952 + -4,3: + 1: 65527 + -5,3: + 1: 34952 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 1: 62208 + 0: 142 + -3,-1: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 35771 + -2,3: + 1: 61440 + 0: 238 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + 0,-4: + 1: 3840 + -1,-4: + 1: 3840 + 0,-3: + 0: 65535 + -1,-3: + 0: 65535 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + 1,-4: + 1: 3840 + 1,-3: + 0: 65527 + 1,-2: + 0: 65535 + 2,-4: + 1: 65280 + 2,-3: + 0: 29456 + 1: 140 + 2,-2: + 0: 65527 + 3,-4: + 1: 30464 + 3,-3: + 1: 30583 + 3,-2: + 1: 26214 + -4,-4: + 1: 65280 + -5,-4: + 1: 34816 + -4,-3: + 1: 13183 + 0: 32768 + -5,-3: + 1: 34952 + -4,-2: + 1: 4369 + 0: 52424 + -5,-2: + 1: 34952 + -5,-1: + 1: 34952 + -3,-4: + 1: 16128 + -3,-3: + 0: 65512 + -3,-2: + 0: 65535 + -2,-4: + 1: 3840 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: ActionToggleInternals + entities: + - uid: 96 + mapInit: true + paused: true + components: + - type: Transform + parent: 95 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 95 +- proto: AirlockGlass + entities: + - uid: 3886 + components: + - type: Transform + pos: -12.5,0.5 + parent: 3885 + - uid: 3887 + components: + - type: Transform + pos: -0.5,6.5 + parent: 3885 + - uid: 3888 + components: + - type: Transform + pos: -4.5,11.5 + parent: 3885 + - uid: 3889 + components: + - type: Transform + pos: 0.5,12.5 + parent: 3885 + - uid: 3890 + components: + - type: Transform + pos: 4.5,11.5 + parent: 3885 + - uid: 3891 + components: + - type: Transform + pos: 10.5,0.5 + parent: 3885 +- proto: AirlockHatch + entities: + - uid: 3892 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 3885 + - uid: 3893 + components: + - type: Transform + pos: -15.5,1.5 + parent: 3885 + - uid: 3894 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 3885 + - uid: 3895 + components: + - type: Transform + pos: 13.5,1.5 + parent: 3885 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 3896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 3885 + - uid: 3897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 3885 + - uid: 3898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 3885 + - uid: 3899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 3885 + - uid: 3900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 3885 + - uid: 3901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 3885 + - uid: 3902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 3885 + - uid: 3903 + components: + - type: Transform + pos: 2.5,4.5 + parent: 3885 + - uid: 3904 + components: + - type: Transform + pos: -0.5,4.5 + parent: 3885 + - uid: 3905 + components: + - type: Transform + pos: -3.5,10.5 + parent: 3885 + - uid: 3906 + components: + - type: Transform + pos: 0.5,10.5 + parent: 3885 + - uid: 3907 + components: + - type: Transform + pos: -7.5,10.5 + parent: 3885 + - uid: 3908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 3885 + - uid: 3909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 3885 + - uid: 3910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 3885 + - uid: 3911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 3885 + - uid: 3912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 3885 + - uid: 3913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 3885 + - uid: 3914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 3885 + - uid: 3915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 3885 + - uid: 3916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 3885 + - uid: 3917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 3885 + - uid: 3918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 3885 + - uid: 3919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 3885 + - uid: 3920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 3885 +- proto: APCBasic + entities: + - uid: 25 + components: + - type: Transform + pos: -4.5,14.5 + parent: 3885 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 3922 + components: + - type: Transform + pos: 10.5,0.5 + parent: 3885 + - uid: 3923 + components: + - type: Transform + pos: -12.5,0.5 + parent: 3885 +- proto: BarSign + entities: + - uid: 4130 + components: + - type: Transform + pos: 0.5,5.5 + parent: 3885 + - type: Fixtures + fixtures: {} +- proto: BeachBall + entities: + - uid: 4131 + components: + - type: Transform + pos: 1.388092,-2.2582023 + parent: 3885 +- proto: BoozeDispenser + entities: + - uid: 4132 + components: + - type: Transform + pos: -2.5,10.5 + parent: 3885 +- proto: CableApcExtension + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,3.5 + parent: 3885 + - uid: 3 + components: + - type: Transform + pos: -3.5,3.5 + parent: 3885 + - uid: 4 + components: + - type: Transform + pos: -4.5,14.5 + parent: 3885 + - uid: 5 + components: + - type: Transform + pos: -2.5,3.5 + parent: 3885 + - uid: 7 + components: + - type: Transform + pos: -0.5,3.5 + parent: 3885 + - uid: 8 + components: + - type: Transform + pos: 0.5,3.5 + parent: 3885 + - uid: 9 + components: + - type: Transform + pos: 1.5,3.5 + parent: 3885 + - uid: 10 + components: + - type: Transform + pos: 2.5,3.5 + parent: 3885 + - uid: 11 + components: + - type: Transform + pos: 3.5,3.5 + parent: 3885 + - uid: 12 + components: + - type: Transform + pos: 4.5,3.5 + parent: 3885 + - uid: 13 + components: + - type: Transform + pos: 4.5,4.5 + parent: 3885 + - uid: 14 + components: + - type: Transform + pos: 4.5,5.5 + parent: 3885 + - uid: 15 + components: + - type: Transform + pos: 4.5,6.5 + parent: 3885 + - uid: 16 + components: + - type: Transform + pos: 4.5,7.5 + parent: 3885 + - uid: 17 + components: + - type: Transform + pos: 4.5,8.5 + parent: 3885 + - uid: 18 + components: + - type: Transform + pos: 4.5,9.5 + parent: 3885 + - uid: 19 + components: + - type: Transform + pos: 4.5,10.5 + parent: 3885 + - uid: 20 + components: + - type: Transform + pos: 4.5,11.5 + parent: 3885 + - uid: 21 + components: + - type: Transform + pos: 4.5,12.5 + parent: 3885 + - uid: 22 + components: + - type: Transform + pos: 3.5,12.5 + parent: 3885 + - uid: 23 + components: + - type: Transform + pos: 2.5,12.5 + parent: 3885 + - uid: 24 + components: + - type: Transform + pos: 1.5,12.5 + parent: 3885 + - uid: 4135 + components: + - type: Transform + pos: -4.5,13.5 + parent: 3885 + - uid: 4136 + components: + - type: Transform + pos: -4.5,12.5 + parent: 3885 + - uid: 4137 + components: + - type: Transform + pos: -4.5,11.5 + parent: 3885 + - uid: 4138 + components: + - type: Transform + pos: -4.5,10.5 + parent: 3885 + - uid: 4139 + components: + - type: Transform + pos: -4.5,9.5 + parent: 3885 + - uid: 4140 + components: + - type: Transform + pos: -4.5,8.5 + parent: 3885 + - uid: 4141 + components: + - type: Transform + pos: -4.5,7.5 + parent: 3885 + - uid: 4142 + components: + - type: Transform + pos: -4.5,6.5 + parent: 3885 + - uid: 4143 + components: + - type: Transform + pos: -4.5,5.5 + parent: 3885 + - uid: 4144 + components: + - type: Transform + pos: -4.5,4.5 + parent: 3885 + - uid: 4145 + components: + - type: Transform + pos: -4.5,3.5 + parent: 3885 + - uid: 4146 + components: + - type: Transform + pos: -4.5,2.5 + parent: 3885 + - uid: 4147 + components: + - type: Transform + pos: -4.5,1.5 + parent: 3885 + - uid: 4148 + components: + - type: Transform + pos: -4.5,0.5 + parent: 3885 + - uid: 4149 + components: + - type: Transform + pos: -5.5,0.5 + parent: 3885 + - uid: 4150 + components: + - type: Transform + pos: -6.5,0.5 + parent: 3885 + - uid: 4151 + components: + - type: Transform + pos: -7.5,0.5 + parent: 3885 + - uid: 4152 + components: + - type: Transform + pos: -8.5,0.5 + parent: 3885 + - uid: 4153 + components: + - type: Transform + pos: -9.5,0.5 + parent: 3885 + - uid: 4154 + components: + - type: Transform + pos: -10.5,0.5 + parent: 3885 + - uid: 4155 + components: + - type: Transform + pos: -11.5,0.5 + parent: 3885 + - uid: 4156 + components: + - type: Transform + pos: -12.5,0.5 + parent: 3885 + - uid: 4157 + components: + - type: Transform + pos: -13.5,0.5 + parent: 3885 + - uid: 4158 + components: + - type: Transform + pos: -14.5,0.5 + parent: 3885 + - uid: 4159 + components: + - type: Transform + pos: -13.5,1.5 + parent: 3885 + - uid: 4160 + components: + - type: Transform + pos: -13.5,2.5 + parent: 3885 + - uid: 4161 + components: + - type: Transform + pos: -13.5,3.5 + parent: 3885 + - uid: 4162 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 3885 + - uid: 4163 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 3885 + - uid: 4164 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 3885 + - uid: 4165 + components: + - type: Transform + pos: -3.5,0.5 + parent: 3885 + - uid: 4166 + components: + - type: Transform + pos: -2.5,0.5 + parent: 3885 + - uid: 4167 + components: + - type: Transform + pos: -1.5,0.5 + parent: 3885 + - uid: 4168 + components: + - type: Transform + pos: -0.5,0.5 + parent: 3885 + - uid: 4169 + components: + - type: Transform + pos: 0.5,0.5 + parent: 3885 + - uid: 4170 + components: + - type: Transform + pos: 1.5,0.5 + parent: 3885 + - uid: 4171 + components: + - type: Transform + pos: 2.5,0.5 + parent: 3885 + - uid: 4172 + components: + - type: Transform + pos: 3.5,0.5 + parent: 3885 + - uid: 4173 + components: + - type: Transform + pos: 4.5,0.5 + parent: 3885 + - uid: 4174 + components: + - type: Transform + pos: 5.5,0.5 + parent: 3885 + - uid: 4175 + components: + - type: Transform + pos: 6.5,0.5 + parent: 3885 + - uid: 4176 + components: + - type: Transform + pos: 7.5,0.5 + parent: 3885 + - uid: 4177 + components: + - type: Transform + pos: 8.5,0.5 + parent: 3885 + - uid: 4178 + components: + - type: Transform + pos: 9.5,0.5 + parent: 3885 + - uid: 4179 + components: + - type: Transform + pos: 10.5,0.5 + parent: 3885 + - uid: 4180 + components: + - type: Transform + pos: 11.5,0.5 + parent: 3885 + - uid: 4181 + components: + - type: Transform + pos: 12.5,0.5 + parent: 3885 + - uid: 4182 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 3885 + - uid: 4183 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 3885 + - uid: 4184 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 3885 + - uid: 4185 + components: + - type: Transform + pos: 11.5,1.5 + parent: 3885 + - uid: 4186 + components: + - type: Transform + pos: 11.5,2.5 + parent: 3885 + - uid: 4187 + components: + - type: Transform + pos: 11.5,3.5 + parent: 3885 + - uid: 4188 + components: + - type: Transform + pos: -3.5,9.5 + parent: 3885 + - uid: 4189 + components: + - type: Transform + pos: -2.5,9.5 + parent: 3885 + - uid: 4190 + components: + - type: Transform + pos: -1.5,9.5 + parent: 3885 + - uid: 4191 + components: + - type: Transform + pos: -0.5,9.5 + parent: 3885 + - uid: 4192 + components: + - type: Transform + pos: 0.5,9.5 + parent: 3885 + - uid: 4193 + components: + - type: Transform + pos: 1.5,9.5 + parent: 3885 + - uid: 4194 + components: + - type: Transform + pos: 1.5,8.5 + parent: 3885 + - uid: 4195 + components: + - type: Transform + pos: 1.5,7.5 + parent: 3885 + - uid: 4196 + components: + - type: Transform + pos: 1.5,6.5 + parent: 3885 +- proto: CableHV + entities: + - uid: 28 + components: + - type: Transform + pos: -3.5,14.5 + parent: 3885 + - uid: 29 + components: + - type: Transform + pos: -2.5,14.5 + parent: 3885 +- proto: CableMV + entities: + - uid: 30 + components: + - type: Transform + pos: -3.5,14.5 + parent: 3885 + - uid: 31 + components: + - type: Transform + pos: -4.5,14.5 + parent: 3885 +- proto: CandleRedInfinite + entities: + - uid: 4197 + components: + - type: Transform + pos: 5.803833,-4.6943436 + parent: 3885 +- proto: Chair + entities: + - uid: 4198 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 3885 + - uid: 4199 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 3885 + - uid: 4200 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 3885 + - uid: 4201 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 3885 + - uid: 4202 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 3885 + - uid: 4203 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 3885 + - uid: 4204 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 3885 + - uid: 4205 + components: + - type: Transform + pos: -11.5,6.5 + parent: 3885 + - uid: 4206 + components: + - type: Transform + pos: -9.5,6.5 + parent: 3885 + - uid: 4207 + components: + - type: Transform + pos: -11.5,8.5 + parent: 3885 + - uid: 4208 + components: + - type: Transform + pos: -9.5,8.5 + parent: 3885 +- proto: ClothingBackpackDuffel + entities: + - uid: 4209 + components: + - type: Transform + pos: -3.597931,-3.6383188 + parent: 3885 + - type: Storage + storedItems: + 4220: + position: 0,0 + _rotation: South + 4221: + position: 6,0 + _rotation: South + 4214: + position: 2,0 + _rotation: South + 4215: + position: 4,0 + _rotation: South + 4217: + position: 0,2 + _rotation: South + 4218: + position: 2,2 + _rotation: South + 4219: + position: 4,2 + _rotation: South + 4216: + position: 6,2 + _rotation: South + 4211: + position: 0,4 + _rotation: East + 4212: + position: 2,4 + _rotation: East + 4213: + position: 6,4 + _rotation: East + 4210: + position: 4,4 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 4220 + - 4217 + - 4219 + - 4216 + - 4218 + - 4214 + - 4215 + - 4221 + - 4211 + - 4212 + - 4210 + - 4213 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 4210 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 4211 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4212 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4213 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4222 + components: + - type: Transform + pos: -2.4065247,8.489776 + parent: 3885 + - uid: 4223 + components: + - type: Transform + pos: -2.6879883,8.714811 + parent: 3885 + - uid: 4224 + components: + - type: Transform + pos: -4.6257935,8.719138 + parent: 3885 + - uid: 4225 + components: + - type: Transform + pos: -4.2793884,8.48112 + parent: 3885 +- proto: ClothingMaskBreath + entities: + - uid: 97 + components: + - type: Transform + pos: -6.3355584,12.513312 + parent: 3885 + - uid: 98 + components: + - type: Transform + pos: -6.2936335,12.911694 + parent: 3885 +- proto: ClothingMaskGas + entities: + - uid: 4226 + components: + - type: Transform + pos: 12.34375,-2.3560648 + parent: 3885 + - uid: 4227 + components: + - type: Transform + pos: -14.69696,-2.3560648 + parent: 3885 +- proto: ClothingNeckChokerBlack + entities: + - uid: 92 + components: + - type: Transform + pos: -3.032354,8.392281 + parent: 3885 +- proto: ClothingShoesWizard + entities: + - uid: 4228 + components: + - type: MetaData + desc: Тапочки... + name: пляжные тапочки + - type: Transform + pos: 12.512299,3.5884547 + parent: 3885 + - uid: 4229 + components: + - type: MetaData + desc: Тапочки... + name: пляжные тапочки + - type: Transform + pos: 12.512299,3.457004 + parent: 3885 + - uid: 4230 + components: + - type: MetaData + desc: Тапочки... + name: пляжные тапочки + - type: Transform + pos: -13.474518,3.5884547 + parent: 3885 + - uid: 4231 + components: + - type: MetaData + desc: Тапочки... + name: пляжные тапочки + - type: Transform + pos: -13.474518,3.4131873 + parent: 3885 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 4214 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4215 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitHawaiBlue + entities: + - uid: 4216 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4232 + components: + - type: Transform + pos: 6.4910583,-3.5172958 + parent: 3885 +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 4217 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4233 + components: + - type: Transform + pos: -8.484161,-3.6024952 + parent: 3885 +- proto: ClothingUniformJumpsuitHawaiYellow + entities: + - uid: 4218 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4219 + components: + - type: Transform + parent: 4209 + - type: Physics + canCollide: False +- proto: CrateGenericSteel + entities: + - uid: 4234 + components: + - type: Transform + pos: 3.5,10.5 + parent: 3885 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4237 + - 4235 + - 4238 + - 4236 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DresserFilled + entities: + - uid: 4239 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 3885 + - uid: 4240 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 3885 +- proto: DrinkShaker + entities: + - uid: 4241 + components: + - type: Transform + pos: 0.7817383,10.584364 + parent: 3885 +- proto: DrinkShotGlass + entities: + - uid: 4242 + components: + - type: Transform + pos: -1.2850647,8.693172 + parent: 3885 + - uid: 4243 + components: + - type: Transform + pos: -1.4496155,8.4465 + parent: 3885 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 4244 + components: + - type: Transform + pos: -1.813324,8.758087 + parent: 3885 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 4235 + components: + - type: Transform + parent: 4234 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyOxygenTankFilled + entities: + - uid: 94 + components: + - type: Transform + pos: -6.606392,12.742479 + parent: 3885 + - uid: 95 + components: + - type: Transform + pos: -6.6793084,12.929979 + parent: 3885 + - type: GasTank + toggleActionEntity: 96 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 96 + - uid: 4236 + components: + - type: Transform + parent: 4234 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FloorAzureWaterEntity + entities: + - uid: 32 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 3885 + - uid: 33 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 3885 + - uid: 34 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 3885 + - uid: 35 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 3885 + - uid: 36 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 3885 + - uid: 37 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 3885 + - uid: 38 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 3885 + - uid: 39 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 3885 + - uid: 40 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 3885 + - uid: 41 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 3885 + - uid: 42 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 3885 + - uid: 43 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 3885 + - uid: 44 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 3885 + - uid: 45 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 3885 + - uid: 46 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 3885 + - uid: 47 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 3885 + - uid: 48 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 3885 + - uid: 49 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 3885 + - uid: 50 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 3885 + - uid: 51 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 3885 + - uid: 52 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 3885 + - uid: 53 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 3885 + - uid: 54 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 3885 + - uid: 55 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 3885 + - uid: 56 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 3885 + - uid: 57 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 3885 + - uid: 58 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 3885 + - uid: 59 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 3885 + - uid: 60 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 3885 + - uid: 61 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3885 + - uid: 62 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3885 + - uid: 63 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 3885 + - uid: 64 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3885 + - uid: 65 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3885 + - uid: 66 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3885 + - uid: 67 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 3885 + - uid: 68 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 3885 + - uid: 69 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 3885 + - uid: 70 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 3885 + - uid: 71 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 3885 + - uid: 72 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 3885 + - uid: 73 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 3885 + - uid: 74 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 3885 + - uid: 75 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 3885 + - uid: 76 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 3885 + - uid: 77 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 3885 + - uid: 78 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 3885 + - uid: 79 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 3885 + - uid: 80 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 3885 + - uid: 81 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 3885 + - uid: 82 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 3885 + - uid: 83 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 3885 + - uid: 84 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 3885 + - uid: 85 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 3885 + - uid: 86 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 3885 + - uid: 87 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 3885 + - uid: 88 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3885 + - uid: 89 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 3885 + - uid: 90 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 3885 + - uid: 91 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 3885 + - uid: 4245 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 3885 + - uid: 4246 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 3885 + - uid: 4247 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 3885 + - uid: 4248 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 3885 + - uid: 4249 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 3885 + - uid: 4250 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 3885 + - uid: 4251 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 3885 + - uid: 4252 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 3885 + - uid: 4253 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 3885 + - uid: 4254 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 3885 + - uid: 4255 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 3885 + - uid: 4256 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 3885 + - uid: 4257 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 3885 + - uid: 4258 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 3885 + - uid: 4259 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 3885 + - uid: 4260 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 3885 + - uid: 4261 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 3885 + - uid: 4262 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 3885 + - uid: 4263 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 3885 + - uid: 4264 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 3885 + - uid: 4265 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 3885 + - uid: 4266 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 3885 + - uid: 4267 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 3885 + - uid: 4268 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 3885 + - uid: 4269 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 3885 + - uid: 4270 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 3885 + - uid: 4271 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 3885 + - uid: 4272 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 3885 + - uid: 4273 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 3885 + - uid: 4274 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 3885 + - uid: 4275 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 3885 + - uid: 4276 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 3885 + - uid: 4277 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 3885 + - uid: 4278 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 3885 + - uid: 4279 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 3885 + - uid: 4280 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 3885 + - uid: 4281 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 3885 + - uid: 4282 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 3885 + - uid: 4283 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 3885 + - uid: 4284 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 3885 + - uid: 4285 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 3885 + - uid: 4286 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 3885 + - uid: 4287 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 3885 + - uid: 4288 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 3885 + - uid: 4289 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 3885 + - uid: 4290 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 3885 + - uid: 4291 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3885 + - uid: 4292 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3885 + - uid: 4293 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 3885 + - uid: 4294 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 3885 + - uid: 4295 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3885 + - uid: 4296 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3885 + - uid: 4297 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3885 + - uid: 4298 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3885 + - uid: 4299 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 3885 + - uid: 4300 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 3885 + - uid: 4301 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 3885 + - uid: 4302 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 3885 + - uid: 4303 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 3885 + - uid: 4304 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 3885 + - uid: 4305 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 3885 + - uid: 4306 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 3885 + - uid: 4307 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 3885 + - uid: 4308 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 3885 + - uid: 4309 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 3885 + - uid: 4310 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 3885 + - uid: 4311 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 3885 + - uid: 4312 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 3885 + - uid: 4313 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 3885 + - uid: 4314 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 3885 + - uid: 4315 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 3885 + - uid: 4316 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 3885 + - uid: 4317 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 3885 + - uid: 4318 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 3885 + - uid: 4319 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 3885 + - uid: 4320 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 3885 + - uid: 4321 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 3885 + - uid: 4322 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 3885 + - uid: 4323 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 3885 + - uid: 4324 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 3885 + - uid: 4325 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 3885 + - uid: 4326 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 3885 + - uid: 4327 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 3885 + - uid: 4328 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 3885 + - uid: 4329 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 3885 + - uid: 4330 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 3885 + - uid: 4331 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 3885 + - uid: 4332 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 3885 + - uid: 4333 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 3885 + - uid: 4334 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 3885 + - uid: 4335 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 3885 + - uid: 4336 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 3885 + - uid: 4337 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 3885 + - uid: 4338 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 3885 + - uid: 4339 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 3885 + - uid: 4340 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 3885 + - uid: 4341 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 3885 + - uid: 4342 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 3885 + - uid: 4343 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 3885 + - uid: 4344 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 3885 + - uid: 4345 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 3885 + - uid: 4346 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3885 + - uid: 4347 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3885 + - uid: 4348 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3885 + - uid: 4349 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 3885 + - uid: 4350 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3885 + - uid: 4351 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3885 + - uid: 4352 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 3885 + - uid: 4353 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 3885 + - uid: 4354 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 3885 + - uid: 4355 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 3885 + - uid: 4356 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 3885 + - uid: 4357 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 3885 + - uid: 4358 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 3885 + - uid: 4359 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 3885 + - uid: 4360 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 3885 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 3885 + - uid: 4362 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 3885 + - uid: 4363 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3885 + - uid: 4364 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3885 + - uid: 4365 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3885 + - uid: 4366 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 3885 + - uid: 4367 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 3885 + - uid: 4368 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 3885 + - uid: 4369 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 3885 + - uid: 4370 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 3885 + - uid: 4371 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 3885 + - uid: 4372 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 3885 + - uid: 4373 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 3885 + - uid: 4374 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 3885 + - uid: 4375 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 3885 + - uid: 4376 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 3885 +- proto: FoodSnackChocolate + entities: + - uid: 4237 + components: + - type: Transform + parent: 4234 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4238 + components: + - type: Transform + parent: 4234 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GeneratorWallmountBasic + entities: + - uid: 27 + components: + - type: Transform + pos: -2.5,14.5 + parent: 3885 +- proto: Grille + entities: + - uid: 4377 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 3885 + - uid: 4378 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 3885 + - uid: 4379 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 3885 + - uid: 4380 + components: + - type: Transform + pos: -12.5,1.5 + parent: 3885 + - uid: 4381 + components: + - type: Transform + pos: -12.5,2.5 + parent: 3885 + - uid: 4382 + components: + - type: Transform + pos: -12.5,3.5 + parent: 3885 + - uid: 4383 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 3885 + - uid: 4384 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 3885 + - uid: 4385 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 3885 + - uid: 4386 + components: + - type: Transform + pos: 10.5,1.5 + parent: 3885 + - uid: 4387 + components: + - type: Transform + pos: 10.5,2.5 + parent: 3885 + - uid: 4388 + components: + - type: Transform + pos: 10.5,3.5 + parent: 3885 +- proto: Jukebox + entities: + - uid: 4389 + components: + - type: Transform + pos: -3.5,4.5 + parent: 3885 +- proto: KitchenMicrowave + entities: + - uid: 4390 + components: + - type: Transform + pos: 1.5,10.5 + parent: 3885 +- proto: KitchenReagentGrinder + entities: + - uid: 4391 + components: + - type: Transform + pos: -0.5,10.5 + parent: 3885 +- proto: Lamp + entities: + - uid: 4392 + components: + - type: Transform + pos: -3.5454712,8.579522 + parent: 3885 +- proto: Lantern + entities: + - uid: 4393 + components: + - type: Transform + pos: 3.4761658,13.444954 + parent: 3885 +- proto: LockerFreezerBase + entities: + - uid: 4394 + components: + - type: Transform + pos: 1.5,6.5 + parent: 3885 + - uid: 4395 + components: + - type: Transform + pos: 1.5,7.5 + parent: 3885 +- proto: MarkerBeachSignal + entities: + - uid: 1 + components: + - type: Transform + pos: -0.5,0.5 + parent: 3885 +- proto: MedkitBruteFilled + entities: + - uid: 4396 + components: + - type: Transform + pos: 3.545929,-1.5432929 + parent: 3885 +- proto: OxygenCanister + entities: + - uid: 4397 + components: + - type: Transform + pos: -2.5,13.5 + parent: 3885 +- proto: OxygenTankFilled + entities: + - uid: 4398 + components: + - type: Transform + pos: -14.502106,-2.4794014 + parent: 3885 + - uid: 4399 + components: + - type: Transform + pos: 12.546509,-2.4664183 + parent: 3885 + - uid: 4400 + components: + - type: Transform + pos: -2.4209595,12.362537 + parent: 3885 +- proto: Pickaxe + entities: + - uid: 4401 + components: + - type: Transform + pos: -14.374725,-2.5313323 + parent: 3885 + - uid: 4402 + components: + - type: Transform + pos: 12.694702,-2.5183496 + parent: 3885 +- proto: Rack + entities: + - uid: 4403 + components: + - type: Transform + pos: -13.5,3.5 + parent: 3885 + - uid: 4404 + components: + - type: Transform + pos: 12.5,3.5 + parent: 3885 +- proto: RagItem + entities: + - uid: 4405 + components: + - type: Transform + pos: 0.2166748,10.701209 + parent: 3885 +- proto: RandomVendingDrinks + entities: + - uid: 4406 + components: + - type: Transform + pos: 3.5,8.5 + parent: 3885 +- proto: RandomVendingSnacks + entities: + - uid: 4407 + components: + - type: Transform + pos: 3.5,7.5 + parent: 3885 +- proto: ReinforcedWindow + entities: + - uid: 4408 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 3885 + - uid: 4409 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 3885 + - uid: 4410 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 3885 + - uid: 4411 + components: + - type: Transform + pos: -12.5,1.5 + parent: 3885 + - uid: 4412 + components: + - type: Transform + pos: -12.5,2.5 + parent: 3885 + - uid: 4413 + components: + - type: Transform + pos: -12.5,3.5 + parent: 3885 + - uid: 4414 + components: + - type: Transform + pos: 10.5,3.5 + parent: 3885 + - uid: 4415 + components: + - type: Transform + pos: 10.5,2.5 + parent: 3885 + - uid: 4416 + components: + - type: Transform + pos: 10.5,1.5 + parent: 3885 + - uid: 4417 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 3885 + - uid: 4418 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 3885 + - uid: 4419 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 3885 +- proto: Screwdriver + entities: + - uid: 99 + components: + - type: Transform + pos: -6.4811335,13.370028 + parent: 3885 +- proto: SinkWide + entities: + - uid: 4420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 3885 + - uid: 4421 + components: + - type: Transform + pos: 1.5,13.5 + parent: 3885 + - uid: 4422 + components: + - type: Transform + pos: 2.5,13.5 + parent: 3885 +- proto: SmallLight + entities: + - uid: 4423 + components: + - type: Transform + pos: -0.5,13.5 + parent: 3885 + - uid: 4424 + components: + - type: Transform + pos: 3.5,13.5 + parent: 3885 + - uid: 4425 + components: + - type: Transform + pos: -5.5,13.5 + parent: 3885 + - uid: 4426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 3885 + - uid: 4427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 3885 + - uid: 4428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 3885 + - uid: 4429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 3885 +- proto: SodaDispenser + entities: + - uid: 4430 + components: + - type: Transform + pos: -3.5,10.5 + parent: 3885 +- proto: SpawnInhabitantBeachGuy + entities: + - uid: 100 + components: + - type: Transform + pos: -2.5,7.5 + parent: 3885 + - uid: 101 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 3885 + - uid: 102 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 3885 + - uid: 103 + components: + - type: Transform + pos: 5.5,5.5 + parent: 3885 +- proto: SpawnMobCrab + entities: + - uid: 4431 + components: + - type: Transform + pos: 7.5,4.5 + parent: 3885 + - uid: 4432 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 3885 + - uid: 4433 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 3885 +- proto: SprayBottle + entities: + - uid: 4434 + components: + - type: Transform + pos: -8.112793,-4.519575 + parent: 3885 +- proto: SprayBottleWater + entities: + - uid: 4435 + components: + - type: Transform + pos: -1.4647217,-2.7327688 + parent: 3885 + - uid: 4436 + components: + - type: Transform + pos: -6.332428,3.4405403 + parent: 3885 + - uid: 4437 + components: + - type: Transform + pos: -9.208099,10.325515 + parent: 3885 + - uid: 4438 + components: + - type: Transform + pos: 7.1437683,7.579653 + parent: 3885 +- proto: StairStageWhite + entities: + - uid: 4439 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3885 +- proto: Stool + entities: + - uid: 4440 + components: + - type: Transform + pos: 4.436981,-1.4232469 + parent: 3885 + - uid: 4441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5078735,7.7420673 + parent: 3885 + - uid: 4442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5033264,7.7074466 + parent: 3885 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4771118,7.7204294 + parent: 3885 + - uid: 4444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4942017,7.7204294 + parent: 3885 +- proto: SubstationWallBasic + entities: + - uid: 26 + components: + - type: Transform + pos: -3.5,14.5 + parent: 3885 +- proto: Table + entities: + - uid: 6 + components: + - type: Transform + pos: -6.5,13.5 + parent: 3885 + - uid: 4446 + components: + - type: Transform + pos: -6.5,12.5 + parent: 3885 +- proto: TableCounterWood + entities: + - uid: 4448 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 3885 +- proto: TableReinforced + entities: + - uid: 4449 + components: + - type: Transform + pos: 1.5,10.5 + parent: 3885 + - uid: 4450 + components: + - type: Transform + pos: 0.5,10.5 + parent: 3885 + - uid: 4451 + components: + - type: Transform + pos: -0.5,10.5 + parent: 3885 + - uid: 4452 + components: + - type: Transform + pos: -2.5,10.5 + parent: 3885 + - uid: 4453 + components: + - type: Transform + pos: -3.5,10.5 + parent: 3885 +- proto: TableWood + entities: + - uid: 4454 + components: + - type: Transform + pos: -4.5,8.5 + parent: 3885 + - uid: 4455 + components: + - type: Transform + pos: -3.5,8.5 + parent: 3885 + - uid: 4456 + components: + - type: Transform + pos: -2.5,8.5 + parent: 3885 + - uid: 4457 + components: + - type: Transform + pos: -1.5,8.5 + parent: 3885 + - uid: 4458 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 3885 + - uid: 4459 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 3885 +- proto: ToiletDirtyWater + entities: + - uid: 4460 + components: + - type: Transform + pos: -0.5,13.5 + parent: 3885 +- proto: ToolboxEmergencyFilled + entities: + - uid: 93 + components: + - type: Transform + pos: -6.543892,13.700812 + parent: 3885 +- proto: UniformShortsRed + entities: + - uid: 4220 + components: + - type: MetaData + desc: Это шорты. + name: шорты + - type: Transform + parent: 4209 + - type: Physics + canCollide: False + - uid: 4221 + components: + - type: MetaData + desc: Это шорты. + name: шорты + - type: Transform + parent: 4209 + - type: Physics + canCollide: False +- proto: VendingMachineBooze + entities: + - uid: 4461 + components: + - type: Transform + pos: -1.5,10.5 + parent: 3885 +- proto: VendingMachineCigs + entities: + - uid: 4462 + components: + - type: Transform + pos: 3.5,9.5 + parent: 3885 +- proto: WallReinforced + entities: + - uid: 4463 + components: + - type: Transform + pos: -15.5,0.5 + parent: 3885 + - uid: 4464 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 3885 + - uid: 4465 + components: + - type: Transform + pos: -15.5,2.5 + parent: 3885 + - uid: 4466 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 3885 + - uid: 4467 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 3885 + - uid: 4468 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 3885 + - uid: 4469 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 3885 + - uid: 4470 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 3885 + - uid: 4471 + components: + - type: Transform + pos: -15.5,3.5 + parent: 3885 + - uid: 4472 + components: + - type: Transform + pos: -15.5,4.5 + parent: 3885 + - uid: 4473 + components: + - type: Transform + pos: -14.5,4.5 + parent: 3885 + - uid: 4474 + components: + - type: Transform + pos: -13.5,4.5 + parent: 3885 + - uid: 4475 + components: + - type: Transform + pos: -12.5,4.5 + parent: 3885 + - uid: 4476 + components: + - type: Transform + pos: -14.5,5.5 + parent: 3885 + - uid: 4477 + components: + - type: Transform + pos: -14.5,6.5 + parent: 3885 + - uid: 4478 + components: + - type: Transform + pos: -14.5,7.5 + parent: 3885 + - uid: 4479 + components: + - type: Transform + pos: -14.5,8.5 + parent: 3885 + - uid: 4480 + components: + - type: Transform + pos: -14.5,9.5 + parent: 3885 + - uid: 4481 + components: + - type: Transform + pos: -13.5,9.5 + parent: 3885 + - uid: 4482 + components: + - type: Transform + pos: -13.5,10.5 + parent: 3885 + - uid: 4483 + components: + - type: Transform + pos: -13.5,11.5 + parent: 3885 + - uid: 4484 + components: + - type: Transform + pos: -12.5,11.5 + parent: 3885 + - uid: 4485 + components: + - type: Transform + pos: -12.5,12.5 + parent: 3885 + - uid: 4486 + components: + - type: Transform + pos: -11.5,12.5 + parent: 3885 + - uid: 4487 + components: + - type: Transform + pos: -11.5,13.5 + parent: 3885 + - uid: 4488 + components: + - type: Transform + pos: -10.5,13.5 + parent: 3885 + - uid: 4489 + components: + - type: Transform + pos: -9.5,13.5 + parent: 3885 + - uid: 4490 + components: + - type: Transform + pos: -9.5,14.5 + parent: 3885 + - uid: 4491 + components: + - type: Transform + pos: -6.5,11.5 + parent: 3885 + - uid: 4492 + components: + - type: Transform + pos: -7.5,11.5 + parent: 3885 + - uid: 4493 + components: + - type: Transform + pos: -7.5,12.5 + parent: 3885 + - uid: 4494 + components: + - type: Transform + pos: -7.5,13.5 + parent: 3885 + - uid: 4495 + components: + - type: Transform + pos: -8.5,14.5 + parent: 3885 + - uid: 4496 + components: + - type: Transform + pos: -7.5,14.5 + parent: 3885 + - uid: 4497 + components: + - type: Transform + pos: -6.5,14.5 + parent: 3885 + - uid: 4498 + components: + - type: Transform + pos: -5.5,14.5 + parent: 3885 + - uid: 4499 + components: + - type: Transform + pos: -4.5,14.5 + parent: 3885 + - uid: 4500 + components: + - type: Transform + pos: -3.5,14.5 + parent: 3885 + - uid: 4501 + components: + - type: Transform + pos: -2.5,14.5 + parent: 3885 + - uid: 4502 + components: + - type: Transform + pos: -1.5,14.5 + parent: 3885 + - uid: 4503 + components: + - type: Transform + pos: -0.5,14.5 + parent: 3885 + - uid: 4504 + components: + - type: Transform + pos: 0.5,14.5 + parent: 3885 + - uid: 4505 + components: + - type: Transform + pos: 1.5,14.5 + parent: 3885 + - uid: 4506 + components: + - type: Transform + pos: 2.5,14.5 + parent: 3885 + - uid: 4507 + components: + - type: Transform + pos: 3.5,14.5 + parent: 3885 + - uid: 4508 + components: + - type: Transform + pos: 4.5,14.5 + parent: 3885 + - uid: 4509 + components: + - type: Transform + pos: 5.5,14.5 + parent: 3885 + - uid: 4510 + components: + - type: Transform + pos: 5.5,13.5 + parent: 3885 + - uid: 4511 + components: + - type: Transform + pos: 5.5,12.5 + parent: 3885 + - uid: 4512 + components: + - type: Transform + pos: 5.5,11.5 + parent: 3885 + - uid: 4513 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 3885 + - uid: 4514 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 3885 + - uid: 4515 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 3885 + - uid: 4516 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 3885 + - uid: 4517 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 3885 + - uid: 4518 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 3885 + - uid: 4519 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 3885 + - uid: 4520 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 3885 + - uid: 4521 + components: + - type: Transform + pos: 13.5,0.5 + parent: 3885 + - uid: 4522 + components: + - type: Transform + pos: 13.5,2.5 + parent: 3885 + - uid: 4523 + components: + - type: Transform + pos: 13.5,3.5 + parent: 3885 + - uid: 4524 + components: + - type: Transform + pos: 13.5,4.5 + parent: 3885 + - uid: 4525 + components: + - type: Transform + pos: 12.5,4.5 + parent: 3885 + - uid: 4526 + components: + - type: Transform + pos: 11.5,4.5 + parent: 3885 + - uid: 4527 + components: + - type: Transform + pos: 10.5,4.5 + parent: 3885 + - uid: 4528 + components: + - type: Transform + pos: 12.5,5.5 + parent: 3885 + - uid: 4529 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 3885 + - uid: 4530 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 3885 + - uid: 4531 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 3885 + - uid: 4532 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 3885 + - uid: 4533 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 3885 + - uid: 4534 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 3885 + - uid: 4535 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 3885 + - uid: 4536 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 3885 + - uid: 4537 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 3885 + - uid: 4538 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 3885 + - uid: 4539 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 3885 + - uid: 4540 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 3885 + - uid: 4541 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 3885 + - uid: 4542 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 3885 + - uid: 4543 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 3885 + - uid: 4544 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 3885 + - uid: 4545 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 3885 + - uid: 4546 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 3885 + - uid: 4547 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 3885 + - uid: 4548 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 3885 + - uid: 4549 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 3885 + - uid: 4550 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 3885 + - uid: 4551 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 3885 + - uid: 4552 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 3885 + - uid: 4553 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 3885 + - uid: 4554 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 3885 + - uid: 4555 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 3885 + - uid: 4556 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 3885 + - uid: 4557 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 3885 + - uid: 4558 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3885 + - uid: 4559 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 3885 + - uid: 4560 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 3885 + - uid: 4561 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 3885 + - uid: 4562 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 3885 + - uid: 4563 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 3885 + - uid: 4564 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 3885 + - uid: 4565 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 3885 + - uid: 4566 + components: + - type: Transform + pos: 6.5,14.5 + parent: 3885 + - uid: 4567 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 3885 + - uid: 4568 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 3885 + - uid: 4569 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 3885 + - uid: 4570 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 3885 + - uid: 4571 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 3885 + - uid: 4572 + components: + - type: Transform + pos: 7.5,14.5 + parent: 3885 + - uid: 4573 + components: + - type: Transform + pos: 7.5,13.5 + parent: 3885 + - uid: 4574 + components: + - type: Transform + pos: 8.5,13.5 + parent: 3885 + - uid: 4575 + components: + - type: Transform + pos: 9.5,13.5 + parent: 3885 + - uid: 4576 + components: + - type: Transform + pos: 9.5,12.5 + parent: 3885 + - uid: 4577 + components: + - type: Transform + pos: 10.5,12.5 + parent: 3885 + - uid: 4578 + components: + - type: Transform + pos: 10.5,11.5 + parent: 3885 + - uid: 4579 + components: + - type: Transform + pos: 11.5,11.5 + parent: 3885 + - uid: 4580 + components: + - type: Transform + pos: 11.5,10.5 + parent: 3885 + - uid: 4581 + components: + - type: Transform + pos: 11.5,9.5 + parent: 3885 + - uid: 4582 + components: + - type: Transform + pos: 12.5,9.5 + parent: 3885 + - uid: 4583 + components: + - type: Transform + pos: 12.5,8.5 + parent: 3885 + - uid: 4584 + components: + - type: Transform + pos: 12.5,7.5 + parent: 3885 + - uid: 4585 + components: + - type: Transform + pos: 12.5,6.5 + parent: 3885 +- proto: WallSandstone + entities: + - uid: 4586 + components: + - type: Transform + pos: -5.5,8.5 + parent: 3885 + - uid: 4587 + components: + - type: Transform + pos: -5.5,9.5 + parent: 3885 + - uid: 4588 + components: + - type: Transform + pos: -5.5,10.5 + parent: 3885 + - uid: 4589 + components: + - type: Transform + pos: -5.5,11.5 + parent: 3885 + - uid: 4590 + components: + - type: Transform + pos: -0.5,5.5 + parent: 3885 + - uid: 4591 + components: + - type: Transform + pos: -0.5,7.5 + parent: 3885 + - uid: 4592 + components: + - type: Transform + pos: -0.5,8.5 + parent: 3885 + - uid: 4593 + components: + - type: Transform + pos: 0.5,5.5 + parent: 3885 + - uid: 4594 + components: + - type: Transform + pos: 1.5,5.5 + parent: 3885 + - uid: 4595 + components: + - type: Transform + pos: 2.5,5.5 + parent: 3885 + - uid: 4596 + components: + - type: Transform + pos: 2.5,6.5 + parent: 3885 + - uid: 4597 + components: + - type: Transform + pos: 2.5,7.5 + parent: 3885 + - uid: 4598 + components: + - type: Transform + pos: 2.5,8.5 + parent: 3885 + - uid: 4599 + components: + - type: Transform + pos: 2.5,9.5 + parent: 3885 + - uid: 4600 + components: + - type: Transform + pos: 2.5,10.5 + parent: 3885 + - uid: 4601 + components: + - type: Transform + pos: 2.5,11.5 + parent: 3885 + - uid: 4602 + components: + - type: Transform + pos: 3.5,11.5 + parent: 3885 + - uid: 4603 + components: + - type: Transform + pos: -3.5,11.5 + parent: 3885 + - uid: 4604 + components: + - type: Transform + pos: -2.5,11.5 + parent: 3885 + - uid: 4605 + components: + - type: Transform + pos: -1.5,11.5 + parent: 3885 + - uid: 4606 + components: + - type: Transform + pos: -0.5,11.5 + parent: 3885 + - uid: 4607 + components: + - type: Transform + pos: 0.5,11.5 + parent: 3885 + - uid: 4608 + components: + - type: Transform + pos: 1.5,11.5 + parent: 3885 + - uid: 4609 + components: + - type: Transform + pos: -1.5,12.5 + parent: 3885 + - uid: 4610 + components: + - type: Transform + pos: -1.5,13.5 + parent: 3885 + - uid: 4611 + components: + - type: Transform + pos: 0.5,13.5 + parent: 3885 +- proto: WardrobeSalvage + entities: + - uid: 4612 + components: + - type: Transform + pos: 11.5,3.5 + parent: 3885 + - uid: 4613 + components: + - type: Transform + pos: -14.5,3.5 + parent: 3885 +- proto: WarpPoint + entities: + - uid: 4614 + components: + - type: Transform + pos: -0.5,0.5 + parent: 3885 + - type: WarpPoint + location: Пляж +- proto: WeldingFuelTankFull + entities: + - uid: 4615 + components: + - type: Transform + pos: -4.5,13.5 + parent: 3885 +- proto: Whistle + entities: + - uid: 4616 + components: + - type: Transform + pos: 3.5134583,-2.4131403 + parent: 3885 +- proto: WindowReinforcedDirectional + entities: + - uid: 4617 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 3885 + - uid: 4618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 3885 + - uid: 4619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 3885 + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 3885 + - uid: 4621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 3885 + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 3885 + - uid: 4623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 3885 +... diff --git a/Resources/Maps/_Wega/Lavaland/biosphere.yml b/Resources/Maps/_Wega/Lavaland/biosphere.yml new file mode 100644 index 00000000000..5fde59de926 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/biosphere.yml @@ -0,0 +1,4779 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 13:57:16 + entityCount: 738 +maps: [] +grids: +- 4624 +orphans: +- 4624 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 4624 + components: + - type: MetaData + name: Биосфера + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAAAAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: FQAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAXAAAAAAAAFwAAAAAAABYAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAAAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,0: + ind: 2,0 + tiles: FQAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADAAAAAAAAEQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAABAAAAAAAAAQAAAAAAABYAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: EQAAAAAAAAMAAAAAAAARAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAAVAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAARAAAAAAAAAwAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAAAAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAQAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAEAAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABAAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAGAAAAAAAABgAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABgAAAAAAAAYAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 42: 30,-2 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 34: 25,-4 + 35: 4,-1 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 41: 26,-12 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 36: 17,8 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 43: 14,-4 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 46: 17,-5 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 44: 9,-5 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 37: 8,-8 + 38: 29,1 + 45: 9,-2 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 39: 18,1 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 40: 17,-7 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 19: 10,-11 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 9: 27,-2 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 15: 22,12 + 18: 10,-7 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 20: 12,-12 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 21: 6,1 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 6: 15,-2 + 11: 28,6 + 22: 8,0 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 23: 5,3 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 33: 32,-3 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 10: 28,8 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 16: 6,9 + 17: 5,5 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 12: 17,13 + 13: 20,12 + 14: 16,10 + - node: + color: '#FF5C5CFF' + id: FullTileOverlayGreyscale + decals: + 0: 21,8 + 1: 20,7 + 2: 19,6 + 3: 21,6 + 4: 19,8 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 8: 16,-2 + 28: 22,10 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 7: 14,-1 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 24: 7,4 + 27: 13,5 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 31: 22,-4 + 32: 23,-4 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 26: 8,-11 + 29: 23,9 + 30: 27,8 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 25: 7,-9 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 52428 + 0,-1: + 0: 52424 + 0,1: + 0: 136 + 1,0: + 0: 65535 + 1,1: + 0: 7679 + 1,-1: + 0: 56558 + 1,2: + 0: 36066 + 2,0: + 0: 65535 + 2,1: + 0: 57311 + 2,2: + 0: 29631 + 2,3: + 0: 71 + 2,-1: + 0: 61183 + 3,0: + 0: 16383 + 3,1: + 0: 11179 + 3,2: + 0: 36063 + 3,3: + 0: 264 + 3,-1: + 0: 65535 + 4,0: + 0: 33655 + 4,1: + 0: 35771 + 4,2: + 0: 65339 + 4,3: + 0: 127 + 4,-1: + 0: 30523 + 5,0: + 0: 61695 + 5,1: + 0: 15359 + 5,2: + 0: 65419 + 5,3: + 0: 1775 + 5,-1: + 0: 65295 + 6,0: + 0: 28893 + 6,1: + 0: 1911 + 6,2: + 0: 65535 + 6,3: + 0: 23 + 6,-1: + 0: 7631 + 7,0: + 0: 65262 + 7,1: + 0: 30719 + 7,2: + 0: 307 + 7,-1: + 0: 26623 + 8,0: + 0: 4368 + 7,-2: + 0: 63347 + 8,-1: + 0: 272 + 0,-2: + 0: 32768 + 1,-2: + 0: 510 + 1: 49152 + 1,-3: + 0: 60544 + 2,-3: + 0: 52447 + 2,-2: + 0: 61181 + 2,-4: + 0: 49152 + 3,-4: + 0: 56768 + 3,-3: + 0: 14325 + 3,-2: + 0: 30483 + 4,-4: + 0: 65525 + 4,-2: + 0: 65260 + 4,-3: + 0: 34816 + 5,-4: + 0: 54544 + 5,-3: + 0: 65533 + 5,-2: + 0: 65535 + 6,-4: + 0: 4096 + 6,-3: + 0: 65527 + 6,-2: + 0: 65535 + 7,-3: + 0: 12544 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 20.078888 + Nitrogen: 75.53487 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: ActionToggleInternals + entities: + - uid: 114 + mapInit: true + paused: true + components: + - type: Transform + parent: 113 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 113 + - uid: 116 + mapInit: true + paused: true + components: + - type: Transform + parent: 115 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 115 +- proto: AirlockHatch + entities: + - uid: 4625 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 4624 + - uid: 4626 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 4624 + - uid: 4627 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 4624 + - uid: 4628 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 4624 +- proto: AlwaysPoweredWallLight + entities: + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 4624 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 4624 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 4624 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 4624 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 4624 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4624 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 4624 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4624 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,5.5 + parent: 4624 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 4624 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 4624 + - uid: 21 + components: + - type: Transform + pos: 26.5,12.5 + parent: 4624 + - uid: 22 + components: + - type: Transform + pos: 24.5,13.5 + parent: 4624 + - uid: 23 + components: + - type: Transform + pos: 22.5,14.5 + parent: 4624 + - uid: 24 + components: + - type: Transform + pos: 12.5,14.5 + parent: 4624 + - uid: 25 + components: + - type: Transform + pos: 10.5,13.5 + parent: 4624 + - uid: 26 + components: + - type: Transform + pos: 8.5,12.5 + parent: 4624 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 4624 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 4624 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 4624 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 4624 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 4624 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 4624 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 4624 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 4624 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 4624 + - uid: 36 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4624 + - uid: 37 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4624 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 4624 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 4624 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 4624 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 4624 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 4624 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 4624 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 4624 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 4624 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 4624 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 4624 + - uid: 55 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 4624 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 4624 + - uid: 57 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 4624 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 4624 + - uid: 59 + components: + - type: Transform + pos: 15.5,2.5 + parent: 4624 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 4624 + - uid: 4679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 4624 + - uid: 4680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 4624 +- proto: APCBasic + entities: + - uid: 40 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 4624 + - type: Fixtures + fixtures: {} + - uid: 73 + components: + - type: Transform + pos: 22.5,6.5 + parent: 4624 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 4685 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 4624 + - uid: 4686 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 4624 + - uid: 4687 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 4624 + - uid: 4688 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 4624 +- proto: BananaSeeds + entities: + - uid: 5053 + components: + - type: Transform + pos: 23.527542,-5.3532205 + parent: 4624 +- proto: Bed + entities: + - uid: 5054 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4624 + - uid: 5055 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4624 +- proto: BedsheetPurple + entities: + - uid: 5056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 4624 + - uid: 5057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 4624 +- proto: BenchSofaCorpCorner + entities: + - uid: 45 + components: + - type: Transform + pos: 26.5,6.5 + parent: 4624 +- proto: BenchSofaCorpLeft + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 4624 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 4624 +- proto: BenchSofaCorpRight + entities: + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 4624 + - uid: 107 + components: + - type: Transform + pos: 25.5,6.5 + parent: 4624 +- proto: BlueprintDoubleEmergencyTank + entities: + - uid: 111 + components: + - type: Transform + pos: 14.802139,-14.369897 + parent: 4624 +- proto: BookRandomStory + entities: + - uid: 5058 + components: + - type: Transform + pos: 16.481049,6.631391 + parent: 4624 +- proto: Bookshelf + entities: + - uid: 5059 + components: + - type: Transform + pos: 24.5,6.5 + parent: 4624 +- proto: BriefcaseBrownFilled + entities: + - uid: 5061 + components: + - type: Transform + parent: 5060 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Bucket + entities: + - uid: 5063 + components: + - type: Transform + pos: 22.472855,-5.4938455 + parent: 4624 +- proto: CableApcExtension + entities: + - uid: 41 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 4624 + - uid: 5064 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 4624 + - uid: 5065 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4624 + - uid: 5066 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 4624 + - uid: 5067 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 4624 + - uid: 5068 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 4624 + - uid: 5069 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 4624 + - uid: 5070 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 4624 + - uid: 5071 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 4624 + - uid: 5072 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 4624 + - uid: 5073 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 4624 + - uid: 5074 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 4624 + - uid: 5075 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 4624 + - uid: 5076 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 4624 + - uid: 5077 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 4624 + - uid: 5078 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 4624 + - uid: 5079 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 4624 + - uid: 5080 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 4624 + - uid: 5081 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 4624 + - uid: 5082 + components: + - type: Transform + pos: 22.5,6.5 + parent: 4624 + - uid: 5083 + components: + - type: Transform + pos: 21.5,6.5 + parent: 4624 + - uid: 5084 + components: + - type: Transform + pos: 20.5,6.5 + parent: 4624 + - uid: 5085 + components: + - type: Transform + pos: 20.5,7.5 + parent: 4624 + - uid: 5086 + components: + - type: Transform + pos: 20.5,8.5 + parent: 4624 + - uid: 5087 + components: + - type: Transform + pos: 20.5,9.5 + parent: 4624 + - uid: 5088 + components: + - type: Transform + pos: 20.5,5.5 + parent: 4624 + - uid: 5089 + components: + - type: Transform + pos: 19.5,5.5 + parent: 4624 + - uid: 5090 + components: + - type: Transform + pos: 18.5,5.5 + parent: 4624 + - uid: 5091 + components: + - type: Transform + pos: 17.5,5.5 + parent: 4624 + - uid: 5092 + components: + - type: Transform + pos: 16.5,5.5 + parent: 4624 + - uid: 5093 + components: + - type: Transform + pos: 15.5,5.5 + parent: 4624 + - uid: 5094 + components: + - type: Transform + pos: 16.5,6.5 + parent: 4624 + - uid: 5095 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4624 + - uid: 5096 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4624 + - uid: 5097 + components: + - type: Transform + pos: 22.5,4.5 + parent: 4624 + - uid: 5098 + components: + - type: Transform + pos: 22.5,3.5 + parent: 4624 + - uid: 5099 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4624 + - uid: 5100 + components: + - type: Transform + pos: 24.5,4.5 + parent: 4624 + - uid: 5101 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4624 + - uid: 5102 + components: + - type: Transform + pos: 26.5,4.5 + parent: 4624 + - uid: 5103 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4624 + - uid: 5104 + components: + - type: Transform + pos: 22.5,2.5 + parent: 4624 + - uid: 5105 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4624 + - uid: 5106 + components: + - type: Transform + pos: 22.5,0.5 + parent: 4624 + - uid: 5107 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 4624 + - uid: 5108 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 4624 + - uid: 5109 + components: + - type: Transform + pos: 23.5,0.5 + parent: 4624 + - uid: 5110 + components: + - type: Transform + pos: 24.5,0.5 + parent: 4624 + - uid: 5111 + components: + - type: Transform + pos: 25.5,0.5 + parent: 4624 + - uid: 5112 + components: + - type: Transform + pos: 26.5,0.5 + parent: 4624 + - uid: 5113 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4624 + - uid: 5114 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 4624 + - uid: 5115 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 4624 + - uid: 5116 + components: + - type: Transform + pos: 25.5,5.5 + parent: 4624 + - uid: 5117 + components: + - type: Transform + pos: 25.5,6.5 + parent: 4624 +- proto: CableHV + entities: + - uid: 76 + components: + - type: Transform + pos: 22.5,8.5 + parent: 4624 + - uid: 77 + components: + - type: Transform + pos: 22.5,7.5 + parent: 4624 +- proto: CableMV + entities: + - uid: 78 + components: + - type: Transform + pos: 22.5,7.5 + parent: 4624 + - uid: 79 + components: + - type: Transform + pos: 22.5,6.5 + parent: 4624 + - uid: 80 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4624 + - uid: 81 + components: + - type: Transform + pos: 22.5,4.5 + parent: 4624 + - uid: 82 + components: + - type: Transform + pos: 22.5,3.5 + parent: 4624 + - uid: 83 + components: + - type: Transform + pos: 22.5,2.5 + parent: 4624 + - uid: 84 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4624 + - uid: 85 + components: + - type: Transform + pos: 22.5,0.5 + parent: 4624 + - uid: 86 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 4624 + - uid: 87 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 4624 + - uid: 88 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4624 + - uid: 89 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 4624 + - uid: 90 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 4624 + - uid: 91 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4624 + - uid: 92 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4624 + - uid: 93 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 4624 + - uid: 94 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 4624 + - uid: 95 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 4624 + - uid: 96 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 4624 + - uid: 97 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 4624 + - uid: 98 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 4624 + - uid: 99 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 4624 + - uid: 100 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 4624 + - uid: 101 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 4624 + - uid: 102 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 4624 + - uid: 103 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 4624 + - uid: 104 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 4624 +- proto: Carpet + entities: + - uid: 5118 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 4624 + - uid: 5119 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 4624 + - uid: 5120 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 4624 + - uid: 5121 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 4624 + - uid: 5122 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 4624 + - uid: 5123 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 4624 + - uid: 5124 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 4624 + - uid: 5125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 4624 + - uid: 5126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 4624 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 4624 + - uid: 5128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 4624 + - uid: 5129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 4624 + - uid: 5130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 4624 + - uid: 5131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 4624 + - uid: 5132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 4624 + - uid: 5133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 4624 + - uid: 5134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 4624 + - uid: 5135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 4624 + - uid: 5136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 4624 + - uid: 5137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 4624 + - uid: 5138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 4624 + - uid: 5139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 4624 + - uid: 5140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 4624 + - uid: 5141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 4624 + - uid: 5142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 4624 +- proto: ChairWood + entities: + - uid: 5143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5345764,-2.2583895 + parent: 4624 + - uid: 5144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.759018,3.609788 + parent: 4624 + - uid: 5145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.325424,3.6449442 + parent: 4624 + - uid: 5146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.735596,3.5492306 + parent: 4624 + - uid: 5147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.50122,0.7399039 + parent: 4624 +- proto: ChessBoard + entities: + - uid: 5148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.54419,5.588293 + parent: 4624 +- proto: ClothingBeltPlantFilled + entities: + - uid: 5149 + components: + - type: Transform + pos: 23.492386,-5.6696267 + parent: 4624 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 122 + components: + - type: Transform + pos: 18.28358,-12.385 + parent: 4624 +- proto: ClothingHeadPyjamaSyndicateBlack + entities: + - uid: 5151 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 5152 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 5153 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 120 + components: + - type: Transform + pos: 18.616913,-12.440556 + parent: 4624 +- proto: ClothingShoesSlippers + entities: + - uid: 5154 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5155 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5156 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 5157 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 5158 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 5159 + components: + - type: Transform + parent: 5150 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 117 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 4624 +- proto: Cobweb2 + entities: + - uid: 71 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 4624 +- proto: CrateFoodCooking + entities: + - uid: 5164 + components: + - type: Transform + pos: 20.5,8.5 + parent: 4624 +- proto: CrateFreezer + entities: + - uid: 5165 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 4624 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5167 + - 5169 + - 5168 + - 5166 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCart + entities: + - uid: 5170 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 4624 +- proto: CrayonBox + entities: + - uid: 5062 + components: + - type: Transform + parent: 5060 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DresserFilled + entities: + - uid: 106 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4624 +- proto: DrinkShotGlass + entities: + - uid: 5173 + components: + - type: Transform + pos: 20.39183,3.5746317 + parent: 4624 + - uid: 5174 + components: + - type: Transform + pos: 21.657455,3.6801004 + parent: 4624 +- proto: DrinkVodkaBottleFull + entities: + - uid: 5175 + components: + - type: Transform + pos: 21.376205,3.5394754 + parent: 4624 +- proto: FenceWoodHighStraight + entities: + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 4624 + - uid: 5177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 4624 +- proto: FloorWaterEntity + entities: + - uid: 5178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 4624 + - uid: 5179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 4624 + - uid: 5180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 4624 + - uid: 5181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 4624 + - uid: 5182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 4624 + - uid: 5183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 4624 + - uid: 5184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4624 + - uid: 5185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 4624 + - uid: 5186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 4624 + - uid: 5187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4624 + - uid: 5188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 4624 + - uid: 5189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 4624 + - uid: 5190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 4624 + - uid: 5191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 4624 + - uid: 5192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 4624 + - uid: 5193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 4624 + - uid: 5194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 4624 + - uid: 5195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 4624 + - uid: 5196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 4624 + - uid: 5197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 4624 + - uid: 5198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 4624 + - uid: 5199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 4624 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 4624 + - uid: 5201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 4624 + - uid: 5202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 4624 + - uid: 5203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 4624 + - uid: 5204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 4624 +- proto: FloraTree + entities: + - uid: 5205 + components: + - type: Transform + pos: 31.545929,2.7803442 + parent: 4624 + - uid: 5206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.3033295,6.2653456 + parent: 4624 + - uid: 5207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.742249,-7.3827085 + parent: 4624 + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.680908,13.405441 + parent: 4624 +- proto: FloraTreeLarge + entities: + - uid: 5209 + components: + - type: Transform + pos: 25.622772,9.931261 + parent: 4624 + - uid: 5210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.4835052,0.20165896 + parent: 4624 + - uid: 5211 + components: + - type: Transform + pos: 9.271774,9.5184555 + parent: 4624 + - uid: 5212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.450943,-6.515567 + parent: 4624 + - uid: 5213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.475449,-9.777004 + parent: 4624 + - uid: 5214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.490387,12.162825 + parent: 4624 + - uid: 5215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.162201,1.8156183 + parent: 4624 +- proto: FoodMeat + entities: + - uid: 5166 + components: + - type: Transform + parent: 5165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 5165 + - uid: 5167 + components: + - type: Transform + parent: 5165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 5165 + - uid: 5168 + components: + - type: Transform + parent: 5165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 5165 + - uid: 5169 + components: + - type: Transform + parent: 5165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 5165 + - uid: 5217 + components: + - type: Transform + parent: 5216 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5218 + components: + - type: Transform + parent: 5216 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5219 + components: + - type: Transform + parent: 5216 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5220 + components: + - type: Transform + parent: 5216 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5221 + components: + - type: Transform + parent: 5216 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatClown + entities: + - uid: 5223 + components: + - type: Transform + parent: 5222 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 5222 +- proto: FoodShakerPepper + entities: + - uid: 5224 + components: + - type: Transform + pos: 6.339264,-1.2740145 + parent: 4624 +- proto: FoodShakerSalt + entities: + - uid: 5225 + components: + - type: Transform + pos: 6.620514,-1.2740145 + parent: 4624 +- proto: Fork + entities: + - uid: 5226 + components: + - type: Transform + pos: 7.745514,-1.484952 + parent: 4624 +- proto: GeneratorWallmountBasic + entities: + - uid: 74 + components: + - type: Transform + pos: 22.5,8.5 + parent: 4624 +- proto: GrapeSeeds + entities: + - uid: 5227 + components: + - type: Transform + pos: 23.45723,-5.423533 + parent: 4624 +- proto: Grille + entities: + - uid: 5228 + components: + - type: Transform + pos: 14.5,5.5 + parent: 4624 + - uid: 5229 + components: + - type: Transform + pos: 16.5,7.5 + parent: 4624 + - uid: 5230 + components: + - type: Transform + pos: 19.5,0.5 + parent: 4624 + - uid: 5231 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4624 + - uid: 5232 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4624 + - uid: 5233 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 4624 + - uid: 5234 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4624 + - uid: 5235 + components: + - type: Transform + pos: 26.5,7.5 + parent: 4624 + - uid: 5236 + components: + - type: Transform + pos: 20.5,9.5 + parent: 4624 +- proto: hydroponicsSoil + entities: + - uid: 5237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 4624 + - uid: 5238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 4624 + - uid: 5239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 4624 + - uid: 5240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 4624 + - uid: 5241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 4624 + - uid: 5242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 4624 + - uid: 5243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 4624 + - uid: 5244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 4624 + - uid: 5245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 4624 + - uid: 5246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 4624 + - uid: 5247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-7.5 + parent: 4624 + - uid: 5248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 4624 +- proto: HydroponicsToolSpade + entities: + - uid: 5249 + components: + - type: Transform + pos: 23.562698,-5.3883767 + parent: 4624 +- proto: KitchenKnife + entities: + - uid: 5250 + components: + - type: Transform + pos: 21.53711,6.5664024 + parent: 4624 +- proto: KitchenMicrowave + entities: + - uid: 5251 + components: + - type: Transform + pos: 19.5,8.5 + parent: 4624 +- proto: KitchenReagentGrinder + entities: + - uid: 5252 + components: + - type: Transform + pos: 19.5,7.5 + parent: 4624 +- proto: Lamp + entities: + - uid: 5253 + components: + - type: Transform + pos: 15.49472,6.6953664 + parent: 4624 +- proto: LimeSeeds + entities: + - uid: 5254 + components: + - type: Transform + pos: 23.492386,-5.3883767 + parent: 4624 +- proto: LockerBooze + entities: + - uid: 5060 + components: + - type: MetaData + desc: Простой деревянный шкаф. + name: шкаф + - type: Transform + pos: 17.5,6.5 + parent: 4624 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5061 + - 5062 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 5150 + components: + - type: Transform + pos: 20.5,1.5 + parent: 4624 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5152 + - 5151 + - 5157 + - 5158 + - 5154 + - 5155 + - 5156 + - 5159 + - 5153 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezer + entities: + - uid: 5222 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 4624 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5223 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerBase + entities: + - uid: 5216 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4624 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5217 + - 5218 + - 5219 + - 5220 + - 5221 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallEvacRepair + entities: + - uid: 119 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 4624 + - type: Fixtures + fixtures: {} +- proto: MarkerBiosphereSignal + entities: + - uid: 3 + components: + - type: Transform + pos: 17.5,0.5 + parent: 4624 +- proto: MaterialCloth1 + entities: + - uid: 110 + components: + - type: Transform + pos: 19.431143,-13.903218 + parent: 4624 +- proto: OrangeSeeds + entities: + - uid: 5255 + components: + - type: Transform + pos: 23.45723,-5.3532205 + parent: 4624 +- proto: OxygenTank + entities: + - uid: 112 + components: + - type: Transform + pos: 15.415484,-12.394743 + parent: 4624 + - uid: 113 + components: + - type: Transform + pos: 15.494188,-12.529002 + parent: 4624 + - type: GasTank + toggleActionEntity: 114 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 114 + - uid: 115 + components: + - type: Transform + pos: 15.748817,-12.404002 + parent: 4624 + - type: GasTank + toggleActionEntity: 116 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 116 +- proto: Paper + entities: + - uid: 46 + components: + - type: Transform + pos: 25.423378,3.6624777 + parent: 4624 + - type: Paper + content: '[italic]Дорогой дневник, мне не подобрать слов, чтобы описать всю боль и унижения, которые я испытал сегодня...[/italic]' + - uid: 5256 + components: + - type: Transform + pos: 21.536377,1.5804806 + parent: 4624 +- proto: PaperBin20 + entities: + - uid: 5258 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4624 +- proto: Pen + entities: + - uid: 5259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.7473,5.5433817 + parent: 4624 + - uid: 5260 + components: + - type: Transform + pos: 25.649153,3.4968097 + parent: 4624 +- proto: PhoneInstrument + entities: + - uid: 5261 + components: + - type: Transform + pos: 22.1848,5.754319 + parent: 4624 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 5262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 4624 + - uid: 5263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 4624 + - uid: 5264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 4624 +- proto: PottedPlant10 + entities: + - uid: 5265 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 4624 +- proto: PottedPlant21 + entities: + - uid: 5266 + components: + - type: Transform + pos: 26.5,3.5 + parent: 4624 +- proto: PottedPlant23 + entities: + - uid: 5267 + components: + - type: Transform + pos: 21.5,5.5 + parent: 4624 + - uid: 5268 + components: + - type: Transform + pos: 17.5,2.5 + parent: 4624 +- proto: PottedPlantRD + entities: + - uid: 5269 + components: + - type: Transform + pos: 29.5,5.5 + parent: 4624 +- proto: Poweredlight + entities: + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 4624 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 4624 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 4624 + - uid: 63 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4624 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 4624 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 4624 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 4624 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 4624 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 4624 +- proto: PuddleBlood + entities: + - uid: 105 + components: + - type: Transform + pos: 12.5,14.5 + parent: 4624 +- proto: Rack + entities: + - uid: 5295 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 4624 + - uid: 5296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 4624 + - uid: 5297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 4624 + - uid: 5298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 4624 + - uid: 5299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 4624 + - uid: 5300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 4624 +- proto: Railing + entities: + - uid: 5301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 4624 + - uid: 5302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 4624 + - uid: 5303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 4624 + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 4624 + - uid: 5305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 4624 + - uid: 5306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 4624 + - uid: 5307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 4624 + - uid: 5308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 4624 + - uid: 5309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 4624 + - uid: 5310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 4624 + - uid: 5311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 4624 + - uid: 5312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 4624 + - uid: 5313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 4624 + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 4624 + - uid: 5315 + components: + - type: Transform + pos: 10.5,5.5 + parent: 4624 + - uid: 5316 + components: + - type: Transform + pos: 11.5,5.5 + parent: 4624 + - uid: 5317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 4624 + - uid: 5318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 4624 + - uid: 5319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 4624 + - uid: 5320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 4624 + - uid: 5321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 4624 + - uid: 5322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 4624 + - uid: 5323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 4624 + - uid: 5324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 4624 + - uid: 5325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 4624 + - uid: 5326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 4624 + - uid: 5327 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 4624 + - uid: 5328 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 4624 + - uid: 5329 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 4624 + - uid: 5330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 4624 + - uid: 5331 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 4624 + - uid: 5332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 4624 + - uid: 5333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 4624 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 4624 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 4624 + - uid: 5336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 4624 + - uid: 5337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-11.5 + parent: 4624 + - uid: 5338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 4624 + - uid: 5339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 4624 +- proto: RailingCorner + entities: + - uid: 5340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 4624 + - uid: 5341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 4624 + - uid: 5342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 4624 + - uid: 5343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4624 + - uid: 5344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 4624 + - uid: 5345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 4624 + - uid: 5346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 4624 + - uid: 5347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 4624 + - uid: 5348 + components: + - type: Transform + pos: 17.5,1.5 + parent: 4624 + - uid: 5349 + components: + - type: Transform + pos: 29.5,2.5 + parent: 4624 + - uid: 5350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 4624 + - uid: 5351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 4624 + - uid: 5352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 4624 +- proto: RailingCornerSmall + entities: + - uid: 5353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 4624 + - uid: 5354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 4624 + - uid: 5355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 4624 + - uid: 5356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 4624 + - uid: 5357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4624 + - uid: 5358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 4624 + - uid: 5359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 4624 + - uid: 5360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4624 + - uid: 5361 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 4624 + - uid: 5362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 4624 +- proto: RandomSoap + entities: + - uid: 70 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4624 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 121 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 4624 +- proto: ScrapMedkit + entities: + - uid: 109 + components: + - type: Transform + pos: 19.010984,-13.737075 + parent: 4624 +- proto: Screwdriver + entities: + - uid: 118 + components: + - type: Transform + pos: 15.49239,-14.522675 + parent: 4624 +- proto: Shower + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 4624 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: Sink + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 4624 + - uid: 5363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 4624 +- proto: SmallLight + entities: + - uid: 5365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 4624 +- proto: SpawnMobGorilla + entities: + - uid: 5 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 4624 + - uid: 6 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 4624 + - uid: 7 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 4624 + - uid: 8 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 4624 +- proto: SpawnMobReindeerBuck + entities: + - uid: 2 + components: + - type: Transform + pos: 6.5,4.5 + parent: 4624 +- proto: SpawnMobReindeerDoe + entities: + - uid: 1 + components: + - type: Transform + pos: 17.5,11.5 + parent: 4624 + - uid: 4 + components: + - type: Transform + pos: 26.5,9.5 + parent: 4624 +- proto: Spoon + entities: + - uid: 5367 + components: + - type: Transform + pos: 7.4291077,-1.5201082 + parent: 4624 +- proto: SubstationWallBasic + entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 4624 +- proto: Table + entities: + - uid: 5368 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 4624 + - uid: 5369 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 4624 + - uid: 5370 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 4624 + - uid: 5371 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 4624 + - uid: 5372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 4624 + - uid: 5373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 4624 + - uid: 5374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 4624 +- proto: TableCounterWood + entities: + - uid: 5375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 4624 +- proto: TableWood + entities: + - uid: 5376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 4624 + - uid: 5377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 4624 + - uid: 5378 + components: + - type: Transform + pos: 16.5,6.5 + parent: 4624 + - uid: 5379 + components: + - type: Transform + pos: 15.5,6.5 + parent: 4624 + - uid: 5380 + components: + - type: Transform + pos: 20.5,3.5 + parent: 4624 + - uid: 5381 + components: + - type: Transform + pos: 21.5,3.5 + parent: 4624 + - uid: 5382 + components: + - type: Transform + pos: 25.5,5.5 + parent: 4624 + - uid: 5383 + components: + - type: Transform + pos: 25.5,3.5 + parent: 4624 + - uid: 5384 + components: + - type: Transform + pos: 21.5,1.5 + parent: 4624 + - uid: 5385 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4624 + - uid: 5386 + components: + - type: Transform + pos: 15.5,5.5 + parent: 4624 + - uid: 5387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 4624 +- proto: ToiletEmpty + entities: + - uid: 5388 + components: + - type: Transform + pos: 26.5,1.5 + parent: 4624 +- proto: WallReinforced + entities: + - uid: 9 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4624 + - uid: 5389 + components: + - type: Transform + pos: 2.5,5.5 + parent: 4624 + - uid: 5390 + components: + - type: Transform + pos: 1.5,4.5 + parent: 4624 + - uid: 5391 + components: + - type: Transform + pos: 1.5,3.5 + parent: 4624 + - uid: 5392 + components: + - type: Transform + pos: 1.5,2.5 + parent: 4624 + - uid: 5393 + components: + - type: Transform + pos: 1.5,1.5 + parent: 4624 + - uid: 5394 + components: + - type: Transform + pos: 1.5,0.5 + parent: 4624 + - uid: 5395 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 4624 + - uid: 5396 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 4624 + - uid: 5397 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 4624 + - uid: 5398 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 4624 + - uid: 5399 + components: + - type: Transform + pos: 2.5,4.5 + parent: 4624 + - uid: 5400 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 4624 + - uid: 5401 + components: + - type: Transform + pos: 2.5,6.5 + parent: 4624 + - uid: 5402 + components: + - type: Transform + pos: 3.5,6.5 + parent: 4624 + - uid: 5403 + components: + - type: Transform + pos: 3.5,7.5 + parent: 4624 + - uid: 5404 + components: + - type: Transform + pos: 3.5,8.5 + parent: 4624 + - uid: 5405 + components: + - type: Transform + pos: 4.5,10.5 + parent: 4624 + - uid: 5406 + components: + - type: Transform + pos: 4.5,8.5 + parent: 4624 + - uid: 5407 + components: + - type: Transform + pos: 5.5,10.5 + parent: 4624 + - uid: 5408 + components: + - type: Transform + pos: 4.5,9.5 + parent: 4624 + - uid: 5409 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4624 + - uid: 5410 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4624 + - uid: 5411 + components: + - type: Transform + pos: 6.5,12.5 + parent: 4624 + - uid: 5412 + components: + - type: Transform + pos: 7.5,12.5 + parent: 4624 + - uid: 5413 + components: + - type: Transform + pos: 7.5,13.5 + parent: 4624 + - uid: 5414 + components: + - type: Transform + pos: 8.5,13.5 + parent: 4624 + - uid: 5415 + components: + - type: Transform + pos: 9.5,13.5 + parent: 4624 + - uid: 5416 + components: + - type: Transform + pos: 9.5,14.5 + parent: 4624 + - uid: 5417 + components: + - type: Transform + pos: 10.5,14.5 + parent: 4624 + - uid: 5418 + components: + - type: Transform + pos: 11.5,14.5 + parent: 4624 + - uid: 5419 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 4624 + - uid: 5420 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 4624 + - uid: 5421 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 4624 + - uid: 5422 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 4624 + - uid: 5423 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 4624 + - uid: 5424 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 4624 + - uid: 5425 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 4624 + - uid: 5426 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 4624 + - uid: 5427 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 4624 + - uid: 5428 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 4624 + - uid: 5429 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 4624 + - uid: 5430 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 4624 + - uid: 5431 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 4624 + - uid: 5432 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 4624 + - uid: 5433 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 4624 + - uid: 5434 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 4624 + - uid: 5435 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 4624 + - uid: 5436 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 4624 + - uid: 5437 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 4624 + - uid: 5438 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 4624 + - uid: 5439 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 4624 + - uid: 5440 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 4624 + - uid: 5441 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 4624 + - uid: 5442 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4624 + - uid: 5443 + components: + - type: Transform + pos: 12.5,15.5 + parent: 4624 + - uid: 5444 + components: + - type: Transform + pos: 13.5,15.5 + parent: 4624 + - uid: 5445 + components: + - type: Transform + pos: 13.5,16.5 + parent: 4624 + - uid: 5446 + components: + - type: Transform + pos: 14.5,16.5 + parent: 4624 + - uid: 5447 + components: + - type: Transform + pos: 15.5,16.5 + parent: 4624 + - uid: 5448 + components: + - type: Transform + pos: 16.5,16.5 + parent: 4624 + - uid: 5449 + components: + - type: Transform + pos: 17.5,16.5 + parent: 4624 + - uid: 5450 + components: + - type: Transform + pos: 18.5,16.5 + parent: 4624 + - uid: 5451 + components: + - type: Transform + pos: 19.5,16.5 + parent: 4624 + - uid: 5452 + components: + - type: Transform + pos: 20.5,16.5 + parent: 4624 + - uid: 5453 + components: + - type: Transform + pos: 21.5,16.5 + parent: 4624 + - uid: 5454 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 4624 + - uid: 5455 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 4624 + - uid: 5456 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 4624 + - uid: 5457 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4624 + - uid: 5458 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 4624 + - uid: 5459 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 4624 + - uid: 5460 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 4624 + - uid: 5461 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 4624 + - uid: 5462 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 4624 + - uid: 5463 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 4624 + - uid: 5464 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 4624 + - uid: 5465 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 4624 + - uid: 5466 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 4624 + - uid: 5467 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 4624 + - uid: 5468 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 4624 + - uid: 5469 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 4624 + - uid: 5470 + components: + - type: Transform + pos: 23.5,14.5 + parent: 4624 + - uid: 5471 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 4624 + - uid: 5473 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 4624 + - uid: 5474 + components: + - type: Transform + pos: 32.5,6.5 + parent: 4624 + - uid: 5475 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 4624 + - uid: 5476 + components: + - type: Transform + pos: 21.5,15.5 + parent: 4624 + - uid: 5477 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 4624 + - uid: 5478 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 4624 + - uid: 5479 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 4624 + - uid: 5480 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 4624 + - uid: 5481 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 4624 + - uid: 5482 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 4624 + - uid: 5483 + components: + - type: Transform + pos: 22.5,15.5 + parent: 4624 + - uid: 5484 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 4624 + - uid: 5485 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 4624 + - uid: 5486 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 4624 + - uid: 5487 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 4624 + - uid: 5488 + components: + - type: Transform + pos: 33.5,0.5 + parent: 4624 + - uid: 5489 + components: + - type: Transform + pos: 33.5,1.5 + parent: 4624 + - uid: 5490 + components: + - type: Transform + pos: 33.5,2.5 + parent: 4624 + - uid: 5491 + components: + - type: Transform + pos: 33.5,3.5 + parent: 4624 + - uid: 5492 + components: + - type: Transform + pos: 33.5,4.5 + parent: 4624 + - uid: 5493 + components: + - type: Transform + pos: 32.5,4.5 + parent: 4624 + - uid: 5494 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 4624 + - uid: 5495 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 4624 + - uid: 5496 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 4624 + - uid: 5497 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 4624 + - uid: 5498 + components: + - type: Transform + pos: 32.5,5.5 + parent: 4624 + - uid: 5499 + components: + - type: Transform + pos: 24.5,14.5 + parent: 4624 + - uid: 5500 + components: + - type: Transform + pos: 25.5,14.5 + parent: 4624 + - uid: 5501 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4624 + - uid: 5502 + components: + - type: Transform + pos: 26.5,13.5 + parent: 4624 + - uid: 5503 + components: + - type: Transform + pos: 27.5,13.5 + parent: 4624 + - uid: 5504 + components: + - type: Transform + pos: 27.5,12.5 + parent: 4624 + - uid: 5505 + components: + - type: Transform + pos: 28.5,12.5 + parent: 4624 + - uid: 5506 + components: + - type: Transform + pos: 28.5,11.5 + parent: 4624 + - uid: 5507 + components: + - type: Transform + pos: 29.5,11.5 + parent: 4624 + - uid: 5508 + components: + - type: Transform + pos: 29.5,10.5 + parent: 4624 + - uid: 5509 + components: + - type: Transform + pos: 30.5,10.5 + parent: 4624 + - uid: 5510 + components: + - type: Transform + pos: 30.5,9.5 + parent: 4624 + - uid: 5511 + components: + - type: Transform + pos: 30.5,8.5 + parent: 4624 + - uid: 5512 + components: + - type: Transform + pos: 31.5,8.5 + parent: 4624 + - uid: 5513 + components: + - type: Transform + pos: 31.5,7.5 + parent: 4624 + - uid: 5514 + components: + - type: Transform + pos: 31.5,6.5 + parent: 4624 + - uid: 5515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 4624 + - uid: 5516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 4624 + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 4624 + - uid: 5518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 4624 + - uid: 5519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 4624 + - uid: 5520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 4624 + - uid: 5521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 4624 + - uid: 5522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 4624 + - uid: 5523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 4624 + - uid: 5524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 4624 + - uid: 5525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 4624 +- proto: WallRock + entities: + - uid: 5526 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 4624 + - uid: 5527 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 4624 + - uid: 5528 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 4624 + - uid: 5529 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 4624 + - uid: 5530 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 4624 + - uid: 5531 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 4624 + - uid: 5532 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 4624 + - uid: 5533 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 4624 + - uid: 5534 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 4624 + - uid: 5535 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 4624 + - uid: 5536 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 4624 + - uid: 5537 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 4624 + - uid: 5538 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 4624 + - uid: 5539 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 4624 + - uid: 5540 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 4624 + - uid: 5541 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 4624 + - uid: 5542 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 4624 + - uid: 5543 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 4624 + - uid: 5544 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 4624 + - uid: 5545 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 4624 + - uid: 5546 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 4624 + - uid: 5547 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 4624 + - uid: 5548 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 4624 + - uid: 5549 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 4624 + - uid: 5550 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 4624 + - uid: 5551 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 4624 + - uid: 5552 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 4624 + - uid: 5553 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 4624 + - uid: 5554 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 4624 + - uid: 5555 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 4624 + - uid: 5556 + components: + - type: Transform + pos: 10.5,10.5 + parent: 4624 + - uid: 5557 + components: + - type: Transform + pos: 10.5,9.5 + parent: 4624 + - uid: 5558 + components: + - type: Transform + pos: 11.5,10.5 + parent: 4624 + - uid: 5559 + components: + - type: Transform + pos: 12.5,10.5 + parent: 4624 + - uid: 5560 + components: + - type: Transform + pos: 13.5,10.5 + parent: 4624 + - uid: 5561 + components: + - type: Transform + pos: 13.5,9.5 + parent: 4624 + - uid: 5562 + components: + - type: Transform + pos: 11.5,13.5 + parent: 4624 + - uid: 5563 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4624 + - uid: 5564 + components: + - type: Transform + pos: 11.5,11.5 + parent: 4624 + - uid: 5565 + components: + - type: Transform + pos: 12.5,13.5 + parent: 4624 + - uid: 5566 + components: + - type: Transform + pos: 12.5,12.5 + parent: 4624 + - uid: 5567 + components: + - type: Transform + pos: 12.5,11.5 + parent: 4624 + - uid: 5568 + components: + - type: Transform + pos: 13.5,13.5 + parent: 4624 + - uid: 5569 + components: + - type: Transform + pos: 13.5,12.5 + parent: 4624 + - uid: 5570 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4624 + - uid: 5571 + components: + - type: Transform + pos: 13.5,14.5 + parent: 4624 + - uid: 5572 + components: + - type: Transform + pos: 14.5,14.5 + parent: 4624 + - uid: 5573 + components: + - type: Transform + pos: 15.5,14.5 + parent: 4624 + - uid: 5574 + components: + - type: Transform + pos: 14.5,15.5 + parent: 4624 + - uid: 5575 + components: + - type: Transform + pos: 15.5,15.5 + parent: 4624 + - uid: 5576 + components: + - type: Transform + pos: 16.5,15.5 + parent: 4624 + - uid: 5577 + components: + - type: Transform + pos: 17.5,15.5 + parent: 4624 + - uid: 5578 + components: + - type: Transform + pos: 18.5,15.5 + parent: 4624 + - uid: 5579 + components: + - type: Transform + pos: 19.5,15.5 + parent: 4624 + - uid: 5580 + components: + - type: Transform + pos: 20.5,15.5 + parent: 4624 + - uid: 5581 + components: + - type: Transform + pos: 16.5,14.5 + parent: 4624 + - uid: 5582 + components: + - type: Transform + pos: 17.5,14.5 + parent: 4624 + - uid: 5583 + components: + - type: Transform + pos: 18.5,14.5 + parent: 4624 + - uid: 5584 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4624 + - uid: 5585 + components: + - type: Transform + pos: 20.5,14.5 + parent: 4624 + - uid: 5586 + components: + - type: Transform + pos: 19.5,13.5 + parent: 4624 + - uid: 5587 + components: + - type: Transform + pos: 20.5,13.5 + parent: 4624 + - uid: 5588 + components: + - type: Transform + pos: 14.5,13.5 + parent: 4624 + - uid: 5589 + components: + - type: Transform + pos: 14.5,12.5 + parent: 4624 + - uid: 5590 + components: + - type: Transform + pos: 14.5,11.5 + parent: 4624 + - uid: 5591 + components: + - type: Transform + pos: 15.5,13.5 + parent: 4624 + - uid: 5592 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4624 + - uid: 5593 + components: + - type: Transform + pos: 5.5,6.5 + parent: 4624 + - uid: 5594 + components: + - type: Transform + pos: 6.5,8.5 + parent: 4624 + - uid: 5595 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4624 + - uid: 5596 + components: + - type: Transform + pos: 7.5,7.5 + parent: 4624 + - uid: 5597 + components: + - type: Transform + pos: 7.5,8.5 + parent: 4624 + - uid: 5598 + components: + - type: Transform + pos: 32.5,0.5 + parent: 4624 + - uid: 5599 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 4624 + - uid: 5600 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 4624 + - uid: 5601 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 4624 + - uid: 5602 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4624 + - uid: 5603 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 4624 +- proto: WallWood + entities: + - uid: 5604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 4624 + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 4624 + - uid: 5606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 4624 + - uid: 5607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 4624 + - uid: 5608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 4624 + - uid: 5609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 4624 + - uid: 5610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 4624 + - uid: 5611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 4624 + - uid: 5612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 4624 + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 4624 + - uid: 5614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 4624 + - uid: 5615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 4624 + - uid: 5616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 4624 + - uid: 5617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 4624 + - uid: 5618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 4624 + - uid: 5619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 4624 + - uid: 5620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 4624 + - uid: 5621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 4624 + - uid: 5622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 4624 + - uid: 5623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 4624 + - uid: 5624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 4624 + - uid: 5625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 4624 + - uid: 5626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 4624 + - uid: 5627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 4624 + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 4624 + - uid: 5629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 4624 + - uid: 5630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 4624 + - uid: 5631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 4624 + - uid: 5632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 4624 + - uid: 5633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 4624 + - uid: 5634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 4624 + - uid: 5635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 4624 + - uid: 5636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 4624 + - uid: 5637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 4624 + - uid: 5638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 4624 + - uid: 5639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 4624 + - uid: 5640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 4624 + - uid: 5641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 4624 + - uid: 5642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 4624 + - uid: 5643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 4624 + - uid: 5644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,7.5 + parent: 4624 + - uid: 5645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 4624 + - uid: 5646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 4624 + - uid: 5647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 4624 + - uid: 5648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 4624 + - uid: 5649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 4624 + - uid: 5650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 4624 + - uid: 5651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 4624 + - uid: 5652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 4624 + - uid: 5653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 4624 + - uid: 5654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 4624 + - uid: 5655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 4624 + - uid: 5656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 4624 + - uid: 5657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 4624 + - uid: 5658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 4624 + - uid: 5659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 4624 + - uid: 5660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 4624 + - uid: 5661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 4624 + - uid: 5662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 4624 + - uid: 5663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 4624 + - uid: 5664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 4624 + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 4624 + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 4624 + - uid: 5667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 4624 + - uid: 5668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 4624 + - uid: 5669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 4624 + - uid: 5670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 4624 + - uid: 5671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 4624 +- proto: WarpPoint + entities: + - uid: 5672 + components: + - type: Transform + pos: 17.5,0.5 + parent: 4624 + - type: WarpPoint + location: Биосфера +- proto: WatermelonSeeds + entities: + - uid: 5673 + components: + - type: Transform + pos: 23.492386,-5.423533 + parent: 4624 +- proto: WaterTankHighCapacity + entities: + - uid: 5674 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 4624 +- proto: Window + entities: + - uid: 5675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 4624 + - uid: 5676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 4624 + - uid: 5677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-2.5 + parent: 4624 + - uid: 5678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 4624 + - uid: 5679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 4624 + - uid: 5680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 4624 + - uid: 5681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 4624 + - uid: 5682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 4624 + - uid: 5683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 4624 +- proto: WindowDirectional + entities: + - uid: 5684 + components: + - type: Transform + pos: 21.5,6.5 + parent: 4624 + - uid: 5685 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4624 +- proto: WindowReinforcedDirectional + entities: + - uid: 5686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 4624 +- proto: WoodDoor + entities: + - uid: 5687 + components: + - type: Transform + pos: 23.5,2.5 + parent: 4624 + - uid: 5688 + components: + - type: Transform + pos: 23.5,7.5 + parent: 4624 + - uid: 5689 + components: + - type: Transform + pos: 16.5,3.5 + parent: 4624 + - uid: 5690 + components: + - type: Transform + pos: 25.5,0.5 + parent: 4624 + - uid: 5691 + components: + - type: Transform + pos: 18.5,5.5 + parent: 4624 + - uid: 5692 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4624 +... diff --git a/Resources/Maps/_Wega/Lavaland/bubblegumspawn.yml b/Resources/Maps/_Wega/Lavaland/bubblegumspawn.yml new file mode 100644 index 00000000000..48e5500eeec --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/bubblegumspawn.yml @@ -0,0 +1,125 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 02/14/2026 12:22:33 + entityCount: 11 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.53125,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay +- proto: PuddleBlood + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: SpawnBubblegumLavaland + entities: + - uid: 11 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/butterflys.yml b/Resources/Maps/_Wega/Lavaland/butterflys.yml new file mode 100644 index 00000000000..db6b80ae0d9 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/butterflys.yml @@ -0,0 +1,2803 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:05:19 + entityCount: 506 +maps: [] +grids: +- 5693 +orphans: +- 5693 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 5693 + components: + - type: MetaData + name: Бабочки + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: GgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAGgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: 2,10 + 5: 2,11 + 6: 2,12 + 7: 2,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 0: -2,10 + 1: -2,11 + 2: -2,12 + 3: -2,13 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 32767 + 0,-1: + 0: 65407 + -1,0: + 0: 59392 + 0,1: + 0: 65535 + -1,1: + 0: 65535 + 0,2: + 0: 65311 + -1,2: + 0: 60942 + 0,3: + 0: 8191 + -1,3: + 0: 3822 + 1,0: + 0: 65535 + 1,1: + 0: 14320 + 1,-1: + 0: 65520 + 2,0: + 0: 4369 + 2,-1: + 0: 4368 + -3,0: + 0: 8 + -2,0: + 0: 63283 + -2,-1: + 0: 32766 + -2,1: + 0: 36078 + -1,-1: + 0: 39423 + -2,-2: + 0: 60544 + -1,-2: + 0: 65534 + 0,-2: + 0: 65535 + 1,-2: + 0: 63280 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockBloodCult + entities: + - uid: 1 + components: + - type: Transform + pos: -8.5,0.5 + parent: 5693 + - uid: 2 + components: + - type: Transform + pos: 0.5,9.5 + parent: 5693 + - uid: 3 + components: + - type: Transform + pos: 0.5,15.5 + parent: 5693 +- proto: AltarSpawner + entities: + - uid: 5694 + components: + - type: Transform + pos: 8.5,0.5 + parent: 5693 +- proto: AtmosDeviceFanTiny + entities: + - uid: 5695 + components: + - type: Transform + pos: -8.5,0.5 + parent: 5693 + - uid: 5696 + components: + - type: Transform + pos: 0.5,9.5 + parent: 5693 + - uid: 5697 + components: + - type: Transform + pos: 0.5,15.5 + parent: 5693 +- proto: BannerRed + entities: + - uid: 5698 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 5693 + - uid: 5699 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 5693 + - uid: 5700 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 5693 + - uid: 5701 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 5693 + - uid: 5702 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 5693 + - uid: 5703 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 5693 + - uid: 5704 + components: + - type: Transform + pos: 0.5,12.5 + parent: 5693 + - uid: 5705 + components: + - type: Transform + pos: -5.5,6.5 + parent: 5693 + - uid: 5706 + components: + - type: Transform + pos: -4.5,7.5 + parent: 5693 + - uid: 5707 + components: + - type: Transform + pos: 5.5,7.5 + parent: 5693 + - uid: 5708 + components: + - type: Transform + pos: 6.5,6.5 + parent: 5693 + - uid: 5709 + components: + - type: Transform + pos: 7.5,5.5 + parent: 5693 + - uid: 5710 + components: + - type: Transform + pos: -6.5,5.5 + parent: 5693 +- proto: Bookshelf + entities: + - uid: 5711 + components: + - type: Transform + pos: -2.5,8.5 + parent: 5693 + - uid: 5712 + components: + - type: Transform + pos: -1.5,8.5 + parent: 5693 + - uid: 5713 + components: + - type: Transform + pos: 2.5,8.5 + parent: 5693 + - uid: 5714 + components: + - type: Transform + pos: 3.5,8.5 + parent: 5693 + - uid: 5715 + components: + - type: Transform + pos: 8.5,3.5 + parent: 5693 + - uid: 5716 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 5693 + - uid: 5717 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 5693 + - uid: 5718 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 5693 + - uid: 5719 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 5693 +- proto: CandleRed + entities: + - uid: 5720 + components: + - type: Transform + pos: 1.617279,13.309805 + parent: 5693 +- proto: CandleRedInfinite + entities: + - uid: 5721 + components: + - type: Transform + pos: 2.6809387,-2.4790688 + parent: 5693 + - uid: 5722 + components: + - type: Transform + pos: -4.3147583,-3.5894814 + parent: 5693 + - uid: 5723 + components: + - type: Transform + pos: -2.3527222,6.1745872 + parent: 5693 + - uid: 5724 + components: + - type: Transform + pos: 8.741119,1.1990967 + parent: 5693 + - uid: 5725 + components: + - type: Transform + pos: 3.610199,1.3216972 + parent: 5693 + - uid: 5726 + components: + - type: Transform + pos: -5.405487,3.0891495 + parent: 5693 + - uid: 5727 + components: + - type: Transform + pos: -0.7555237,-5.465027 + parent: 5693 + - uid: 5728 + components: + - type: Transform + pos: -0.32525635,8.4280205 + parent: 5693 + - uid: 5729 + components: + - type: Transform + pos: 1.2822571,8.408545 + parent: 5693 +- proto: CandleRedSmall + entities: + - uid: 5730 + components: + - type: Transform + pos: 1.4321594,12.404253 + parent: 5693 + - uid: 5731 + components: + - type: Transform + pos: -0.079589844,-7.283386 + parent: 5693 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 5732 + components: + - type: Transform + pos: 0.5227356,13.506304 + parent: 5693 +- proto: CrateCoffin + entities: + - uid: 5733 + components: + - type: Transform + pos: -2.5,10.5 + parent: 5693 + - uid: 5734 + components: + - type: Transform + pos: -2.5,11.5 + parent: 5693 + - uid: 5735 + components: + - type: Transform + pos: -2.5,12.5 + parent: 5693 + - uid: 5736 + components: + - type: Transform + pos: -2.5,13.5 + parent: 5693 + - uid: 5737 + components: + - type: Transform + pos: -2.5,14.5 + parent: 5693 + - uid: 5738 + components: + - type: Transform + pos: 3.5,10.5 + parent: 5693 + - uid: 5739 + components: + - type: Transform + pos: 3.5,11.5 + parent: 5693 + - uid: 5740 + components: + - type: Transform + pos: 3.5,12.5 + parent: 5693 + - uid: 5741 + components: + - type: Transform + pos: 3.5,13.5 + parent: 5693 + - uid: 5742 + components: + - type: Transform + pos: 3.5,14.5 + parent: 5693 +- proto: FoodPoppy + entities: + - uid: 5743 + components: + - type: Transform + pos: 0.47888184,11.665993 + parent: 5693 + - uid: 5744 + components: + - type: Transform + pos: 0.63964844,11.417698 + parent: 5693 + - uid: 5745 + components: + - type: Transform + pos: -0.50024414,11.534542 + parent: 5693 + - uid: 5746 + components: + - type: Transform + pos: 1.3849487,11.47612 + parent: 5693 + - uid: 5747 + components: + - type: Transform + pos: 1.6772156,11.622175 + parent: 5693 +- proto: KalimbaInstrument + entities: + - uid: 5748 + components: + - type: Transform + pos: -2.5444336,-7.4197083 + parent: 5693 + - uid: 5749 + components: + - type: Transform + pos: -1.8916931,-7.3515472 + parent: 5693 + - uid: 5750 + components: + - type: Transform + pos: -1.4532776,-7.6144485 + parent: 5693 + - uid: 5751 + components: + - type: Transform + pos: -1.1122742,-7.312599 + parent: 5693 + - uid: 5752 + components: + - type: Transform + pos: -0.4692688,-7.4489174 + parent: 5693 +- proto: Lantern + entities: + - uid: 5753 + components: + - type: Transform + pos: -0.5942993,12.336094 + parent: 5693 + - uid: 5754 + components: + - type: Transform + pos: 0.6413574,-7.322338 + parent: 5693 +- proto: Matchbox + entities: + - uid: 5755 + components: + - type: Transform + pos: 0.16397095,-7.5462914 + parent: 5693 +- proto: MaterialWoodPlank1 + entities: + - uid: 5756 + components: + - type: Transform + pos: -5.531189,-0.5098915 + parent: 5693 + - uid: 5757 + components: + - type: Transform + pos: -3.4560547,-0.524498 + parent: 5693 + - uid: 5758 + components: + - type: Transform + pos: -3.48526,-1.5907097 + parent: 5693 + - uid: 5759 + components: + - type: Transform + pos: -1.6293335,-2.510868 + parent: 5693 + - uid: 5760 + components: + - type: Transform + pos: -0.6502075,-1.488472 + parent: 5693 + - uid: 5761 + components: + - type: Transform + pos: -0.6502075,-0.49528885 + parent: 5693 + - uid: 5762 + components: + - type: Transform + pos: 0.59198,1.5116081 + parent: 5693 + - uid: 5763 + components: + - type: Transform + pos: 0.56274414,2.5924263 + parent: 5693 + - uid: 5764 + components: + - type: Transform + pos: -0.43099976,2.6654549 + parent: 5693 + - uid: 5765 + components: + - type: Transform + pos: -0.46020508,3.5856133 + parent: 5693 + - uid: 5766 + components: + - type: Transform + pos: -2.4769287,3.4979782 + parent: 5693 + - uid: 5767 + components: + - type: Transform + pos: -2.4476929,4.374317 + parent: 5693 + - uid: 5768 + components: + - type: Transform + pos: -3.5437317,4.5203743 + parent: 5693 + - uid: 5769 + components: + - type: Transform + pos: -4.552063,3.4395561 + parent: 5693 +- proto: OrganHumanAppendix + entities: + - uid: 5770 + components: + - type: Transform + pos: 5.3056335,-2.4749985 + parent: 5693 +- proto: OrganHumanBrain + entities: + - uid: 5771 + components: + - type: Transform + pos: 4.4421387,3.5876007 + parent: 5693 +- proto: OrganHumanEars + entities: + - uid: 5772 + components: + - type: Transform + pos: 5.35437,3.6763496 + parent: 5693 +- proto: OrganHumanEyes + entities: + - uid: 5773 + components: + - type: Transform + pos: 6.4201355,0.6806221 + parent: 5693 +- proto: OrganHumanHeart + entities: + - uid: 5774 + components: + - type: Transform + pos: 7.443207,3.4999657 + parent: 5693 +- proto: OrganHumanKidneys + entities: + - uid: 5775 + components: + - type: Transform + pos: 6.2019653,-2.4749985 + parent: 5693 +- proto: OrganHumanLiver + entities: + - uid: 5776 + components: + - type: Transform + pos: 4.545746,-2.4652634 + parent: 5693 +- proto: OrganHumanLungs + entities: + - uid: 5777 + components: + - type: Transform + pos: 6.4768066,3.6068306 + parent: 5693 +- proto: OrganHumanStomach + entities: + - uid: 5778 + components: + - type: Transform + pos: 7.2194824,-2.471344 + parent: 5693 +- proto: OrganHumanTongue + entities: + - uid: 5779 + components: + - type: Transform + pos: 6.363434,0.45703125 + parent: 5693 +- proto: PuddleWatermelon + entities: + - uid: 5780 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 5693 + - uid: 5781 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 5693 + - uid: 5782 + components: + - type: Transform + pos: 3.5,0.5 + parent: 5693 + - uid: 5783 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 5693 + - uid: 5784 + components: + - type: Transform + pos: 4.5,0.5 + parent: 5693 + - uid: 5785 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 5693 + - uid: 5786 + components: + - type: Transform + pos: 5.5,0.5 + parent: 5693 + - uid: 5787 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 5693 + - uid: 5788 + components: + - type: Transform + pos: 6.5,0.5 + parent: 5693 + - uid: 5789 + components: + - type: Transform + pos: 7.5,0.5 + parent: 5693 + - uid: 5790 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 5693 + - uid: 5791 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 5693 + - uid: 5792 + components: + - type: Transform + pos: 6.5,1.5 + parent: 5693 + - uid: 5793 + components: + - type: Transform + pos: 5.5,1.5 + parent: 5693 + - uid: 5794 + components: + - type: Transform + pos: 4.5,1.5 + parent: 5693 + - uid: 5795 + components: + - type: Transform + pos: 4.5,2.5 + parent: 5693 +- proto: SpawnMobButterfly + entities: + - uid: 5796 + components: + - type: Transform + pos: -5.5,4.5 + parent: 5693 + - uid: 5797 + components: + - type: Transform + pos: -2.5,7.5 + parent: 5693 + - uid: 5798 + components: + - type: Transform + pos: -0.5,6.5 + parent: 5693 + - uid: 5799 + components: + - type: Transform + pos: -1.5,4.5 + parent: 5693 + - uid: 5800 + components: + - type: Transform + pos: 1.5,3.5 + parent: 5693 + - uid: 5801 + components: + - type: Transform + pos: 3.5,6.5 + parent: 5693 + - uid: 5802 + components: + - type: Transform + pos: 8.5,2.5 + parent: 5693 + - uid: 5803 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 5693 + - uid: 5804 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 5693 + - uid: 5805 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 5693 + - uid: 5806 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 5693 + - uid: 5807 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 5693 + - uid: 5808 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 5693 + - uid: 5809 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 5693 +- proto: TableFancyRed + entities: + - uid: 5810 + components: + - type: Transform + pos: 6.5,0.5 + parent: 5693 +- proto: TableWood + entities: + - uid: 5811 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 5693 + - uid: 5812 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 5693 + - uid: 5813 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 5693 + - uid: 5814 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 5693 + - uid: 5815 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 5693 + - uid: 5816 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 5693 + - uid: 5817 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 5693 + - uid: 5818 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 5693 + - uid: 5819 + components: + - type: Transform + pos: 4.5,3.5 + parent: 5693 + - uid: 5820 + components: + - type: Transform + pos: 5.5,3.5 + parent: 5693 + - uid: 5821 + components: + - type: Transform + pos: 6.5,3.5 + parent: 5693 + - uid: 5822 + components: + - type: Transform + pos: 7.5,3.5 + parent: 5693 + - uid: 5823 + components: + - type: Transform + pos: -0.5,8.5 + parent: 5693 + - uid: 5824 + components: + - type: Transform + pos: 1.5,8.5 + parent: 5693 + - uid: 5825 + components: + - type: Transform + pos: -0.5,11.5 + parent: 5693 + - uid: 5826 + components: + - type: Transform + pos: 0.5,11.5 + parent: 5693 + - uid: 5827 + components: + - type: Transform + pos: 1.5,11.5 + parent: 5693 + - uid: 5828 + components: + - type: Transform + pos: 1.5,12.5 + parent: 5693 + - uid: 5829 + components: + - type: Transform + pos: 1.5,13.5 + parent: 5693 + - uid: 5830 + components: + - type: Transform + pos: 0.5,13.5 + parent: 5693 + - uid: 5831 + components: + - type: Transform + pos: -0.5,13.5 + parent: 5693 + - uid: 5832 + components: + - type: Transform + pos: -0.5,12.5 + parent: 5693 +- proto: WallCult + entities: + - uid: 5833 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 5693 + - uid: 5834 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 5693 + - uid: 5835 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 5693 + - uid: 5836 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 5693 + - uid: 5837 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 5693 + - uid: 5838 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 5693 + - uid: 5839 + components: + - type: Transform + pos: -8.5,1.5 + parent: 5693 + - uid: 5840 + components: + - type: Transform + pos: -8.5,2.5 + parent: 5693 + - uid: 5841 + components: + - type: Transform + pos: -8.5,3.5 + parent: 5693 + - uid: 5842 + components: + - type: Transform + pos: -8.5,4.5 + parent: 5693 + - uid: 5843 + components: + - type: Transform + pos: -7.5,4.5 + parent: 5693 + - uid: 5844 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 5693 + - uid: 5845 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 5693 + - uid: 5846 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 5693 + - uid: 5847 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 5693 + - uid: 5848 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 5693 + - uid: 5849 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 5693 + - uid: 5850 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 5693 + - uid: 5851 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 5693 + - uid: 5852 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 5693 + - uid: 5853 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 5693 + - uid: 5854 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 5693 + - uid: 5855 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 5693 + - uid: 5856 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 5693 + - uid: 5857 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 5693 + - uid: 5858 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 5693 + - uid: 5859 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 5693 + - uid: 5860 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 5693 + - uid: 5861 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 5693 + - uid: 5862 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 5693 + - uid: 5863 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 5693 + - uid: 5864 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 5693 + - uid: 5865 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 5693 + - uid: 5866 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 5693 + - uid: 5867 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 5693 + - uid: 5868 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 5693 + - uid: 5869 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 5693 + - uid: 5870 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 5693 + - uid: 5871 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 5693 + - uid: 5872 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 5693 + - uid: 5873 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 5693 + - uid: 5874 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 5693 + - uid: 5875 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 5693 + - uid: 5876 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 5693 + - uid: 5877 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 5693 + - uid: 5878 + components: + - type: Transform + pos: 9.5,0.5 + parent: 5693 + - uid: 5879 + components: + - type: Transform + pos: 9.5,1.5 + parent: 5693 + - uid: 5880 + components: + - type: Transform + pos: 9.5,2.5 + parent: 5693 + - uid: 5881 + components: + - type: Transform + pos: 9.5,3.5 + parent: 5693 + - uid: 5882 + components: + - type: Transform + pos: 9.5,4.5 + parent: 5693 + - uid: 5883 + components: + - type: Transform + pos: 3.5,3.5 + parent: 5693 + - uid: 5884 + components: + - type: Transform + pos: 4.5,4.5 + parent: 5693 + - uid: 5885 + components: + - type: Transform + pos: 5.5,4.5 + parent: 5693 + - uid: 5886 + components: + - type: Transform + pos: 6.5,4.5 + parent: 5693 + - uid: 5887 + components: + - type: Transform + pos: 7.5,4.5 + parent: 5693 + - uid: 5888 + components: + - type: Transform + pos: 8.5,4.5 + parent: 5693 + - uid: 5889 + components: + - type: Transform + pos: 4.5,9.5 + parent: 5693 + - uid: 5890 + components: + - type: Transform + pos: 3.5,9.5 + parent: 5693 + - uid: 5891 + components: + - type: Transform + pos: 2.5,9.5 + parent: 5693 + - uid: 5892 + components: + - type: Transform + pos: 1.5,9.5 + parent: 5693 + - uid: 5893 + components: + - type: Transform + pos: -0.5,9.5 + parent: 5693 + - uid: 5894 + components: + - type: Transform + pos: -1.5,9.5 + parent: 5693 + - uid: 5895 + components: + - type: Transform + pos: -2.5,9.5 + parent: 5693 + - uid: 5896 + components: + - type: Transform + pos: -3.5,9.5 + parent: 5693 + - uid: 5897 + components: + - type: Transform + pos: 4.5,8.5 + parent: 5693 + - uid: 5898 + components: + - type: Transform + pos: 5.5,8.5 + parent: 5693 + - uid: 5899 + components: + - type: Transform + pos: 6.5,8.5 + parent: 5693 + - uid: 5900 + components: + - type: Transform + pos: 6.5,7.5 + parent: 5693 + - uid: 5901 + components: + - type: Transform + pos: 7.5,7.5 + parent: 5693 + - uid: 5902 + components: + - type: Transform + pos: 7.5,6.5 + parent: 5693 + - uid: 5903 + components: + - type: Transform + pos: 8.5,6.5 + parent: 5693 + - uid: 5904 + components: + - type: Transform + pos: 8.5,5.5 + parent: 5693 + - uid: 5905 + components: + - type: Transform + pos: -7.5,5.5 + parent: 5693 + - uid: 5906 + components: + - type: Transform + pos: -7.5,6.5 + parent: 5693 + - uid: 5907 + components: + - type: Transform + pos: -6.5,6.5 + parent: 5693 + - uid: 5908 + components: + - type: Transform + pos: -6.5,7.5 + parent: 5693 + - uid: 5909 + components: + - type: Transform + pos: -5.5,7.5 + parent: 5693 + - uid: 5910 + components: + - type: Transform + pos: -5.5,8.5 + parent: 5693 + - uid: 5911 + components: + - type: Transform + pos: -4.5,8.5 + parent: 5693 + - uid: 5912 + components: + - type: Transform + pos: -3.5,8.5 + parent: 5693 + - uid: 5913 + components: + - type: Transform + pos: -3.5,10.5 + parent: 5693 + - uid: 5914 + components: + - type: Transform + pos: -3.5,11.5 + parent: 5693 + - uid: 5915 + components: + - type: Transform + pos: -3.5,12.5 + parent: 5693 + - uid: 5916 + components: + - type: Transform + pos: -3.5,13.5 + parent: 5693 + - uid: 5917 + components: + - type: Transform + pos: -3.5,14.5 + parent: 5693 + - uid: 5918 + components: + - type: Transform + pos: 4.5,10.5 + parent: 5693 + - uid: 5919 + components: + - type: Transform + pos: 4.5,11.5 + parent: 5693 + - uid: 5920 + components: + - type: Transform + pos: 4.5,12.5 + parent: 5693 + - uid: 5921 + components: + - type: Transform + pos: 4.5,13.5 + parent: 5693 + - uid: 5922 + components: + - type: Transform + pos: 4.5,14.5 + parent: 5693 + - uid: 5923 + components: + - type: Transform + pos: -2.5,15.5 + parent: 5693 + - uid: 5924 + components: + - type: Transform + pos: -1.5,15.5 + parent: 5693 + - uid: 5925 + components: + - type: Transform + pos: -0.5,15.5 + parent: 5693 + - uid: 5926 + components: + - type: Transform + pos: 1.5,15.5 + parent: 5693 + - uid: 5927 + components: + - type: Transform + pos: 2.5,15.5 + parent: 5693 + - uid: 5928 + components: + - type: Transform + pos: 3.5,15.5 + parent: 5693 +- proto: WallRockBasalt + entities: + - uid: 5929 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 5693 + - uid: 5930 + components: + - type: Transform + pos: -5.5,0.5 + parent: 5693 + - uid: 5931 + components: + - type: Transform + pos: -5.5,1.5 + parent: 5693 + - uid: 5932 + components: + - type: Transform + pos: -4.5,0.5 + parent: 5693 + - uid: 5933 + components: + - type: Transform + pos: -4.5,1.5 + parent: 5693 + - uid: 5934 + components: + - type: Transform + pos: -3.5,0.5 + parent: 5693 + - uid: 5935 + components: + - type: Transform + pos: -3.5,1.5 + parent: 5693 + - uid: 5936 + components: + - type: Transform + pos: -2.5,0.5 + parent: 5693 + - uid: 5937 + components: + - type: Transform + pos: -2.5,1.5 + parent: 5693 + - uid: 5938 + components: + - type: Transform + pos: -1.5,0.5 + parent: 5693 + - uid: 5939 + components: + - type: Transform + pos: -1.5,1.5 + parent: 5693 + - uid: 5940 + components: + - type: Transform + pos: -0.5,0.5 + parent: 5693 + - uid: 5941 + components: + - type: Transform + pos: -0.5,1.5 + parent: 5693 + - uid: 5942 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 5693 + - uid: 5943 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 5693 + - uid: 5944 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 5693 + - uid: 5945 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 5693 + - uid: 5946 + components: + - type: Transform + pos: -4.5,2.5 + parent: 5693 + - uid: 5947 + components: + - type: Transform + pos: -3.5,2.5 + parent: 5693 + - uid: 5948 + components: + - type: Transform + pos: -2.5,2.5 + parent: 5693 + - uid: 5949 + components: + - type: Transform + pos: -1.5,2.5 + parent: 5693 + - uid: 5950 + components: + - type: Transform + pos: -3.5,3.5 + parent: 5693 + - uid: 5951 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 5693 + - uid: 5952 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 5693 + - uid: 5953 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 5693 + - uid: 5954 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 5693 + - uid: 5955 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 5693 + - uid: 5956 + components: + - type: Transform + pos: -10.5,0.5 + parent: 5693 + - uid: 5957 + components: + - type: Transform + pos: -10.5,1.5 + parent: 5693 + - uid: 5958 + components: + - type: Transform + pos: -10.5,2.5 + parent: 5693 + - uid: 5959 + components: + - type: Transform + pos: -10.5,3.5 + parent: 5693 + - uid: 5960 + components: + - type: Transform + pos: -10.5,4.5 + parent: 5693 + - uid: 5961 + components: + - type: Transform + pos: -10.5,5.5 + parent: 5693 + - uid: 5962 + components: + - type: Transform + pos: -10.5,6.5 + parent: 5693 + - uid: 5963 + components: + - type: Transform + pos: -10.5,7.5 + parent: 5693 + - uid: 5964 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 5693 + - uid: 5965 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 5693 + - uid: 5966 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 5693 + - uid: 5967 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 5693 + - uid: 5968 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 5693 + - uid: 5969 + components: + - type: Transform + pos: -9.5,0.5 + parent: 5693 + - uid: 5970 + components: + - type: Transform + pos: -9.5,1.5 + parent: 5693 + - uid: 5971 + components: + - type: Transform + pos: -9.5,2.5 + parent: 5693 + - uid: 5972 + components: + - type: Transform + pos: -9.5,3.5 + parent: 5693 + - uid: 5973 + components: + - type: Transform + pos: -9.5,4.5 + parent: 5693 + - uid: 5974 + components: + - type: Transform + pos: -9.5,5.5 + parent: 5693 + - uid: 5975 + components: + - type: Transform + pos: -9.5,6.5 + parent: 5693 + - uid: 5976 + components: + - type: Transform + pos: -9.5,7.5 + parent: 5693 + - uid: 5977 + components: + - type: Transform + pos: -11.5,6.5 + parent: 5693 + - uid: 5978 + components: + - type: Transform + pos: -11.5,5.5 + parent: 5693 + - uid: 5979 + components: + - type: Transform + pos: -11.5,4.5 + parent: 5693 + - uid: 5980 + components: + - type: Transform + pos: -11.5,3.5 + parent: 5693 + - uid: 5981 + components: + - type: Transform + pos: -11.5,2.5 + parent: 5693 + - uid: 5982 + components: + - type: Transform + pos: -11.5,1.5 + parent: 5693 + - uid: 5983 + components: + - type: Transform + pos: -11.5,0.5 + parent: 5693 + - uid: 5984 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 5693 + - uid: 5985 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 5693 + - uid: 5986 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 5693 + - uid: 5987 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 5693 + - uid: 5988 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 5693 + - uid: 5989 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 5693 + - uid: 5990 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 5693 + - uid: 5991 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 5693 + - uid: 5992 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 5693 + - uid: 5993 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 5693 + - uid: 5994 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 5693 + - uid: 5995 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 5693 + - uid: 5996 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 5693 + - uid: 5997 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 5693 + - uid: 5998 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 5693 + - uid: 5999 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 5693 + - uid: 6000 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 5693 + - uid: 6001 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 5693 + - uid: 6002 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 5693 + - uid: 6003 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 5693 + - uid: 6004 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 5693 + - uid: 6005 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 5693 + - uid: 6006 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 5693 + - uid: 6007 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 5693 + - uid: 6008 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 5693 + - uid: 6009 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 5693 + - uid: 6010 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 5693 + - uid: 6011 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 5693 + - uid: 6012 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 5693 + - uid: 6013 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 5693 + - uid: 6014 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 5693 + - uid: 6015 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 5693 + - uid: 6016 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 5693 + - uid: 6017 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 5693 + - uid: 6018 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 5693 + - uid: 6019 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 5693 + - uid: 6020 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 5693 + - uid: 6021 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 5693 + - uid: 6022 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 5693 + - uid: 6023 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 5693 + - uid: 6024 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 5693 + - uid: 6025 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 5693 + - uid: 6026 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 5693 + - uid: 6027 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 5693 + - uid: 6028 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 5693 + - uid: 6029 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 5693 + - uid: 6030 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 5693 + - uid: 6031 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 5693 + - uid: 6032 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 5693 + - uid: 6033 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 5693 + - uid: 6034 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 5693 + - uid: 6035 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 5693 + - uid: 6036 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 5693 + - uid: 6037 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 5693 + - uid: 6038 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 5693 + - uid: 6039 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 5693 + - uid: 6040 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 5693 + - uid: 6041 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 5693 + - uid: 6042 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 5693 + - uid: 6043 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 5693 + - uid: 6044 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 5693 + - uid: 6045 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 5693 + - uid: 6046 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 5693 + - uid: 6047 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 5693 + - uid: 6048 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 5693 + - uid: 6049 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 5693 + - uid: 6050 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 5693 + - uid: 6051 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 5693 + - uid: 6052 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 5693 + - uid: 6053 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 5693 + - uid: 6054 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 5693 + - uid: 6055 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 5693 + - uid: 6056 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 5693 + - uid: 6057 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 5693 + - uid: 6058 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 5693 + - uid: 6059 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 5693 + - uid: 6060 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 5693 + - uid: 6061 + components: + - type: Transform + pos: 10.5,0.5 + parent: 5693 + - uid: 6062 + components: + - type: Transform + pos: 10.5,1.5 + parent: 5693 + - uid: 6063 + components: + - type: Transform + pos: 10.5,2.5 + parent: 5693 + - uid: 6064 + components: + - type: Transform + pos: 10.5,3.5 + parent: 5693 + - uid: 6065 + components: + - type: Transform + pos: 10.5,4.5 + parent: 5693 + - uid: 6066 + components: + - type: Transform + pos: 10.5,5.5 + parent: 5693 + - uid: 6067 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 5693 + - uid: 6068 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 5693 + - uid: 6069 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 5693 + - uid: 6070 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 5693 + - uid: 6071 + components: + - type: Transform + pos: 11.5,0.5 + parent: 5693 + - uid: 6072 + components: + - type: Transform + pos: 11.5,1.5 + parent: 5693 + - uid: 6073 + components: + - type: Transform + pos: 11.5,2.5 + parent: 5693 + - uid: 6074 + components: + - type: Transform + pos: 11.5,3.5 + parent: 5693 + - uid: 6075 + components: + - type: Transform + pos: 11.5,4.5 + parent: 5693 + - uid: 6076 + components: + - type: Transform + pos: 11.5,5.5 + parent: 5693 + - uid: 6077 + components: + - type: Transform + pos: 12.5,3.5 + parent: 5693 + - uid: 6078 + components: + - type: Transform + pos: 12.5,2.5 + parent: 5693 + - uid: 6079 + components: + - type: Transform + pos: 12.5,1.5 + parent: 5693 + - uid: 6080 + components: + - type: Transform + pos: 12.5,0.5 + parent: 5693 + - uid: 6081 + components: + - type: Transform + pos: 9.5,5.5 + parent: 5693 + - uid: 6082 + components: + - type: Transform + pos: 9.5,6.5 + parent: 5693 + - uid: 6083 + components: + - type: Transform + pos: 9.5,7.5 + parent: 5693 + - uid: 6084 + components: + - type: Transform + pos: 8.5,7.5 + parent: 5693 + - uid: 6085 + components: + - type: Transform + pos: 8.5,8.5 + parent: 5693 + - uid: 6086 + components: + - type: Transform + pos: 7.5,8.5 + parent: 5693 + - uid: 6087 + components: + - type: Transform + pos: 7.5,9.5 + parent: 5693 + - uid: 6088 + components: + - type: Transform + pos: 7.5,10.5 + parent: 5693 + - uid: 6089 + components: + - type: Transform + pos: 5.5,9.5 + parent: 5693 + - uid: 6090 + components: + - type: Transform + pos: 5.5,10.5 + parent: 5693 + - uid: 6091 + components: + - type: Transform + pos: 5.5,11.5 + parent: 5693 + - uid: 6092 + components: + - type: Transform + pos: 5.5,12.5 + parent: 5693 + - uid: 6093 + components: + - type: Transform + pos: 6.5,9.5 + parent: 5693 + - uid: 6094 + components: + - type: Transform + pos: 6.5,10.5 + parent: 5693 + - uid: 6095 + components: + - type: Transform + pos: 6.5,11.5 + parent: 5693 + - uid: 6096 + components: + - type: Transform + pos: 6.5,12.5 + parent: 5693 + - uid: 6097 + components: + - type: Transform + pos: 5.5,13.5 + parent: 5693 + - uid: 6098 + components: + - type: Transform + pos: 5.5,14.5 + parent: 5693 + - uid: 6099 + components: + - type: Transform + pos: 5.5,15.5 + parent: 5693 + - uid: 6100 + components: + - type: Transform + pos: 5.5,16.5 + parent: 5693 + - uid: 6101 + components: + - type: Transform + pos: 6.5,14.5 + parent: 5693 + - uid: 6102 + components: + - type: Transform + pos: 6.5,15.5 + parent: 5693 + - uid: 6103 + components: + - type: Transform + pos: 6.5,16.5 + parent: 5693 + - uid: 6104 + components: + - type: Transform + pos: 4.5,15.5 + parent: 5693 + - uid: 6105 + components: + - type: Transform + pos: 4.5,16.5 + parent: 5693 + - uid: 6106 + components: + - type: Transform + pos: 5.5,17.5 + parent: 5693 + - uid: 6107 + components: + - type: Transform + pos: 4.5,17.5 + parent: 5693 + - uid: 6108 + components: + - type: Transform + pos: 1.5,18.5 + parent: 5693 + - uid: 6109 + components: + - type: Transform + pos: 1.5,17.5 + parent: 5693 + - uid: 6110 + components: + - type: Transform + pos: 1.5,16.5 + parent: 5693 + - uid: 6111 + components: + - type: Transform + pos: 2.5,18.5 + parent: 5693 + - uid: 6112 + components: + - type: Transform + pos: 2.5,17.5 + parent: 5693 + - uid: 6113 + components: + - type: Transform + pos: 2.5,16.5 + parent: 5693 + - uid: 6114 + components: + - type: Transform + pos: 3.5,18.5 + parent: 5693 + - uid: 6115 + components: + - type: Transform + pos: 3.5,17.5 + parent: 5693 + - uid: 6116 + components: + - type: Transform + pos: 3.5,16.5 + parent: 5693 + - uid: 6117 + components: + - type: Transform + pos: 2.5,19.5 + parent: 5693 + - uid: 6118 + components: + - type: Transform + pos: 3.5,19.5 + parent: 5693 + - uid: 6119 + components: + - type: Transform + pos: 4.5,18.5 + parent: 5693 + - uid: 6120 + components: + - type: Transform + pos: -4.5,18.5 + parent: 5693 + - uid: 6121 + components: + - type: Transform + pos: -4.5,17.5 + parent: 5693 + - uid: 6122 + components: + - type: Transform + pos: -4.5,16.5 + parent: 5693 + - uid: 6123 + components: + - type: Transform + pos: -3.5,18.5 + parent: 5693 + - uid: 6124 + components: + - type: Transform + pos: -3.5,17.5 + parent: 5693 + - uid: 6125 + components: + - type: Transform + pos: -3.5,16.5 + parent: 5693 + - uid: 6126 + components: + - type: Transform + pos: -2.5,18.5 + parent: 5693 + - uid: 6127 + components: + - type: Transform + pos: -2.5,17.5 + parent: 5693 + - uid: 6128 + components: + - type: Transform + pos: -2.5,16.5 + parent: 5693 + - uid: 6129 + components: + - type: Transform + pos: -1.5,18.5 + parent: 5693 + - uid: 6130 + components: + - type: Transform + pos: -1.5,17.5 + parent: 5693 + - uid: 6131 + components: + - type: Transform + pos: -1.5,16.5 + parent: 5693 + - uid: 6132 + components: + - type: Transform + pos: -0.5,18.5 + parent: 5693 + - uid: 6133 + components: + - type: Transform + pos: -0.5,17.5 + parent: 5693 + - uid: 6134 + components: + - type: Transform + pos: -0.5,16.5 + parent: 5693 + - uid: 6135 + components: + - type: Transform + pos: 0.5,16.5 + parent: 5693 + - uid: 6136 + components: + - type: Transform + pos: 0.5,17.5 + parent: 5693 + - uid: 6137 + components: + - type: Transform + pos: -1.5,19.5 + parent: 5693 + - uid: 6138 + components: + - type: Transform + pos: -2.5,19.5 + parent: 5693 + - uid: 6139 + components: + - type: Transform + pos: -3.5,19.5 + parent: 5693 + - uid: 6140 + components: + - type: Transform + pos: -5.5,17.5 + parent: 5693 + - uid: 6141 + components: + - type: Transform + pos: -8.5,10.5 + parent: 5693 + - uid: 6142 + components: + - type: Transform + pos: -8.5,9.5 + parent: 5693 + - uid: 6143 + components: + - type: Transform + pos: -8.5,8.5 + parent: 5693 + - uid: 6144 + components: + - type: Transform + pos: -7.5,10.5 + parent: 5693 + - uid: 6145 + components: + - type: Transform + pos: -7.5,9.5 + parent: 5693 + - uid: 6146 + components: + - type: Transform + pos: -7.5,8.5 + parent: 5693 + - uid: 6147 + components: + - type: Transform + pos: -6.5,10.5 + parent: 5693 + - uid: 6148 + components: + - type: Transform + pos: -6.5,9.5 + parent: 5693 + - uid: 6149 + components: + - type: Transform + pos: -6.5,8.5 + parent: 5693 + - uid: 6150 + components: + - type: Transform + pos: -8.5,6.5 + parent: 5693 + - uid: 6151 + components: + - type: Transform + pos: -8.5,7.5 + parent: 5693 + - uid: 6152 + components: + - type: Transform + pos: -8.5,5.5 + parent: 5693 + - uid: 6153 + components: + - type: Transform + pos: -7.5,7.5 + parent: 5693 + - uid: 6154 + components: + - type: Transform + pos: -9.5,8.5 + parent: 5693 + - uid: 6155 + components: + - type: Transform + pos: -9.5,9.5 + parent: 5693 + - uid: 6156 + components: + - type: Transform + pos: -7.5,11.5 + parent: 5693 + - uid: 6157 + components: + - type: Transform + pos: -6.5,11.5 + parent: 5693 + - uid: 6158 + components: + - type: Transform + pos: -5.5,11.5 + parent: 5693 + - uid: 6159 + components: + - type: Transform + pos: -5.5,14.5 + parent: 5693 + - uid: 6160 + components: + - type: Transform + pos: -5.5,13.5 + parent: 5693 + - uid: 6161 + components: + - type: Transform + pos: -5.5,12.5 + parent: 5693 + - uid: 6162 + components: + - type: Transform + pos: -5.5,10.5 + parent: 5693 + - uid: 6163 + components: + - type: Transform + pos: -5.5,9.5 + parent: 5693 + - uid: 6164 + components: + - type: Transform + pos: -4.5,9.5 + parent: 5693 + - uid: 6165 + components: + - type: Transform + pos: -4.5,10.5 + parent: 5693 + - uid: 6166 + components: + - type: Transform + pos: -4.5,11.5 + parent: 5693 + - uid: 6167 + components: + - type: Transform + pos: -4.5,12.5 + parent: 5693 + - uid: 6168 + components: + - type: Transform + pos: -4.5,13.5 + parent: 5693 + - uid: 6169 + components: + - type: Transform + pos: -4.5,14.5 + parent: 5693 + - uid: 6170 + components: + - type: Transform + pos: -4.5,15.5 + parent: 5693 + - uid: 6171 + components: + - type: Transform + pos: -3.5,15.5 + parent: 5693 +- proto: WarpPoint + entities: + - uid: 6172 + components: + - type: Transform + pos: 0.5,0.5 + parent: 5693 + - type: WarpPoint + location: Бабочки +- proto: WoodenBench + entities: + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 5693 + - uid: 6174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 5693 + - uid: 6175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 5693 + - uid: 6176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 5693 + - uid: 6177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 5693 + - uid: 6178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 5693 + - uid: 6179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 5693 + - uid: 6180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 5693 + - uid: 6181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 5693 + - uid: 6182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 5693 + - uid: 6183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 5693 + - uid: 6184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 5693 + - uid: 6185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 5693 + - uid: 6186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 5693 + - uid: 6187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 5693 + - uid: 6188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 5693 + - uid: 6189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 5693 + - uid: 6190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 5693 + - uid: 6191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 5693 + - uid: 6192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 5693 + - uid: 6193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 5693 + - uid: 6194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 5693 + - uid: 6195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 5693 +... diff --git a/Resources/Maps/_Wega/Lavaland/capsule.yml b/Resources/Maps/_Wega/Lavaland/capsule.yml new file mode 100644 index 00000000000..0a775e55731 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/capsule.yml @@ -0,0 +1,557 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/27/2026 17:12:53 + entityCount: 59 +maps: [] +grids: +- 9017 +orphans: +- 9017 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 9017 + components: + - type: MetaData + name: Капсула + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HQAAAAAAAB0AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEAAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAB0AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAHQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 35 + 1: 16 + 2: 1024 + 0,-1: + 0: 12544 + 2: 1024 + -1,0: + 0: 136 + 2: 1024 + -1,-1: + 0: 32768 + 2: 1024 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 20.078888 + Nitrogen: 75.53487 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AdminInstantEffectSmoke3 + entities: + - uid: 1 + components: + - type: Transform + pos: 0.8621869,0.5236107 + parent: 9017 +- proto: AirlockMiningGlassLocked + entities: + - uid: 9019 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 9017 +- proto: APCBasic + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9017 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 9020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 9017 +- proto: Bed + entities: + - uid: 9025 + components: + - type: Transform + pos: 1.5,0.5 + parent: 9017 +- proto: BedsheetSpawner + entities: + - uid: 9026 + components: + - type: Transform + pos: 1.5,0.5 + parent: 9017 +- proto: CableApcExtension + entities: + - uid: 9027 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9017 + - uid: 9028 + components: + - type: Transform + pos: 0.5,1.5 + parent: 9017 + - uid: 9029 + components: + - type: Transform + pos: 0.5,0.5 + parent: 9017 + - uid: 9030 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 9017 + - uid: 9031 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 9017 +- proto: CableHV + entities: + - uid: 5 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9017 + - uid: 6 + components: + - type: Transform + pos: 1.5,1.5 + parent: 9017 + - uid: 7 + components: + - type: Transform + pos: 1.5,0.5 + parent: 9017 + - uid: 8 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9017 +- proto: CableMV + entities: + - uid: 9 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9017 + - uid: 10 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9017 +- proto: ComfyChair + entities: + - uid: 9032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 9017 +- proto: CrateSecure + entities: + - uid: 9033 + components: + - type: Transform + pos: 0.5,1.5 + parent: 9017 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9036 + - 9034 + - 9035 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: d6Dice + entities: + - uid: 9034 + components: + - type: Transform + parent: 9033 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 9033 +- proto: FoodBoxDonkpocket + entities: + - uid: 9035 + components: + - type: Transform + parent: 9033 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 9033 +- proto: GasPassiveVent + entities: + - uid: 9038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 9017 +- proto: GasPipeBend + entities: + - uid: 9039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 9017 +- proto: GasPort + entities: + - uid: 9040 + components: + - type: Transform + pos: -0.5,1.5 + parent: 9017 +- proto: GeneratorWallmountBasic + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9017 +- proto: HandheldGPSBasic + entities: + - uid: 9041 + components: + - type: Transform + pos: 1.5929666,1.6003631 + parent: 9017 +- proto: OxygenCanister + entities: + - uid: 11 + components: + - type: Transform + anchored: True + pos: -0.5,1.5 + parent: 9017 + - type: Physics + bodyType: Static +- proto: PlushieLizard + entities: + - uid: 9042 + components: + - type: Transform + pos: -0.42805517,-0.37603825 + parent: 9017 +- proto: PoweredSmallLight + entities: + - uid: 9043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 9017 +- proto: SignNTMine + entities: + - uid: 9044 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 9017 + - type: Fixtures + fixtures: {} +- proto: SignSurvival + entities: + - uid: 9045 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 9017 + - type: Fixtures + fixtures: {} + - uid: 9046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 9017 + - type: Fixtures + fixtures: {} + - uid: 9047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 9017 + - type: Fixtures + fixtures: {} + - uid: 9049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 9017 + - type: Fixtures + fixtures: {} + - uid: 9050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 9017 + - type: Fixtures + fixtures: {} + - uid: 9051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 9017 + - type: Fixtures + fixtures: {} +- proto: StasisBed + entities: + - uid: 9052 + components: + - type: Transform + pos: -0.5,0.5 + parent: 9017 +- proto: SubstationWallBasic + entities: + - uid: 3 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9017 +- proto: SurvivalKnife + entities: + - uid: 9036 + components: + - type: Transform + parent: 9033 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 9033 +- proto: TableReinforced + entities: + - uid: 9053 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 9017 + - uid: 9054 + components: + - type: Transform + pos: 1.5,1.5 + parent: 9017 +- proto: VendingMachineWallMedicalCivilian + entities: + - uid: 9055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 9017 + - type: Fixtures + fixtures: {} +- proto: WallMining + entities: + - uid: 9056 + components: + - type: Transform + pos: -1.5,1.5 + parent: 9017 + - uid: 9057 + components: + - type: Transform + pos: -1.5,0.5 + parent: 9017 + - uid: 9058 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9017 + - uid: 9059 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 9017 + - uid: 9060 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9017 + - uid: 9061 + components: + - type: Transform + pos: 2.5,1.5 + parent: 9017 + - uid: 9062 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9017 + - uid: 9063 + components: + - type: Transform + pos: -0.5,2.5 + parent: 9017 + - uid: 9064 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9017 + - uid: 9065 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 9017 + - uid: 9066 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 9017 +- proto: WallMiningDiagonal + entities: + - uid: 9067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 9017 + - uid: 9068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 9017 + - uid: 9069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 9017 + - uid: 9070 + components: + - type: Transform + pos: -1.5,2.5 + parent: 9017 +- proto: WarpPoint + entities: + - uid: 9071 + components: + - type: Transform + pos: 0.5,0.5 + parent: 9017 + - type: WarpPoint + location: Капсула +... diff --git a/Resources/Maps/_Wega/Lavaland/cloningconsole.yml b/Resources/Maps/_Wega/Lavaland/cloningconsole.yml new file mode 100644 index 00000000000..3bf8c1128ed --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/cloningconsole.yml @@ -0,0 +1,1029 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/28/2026 11:04:22 + entityCount: 147 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 3: Space + 2: FloorBasalt + 4: FloorSteelPavement + 1: Plating + 0: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.46875,-0.4375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1: -1,-2 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 2: -1,0 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 0: 0,-3 + 4: 0,0 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 9: 3,-4 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 8: 1,-6 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 3: -2,-1 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 5: 1,-4 + 6: 1,2 + 7: 0,1 + - node: + color: '#FFFFFFFF' + id: burnt1 + decals: + 12: 1,2 + 13: 1,1 + 16: 0,-4 + - node: + color: '#FFFFFFFF' + id: burnt2 + decals: + 10: -1,-4 + 15: -2,-4 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 14: -3,-4 + - node: + color: '#FFFFFFFF' + id: burnt4 + decals: + 11: -1,1 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: ExplosionAirtightGrid + - type: RadiationGridResistance +- proto: AirlockShuttle + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 +- proto: BasaltRandom + entities: + - uid: 136 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 140 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: BasaltTwo + entities: + - uid: 139 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 43 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: CloningConsoleComputerCircuitboard + entities: + - uid: 59 + components: + - type: Transform + parent: 58 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 58 +- proto: ComputerBroken + entities: + - uid: 64 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: CrateFunLizardPlushieBulk + entities: + - uid: 57 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: CrateMedicalSecure + entities: + - uid: 58 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 59 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMiningServerMAXFlatpack + entities: + - uid: 145 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: FloraRockSolid + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5151777,-3.4013314 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.49036837,-0.6025543 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 41 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: Grille + entities: + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 15 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: PaperScrap + entities: + - uid: 111 + components: + - type: Transform + pos: -0.24101377,1.7563772 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 5 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: ScrapCanister1 + entities: + - uid: 113 + components: + - type: Transform + pos: -0.74603343,-3.670001 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 107 + components: + - type: Transform + pos: -0.5992398,2.3978777 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 104 + components: + - type: Transform + pos: 1.5144117,-2.7993903 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 103 + components: + - type: Transform + pos: 1.5456617,-3.8462653 + parent: 1 +- proto: ScrapGeneratorFrame + entities: + - uid: 105 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 108 + components: + - type: Transform + pos: -1.2398648,-0.7271224 + parent: 1 +- proto: ScrapJetpack + entities: + - uid: 112 + components: + - type: Transform + pos: 2.1964862,0.40617704 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 106 + components: + - type: Transform + pos: 2.4632602,-2.2114973 + parent: 1 +- proto: ScrapPAI + entities: + - uid: 110 + components: + - type: Transform + pos: 0.94648623,2.4486313 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 102 + components: + - type: Transform + pos: -0.36696148,-5.5934353 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 1.0726352,0.17912757 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 2 + components: + - type: Transform + pos: -0.79945636,4.5498004 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -0.44713163,3.7190042 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -0.15883136,4.7060504 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: ShuttleWindowDiagonal + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: Thruster + entities: + - uid: 10 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 61 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 62 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/cloningpod.yml b/Resources/Maps/_Wega/Lavaland/cloningpod.yml new file mode 100644 index 00000000000..6081a91dc35 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/cloningpod.yml @@ -0,0 +1,1303 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/28/2026 10:41:09 + entityCount: 232 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt + 3: FloorPlastic + 4: FloorWhitePlastic + 2: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.546875,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: ExplosionAirtightGrid + - type: RadiationGridResistance +- proto: AirlockAssemblyHighSec + entities: + - uid: 139 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 +- proto: AirlockAssemblyMedical + entities: + - uid: 45 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 9 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 +- proto: BlastDoorCentralCommand + entities: + - uid: 48 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 +- proto: BlastDoorFrame + entities: + - uid: 134 + components: + - type: Transform + anchored: True + pos: -2.5,-3.5 + parent: 1 + - uid: 135 + components: + - type: Transform + anchored: True + pos: 3.5,-7.5 + parent: 1 +- proto: CloningPod + entities: + - uid: 46 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CrystalCyan + entities: + - uid: 154 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: CrystalGrey + entities: + - uid: 152 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 141 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 +- proto: FloraRockSolid + entities: + - uid: 121 + components: + - type: Transform + pos: -0.48963118,-8.257645 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 0.42256445,1.6172891 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.7591991,-3.5141487 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 6.1040254,-3.2476401 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -5.307804,1.7776022 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 2.5671961,6.886977 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -2.4249914,7.027602 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 6.4318643,1.3791647 + parent: 1 +- proto: Grille + entities: + - uid: 111 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 47 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 138 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 136 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 7 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 +- proto: SalvageFleshSpawner + entities: + - uid: 137 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 143 + components: + - type: Transform + pos: -3.3728373,-4.2015233 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -1.7165873,-4.8421483 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 44 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 48: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} +- proto: WallReinforcedRust + entities: + - uid: 8 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 +- proto: WallSilver + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/crashedsyndiepod.yml b/Resources/Maps/_Wega/Lavaland/crashedsyndiepod.yml new file mode 100644 index 00000000000..9e8cf752c41 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/crashedsyndiepod.yml @@ -0,0 +1,1557 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 13:34:19 + entityCount: 201 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 1: FloorBasalt + 29: FloorDark + 84: FloorShuttleRed + 101: FloorSteelOffset + 104: FloorTechMaint + 120: Lattice + 121: Plating + 2: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + desc: Evacuation pod + name: Evacuation pod + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAABAAAAAAAAAQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB5AAAAAAAAAQAAAAAAAHkAAAAAAAAdAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABlAAAAAAAAZQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABlAAAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFQAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAAAAHkAAAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB5AAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAAAAAEAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAABAAAAAAAAeQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAAGUAAAAAAABlAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,0: + ind: 0,0 + tiles: ZQAAAAAAAGUAAAAAAABlAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAABUAAAAAAAAZQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAVAAAAAACAHkAAAAAAAABAAAAAAAAeQAAAAAAAHkAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAABAAAAAAAAAQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A91409FF' + id: StandClearGreyscale + decals: + 18: 0,-1 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNE + decals: + 15: -2,0 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNW + decals: + 14: 2,0 + - node: + color: '#A91409FF' + id: WarnEndGreyscaleN + decals: + 10: 2,1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleE + decals: + 0: 2,0 + 8: 2,-1 + 17: 5,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleN + decals: + 11: -1,0 + 12: 0,0 + 13: 1,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleS + decals: + 1: 1,-1 + 2: 0,-1 + 3: -1,-1 + 4: -2,-1 + 5: 2,-1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleW + decals: + 6: -2,-1 + 7: -2,0 + 16: -5,0 + - node: + cleanable: True + angle: 0.8726646259971648 rad + color: '#661710FF' + id: footprint + decals: + 24: -1.4343833,3.4467347 + 25: -2.0750084,3.4623597 + 26: -2.1531334,4.0092344 + 27: -2.6843834,4.0873594 + 28: -2.9968834,4.6186094 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#661710FF' + id: shortline + decals: + 23: -1.1062583,4.4311094 + - node: + cleanable: True + color: '#661710FF' + id: splatter + decals: + 19: -0.30938327,-0.22514033 + 20: -0.9031333,5.2436094 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#661710FF' + id: thinline + decals: + 21: -0.7312583,3.2279847 + 22: -0.45000827,4.1498594 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 18432 + -2,0: + 0: 52300 + -1,-1: + 0: 19183 + 1: 16 + 2: 32768 + -1,0: + 0: 65231 + -1,-2: + 0: 57344 + 0,-2: + 0: 61440 + 0,-1: + 0: 31711 + -2,1: + 0: 2252 + -1,1: + 0: 65535 + 0,0: + 0: 64383 + 0,1: + 0: 65535 + 1,-1: + 0: 16897 + 1: 16 + 1,0: + 0: 21575 + 1,1: + 0: 311 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + immutable: True + moles: {} + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 21.6852 + Nitrogen: 81.57766 + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirCanister + entities: + - uid: 193 + components: + - type: Transform + anchored: True + pos: -0.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockShuttleSyndicate + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 4 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: Ash + entities: + - uid: 108 + components: + - type: Transform + pos: -1.6452203,4.883686 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -1.8327203,5.102436 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -1.6764703,5.211811 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 9 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: BasaltFour + entities: + - uid: 97 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: BasaltOne + entities: + - uid: 137 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 99 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: BasaltTwo + entities: + - uid: 121 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 +- proto: Bonfire + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 10 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 33 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 43 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 52 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: Fixtures + fixtures: {} + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: ClosetWallFireFilledRandom + entities: + - uid: 194 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 195 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 98 + components: + - type: Transform + pos: 1.5891547,-0.38193893 + parent: 1 +- proto: ClothingMaskBreath + entities: + - uid: 162 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 101 + components: + - type: Transform + pos: 0.43290472,5.914936 + parent: 1 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 163 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 67 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CrateInternals + entities: + - uid: 59 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + removedMasks: 20 + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: {} + open: True + - type: PlaceableSurface + isPlaceable: True +- proto: CrateSyndicate + entities: + - uid: 92 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True + - type: EntityStorage + removedMasks: 20 + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: {} + open: True +- proto: CyberPen + entities: + - uid: 93 + components: + - type: Transform + pos: -2.507878,5.3934417 + parent: 1 +- proto: FoodMeatCooked + entities: + - uid: 100 + components: + - type: Transform + pos: -1.4733453,5.430561 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 167 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 168 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 166 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPump + entities: + - uid: 169 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 170 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 182 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 183 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: Gauze1 + entities: + - uid: 132 + components: + - type: Transform + pos: -0.33272028,6.508686 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 56 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 57 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 164 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 63 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 103 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 61 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 138 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Paper + entities: + - uid: 95 + components: + - type: Transform + pos: -2.8327203,5.539936 + parent: 1 + - type: Paper + content: >- + Anders isn't going to make it if he doesn't get real help soon. Williams died on impact. i dont have a choice, i need to go find help. + + + if you find this place and Anders is alive, please take him to safety and leave a note telling me where to find you. + + + if he's dead, burn his body. it was part of his religion, i think. +- proto: PlasmaWindowDiagonal + entities: + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 77 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 81 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 50 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 85 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 60 + components: + - type: Transform + pos: -0.10537675,0.8159752 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 51 + components: + - type: Transform + pos: -1.4046504,1.3054738 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -1.4984004,2.6335988 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 0.27665472,5.227436 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -0.54527545,0.6023488 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -1.0609004,3.3835988 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -0.29527545,2.7898488 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 0.93909955,1.2429738 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 1.6394429,2.4148488 + parent: 1 +- proto: SheetPlasteel1 + entities: + - uid: 55 + components: + - type: Transform + pos: 4.6098213,4.477349 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 4.8910713,4.664849 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5961614,4.352349 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -0.42428648,2.1804738 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -2.6430364,2.7585988 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 86 + components: + - type: Transform + pos: -0.68590045,2.6492238 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 0.36097455,1.4773488 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 88 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 102 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 104 + components: + - type: Transform + pos: -2.1572118,-3.752955 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 96 + components: + - type: Transform + pos: -1.739999,-3.3399405 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/dragonlair.yml b/Resources/Maps/_Wega/Lavaland/dragonlair.yml new file mode 100644 index 00000000000..a2ea45c7d4a --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/dragonlair.yml @@ -0,0 +1,1373 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 02/14/2026 12:23:29 + entityCount: 252 +maps: [] +grids: +- 6252 +orphans: +- 6252 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 6252 + components: + - type: MetaData + name: ???? + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: Catwalk + entities: + - uid: 6253 + components: + - type: Transform + pos: -7.5,0.5 + parent: 6252 + - uid: 6254 + components: + - type: Transform + pos: -8.5,0.5 + parent: 6252 + - uid: 6255 + components: + - type: Transform + pos: 9.5,0.5 + parent: 6252 + - uid: 6256 + components: + - type: Transform + pos: 9.5,1.5 + parent: 6252 + - uid: 6257 + components: + - type: Transform + pos: 10.5,1.5 + parent: 6252 +- proto: FloorLavaEntity + entities: + - uid: 6258 + components: + - type: Transform + pos: -10.5,8.5 + parent: 6252 + - uid: 6259 + components: + - type: Transform + pos: -0.5,1.5 + parent: 6252 + - uid: 6260 + components: + - type: Transform + pos: -0.5,0.5 + parent: 6252 + - uid: 6261 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6252 + - uid: 6262 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6252 + - uid: 6263 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6252 + - uid: 6264 + components: + - type: Transform + pos: 1.5,0.5 + parent: 6252 + - uid: 6265 + components: + - type: Transform + pos: -2.5,1.5 + parent: 6252 + - uid: 6266 + components: + - type: Transform + pos: -1.5,0.5 + parent: 6252 + - uid: 6267 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 6252 + - uid: 6268 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 6252 + - uid: 6269 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 6252 + - uid: 6270 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 6252 + - uid: 6271 + components: + - type: Transform + pos: 1.5,1.5 + parent: 6252 + - uid: 6272 + components: + - type: Transform + pos: 2.5,1.5 + parent: 6252 + - uid: 6273 + components: + - type: Transform + pos: 1.5,2.5 + parent: 6252 + - uid: 6274 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 6252 + - uid: 6275 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 6252 + - uid: 6276 + components: + - type: Transform + pos: 3.5,2.5 + parent: 6252 + - uid: 6277 + components: + - type: Transform + pos: -7.5,0.5 + parent: 6252 + - uid: 6278 + components: + - type: Transform + pos: -7.5,1.5 + parent: 6252 + - uid: 6279 + components: + - type: Transform + pos: -7.5,2.5 + parent: 6252 + - uid: 6280 + components: + - type: Transform + pos: -8.5,0.5 + parent: 6252 + - uid: 6281 + components: + - type: Transform + pos: -8.5,1.5 + parent: 6252 + - uid: 6282 + components: + - type: Transform + pos: -8.5,2.5 + parent: 6252 + - uid: 6283 + components: + - type: Transform + pos: -9.5,2.5 + parent: 6252 + - uid: 6284 + components: + - type: Transform + pos: -9.5,3.5 + parent: 6252 + - uid: 6285 + components: + - type: Transform + pos: -8.5,3.5 + parent: 6252 + - uid: 6286 + components: + - type: Transform + pos: -10.5,3.5 + parent: 6252 + - uid: 6287 + components: + - type: Transform + pos: -10.5,5.5 + parent: 6252 + - uid: 6288 + components: + - type: Transform + pos: -10.5,4.5 + parent: 6252 + - uid: 6289 + components: + - type: Transform + pos: -9.5,5.5 + parent: 6252 + - uid: 6290 + components: + - type: Transform + pos: -9.5,4.5 + parent: 6252 + - uid: 6291 + components: + - type: Transform + pos: -10.5,6.5 + parent: 6252 + - uid: 6292 + components: + - type: Transform + pos: -10.5,7.5 + parent: 6252 + - uid: 6293 + components: + - type: Transform + pos: -9.5,7.5 + parent: 6252 + - uid: 6294 + components: + - type: Transform + pos: -8.5,7.5 + parent: 6252 + - uid: 6295 + components: + - type: Transform + pos: -11.5,6.5 + parent: 6252 + - uid: 6296 + components: + - type: Transform + pos: -11.5,7.5 + parent: 6252 + - uid: 6297 + components: + - type: Transform + pos: -9.5,8.5 + parent: 6252 + - uid: 6298 + components: + - type: Transform + pos: -8.5,8.5 + parent: 6252 + - uid: 6299 + components: + - type: Transform + pos: -7.5,8.5 + parent: 6252 + - uid: 6300 + components: + - type: Transform + pos: -9.5,9.5 + parent: 6252 + - uid: 6301 + components: + - type: Transform + pos: -9.5,10.5 + parent: 6252 + - uid: 6302 + components: + - type: Transform + pos: -8.5,9.5 + parent: 6252 + - uid: 6303 + components: + - type: Transform + pos: -8.5,10.5 + parent: 6252 + - uid: 6304 + components: + - type: Transform + pos: -7.5,9.5 + parent: 6252 + - uid: 6305 + components: + - type: Transform + pos: -7.5,10.5 + parent: 6252 + - uid: 6306 + components: + - type: Transform + pos: -6.5,9.5 + parent: 6252 + - uid: 6307 + components: + - type: Transform + pos: -6.5,10.5 + parent: 6252 + - uid: 6308 + components: + - type: Transform + pos: -5.5,9.5 + parent: 6252 + - uid: 6309 + components: + - type: Transform + pos: -5.5,10.5 + parent: 6252 + - uid: 6310 + components: + - type: Transform + pos: -4.5,9.5 + parent: 6252 + - uid: 6311 + components: + - type: Transform + pos: -4.5,10.5 + parent: 6252 + - uid: 6312 + components: + - type: Transform + pos: -3.5,9.5 + parent: 6252 + - uid: 6313 + components: + - type: Transform + pos: -3.5,10.5 + parent: 6252 + - uid: 6314 + components: + - type: Transform + pos: -3.5,8.5 + parent: 6252 + - uid: 6315 + components: + - type: Transform + pos: -2.5,9.5 + parent: 6252 + - uid: 6316 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 6252 + - uid: 6317 + components: + - type: Transform + pos: -1.5,10.5 + parent: 6252 + - uid: 6318 + components: + - type: Transform + pos: -1.5,11.5 + parent: 6252 + - uid: 6319 + components: + - type: Transform + pos: -0.5,10.5 + parent: 6252 + - uid: 6320 + components: + - type: Transform + pos: -0.5,11.5 + parent: 6252 + - uid: 6321 + components: + - type: Transform + pos: 0.5,10.5 + parent: 6252 + - uid: 6322 + components: + - type: Transform + pos: 0.5,11.5 + parent: 6252 + - uid: 6323 + components: + - type: Transform + pos: 1.5,10.5 + parent: 6252 + - uid: 6324 + components: + - type: Transform + pos: 1.5,11.5 + parent: 6252 + - uid: 6325 + components: + - type: Transform + pos: -0.5,12.5 + parent: 6252 + - uid: 6326 + components: + - type: Transform + pos: 0.5,12.5 + parent: 6252 + - uid: 6327 + components: + - type: Transform + pos: 1.5,12.5 + parent: 6252 + - uid: 6328 + components: + - type: Transform + pos: 2.5,12.5 + parent: 6252 + - uid: 6329 + components: + - type: Transform + pos: -2.5,10.5 + parent: 6252 + - uid: 6330 + components: + - type: Transform + pos: -2.5,11.5 + parent: 6252 + - uid: 6331 + components: + - type: Transform + pos: -7.5,11.5 + parent: 6252 + - uid: 6332 + components: + - type: Transform + pos: -6.5,11.5 + parent: 6252 + - uid: 6333 + components: + - type: Transform + pos: -5.5,11.5 + parent: 6252 + - uid: 6334 + components: + - type: Transform + pos: -6.5,12.5 + parent: 6252 + - uid: 6335 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 6252 + - uid: 6336 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 6252 + - uid: 6337 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 6252 + - uid: 6338 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 6252 + - uid: 6339 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 6252 + - uid: 6340 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 6252 + - uid: 6341 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 6252 + - uid: 6342 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 6252 + - uid: 6343 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 6252 + - uid: 6344 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 6252 + - uid: 6345 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 6252 + - uid: 6346 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 6252 + - uid: 6347 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 6252 + - uid: 6348 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 6252 + - uid: 6349 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 6252 + - uid: 6350 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 6252 + - uid: 6351 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 6252 + - uid: 6352 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 6252 + - uid: 6353 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 6252 + - uid: 6354 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 6252 + - uid: 6355 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 6252 + - uid: 6356 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 6252 + - uid: 6357 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 6252 + - uid: 6358 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 6252 + - uid: 6359 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 6252 + - uid: 6360 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 6252 + - uid: 6361 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 6252 + - uid: 6362 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 6252 + - uid: 6363 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 6252 + - uid: 6364 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 6252 + - uid: 6365 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 6252 + - uid: 6366 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 6252 + - uid: 6367 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 6252 + - uid: 6368 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 6252 + - uid: 6369 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 6252 + - uid: 6370 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 6252 + - uid: 6371 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 6252 + - uid: 6372 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 6252 + - uid: 6373 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 6252 + - uid: 6374 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 6252 + - uid: 6375 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 6252 + - uid: 6376 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 6252 + - uid: 6377 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 6252 + - uid: 6378 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 6252 + - uid: 6379 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6252 + - uid: 6380 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 6252 + - uid: 6381 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6252 + - uid: 6382 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6252 + - uid: 6383 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 6252 + - uid: 6384 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 6252 + - uid: 6385 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6252 + - uid: 6386 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 6252 + - uid: 6387 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 6252 + - uid: 6388 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 6252 + - uid: 6389 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 6252 + - uid: 6390 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 6252 + - uid: 6391 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 6252 + - uid: 6392 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 6252 + - uid: 6393 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 6252 + - uid: 6394 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 6252 + - uid: 6395 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 6252 + - uid: 6396 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 6252 + - uid: 6397 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 6252 + - uid: 6398 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 6252 + - uid: 6399 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 6252 + - uid: 6400 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 6252 + - uid: 6401 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 6252 + - uid: 6402 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 6252 + - uid: 6403 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 6252 + - uid: 6404 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 6252 + - uid: 6405 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 6252 + - uid: 6406 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 6252 + - uid: 6407 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 6252 + - uid: 6408 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 6252 + - uid: 6409 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 6252 + - uid: 6410 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 6252 + - uid: 6411 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 6252 + - uid: 6412 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 6252 + - uid: 6413 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 6252 + - uid: 6414 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 6252 + - uid: 6415 + components: + - type: Transform + pos: 12.5,3.5 + parent: 6252 + - uid: 6416 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 6252 + - uid: 6417 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 6252 + - uid: 6418 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 6252 + - uid: 6419 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 6252 + - uid: 6420 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 6252 + - uid: 6421 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 6252 + - uid: 6422 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 6252 + - uid: 6423 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 6252 + - uid: 6424 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 6252 + - uid: 6425 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 6252 + - uid: 6426 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 6252 + - uid: 6427 + components: + - type: Transform + pos: 10.5,0.5 + parent: 6252 + - uid: 6428 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 6252 + - uid: 6429 + components: + - type: Transform + pos: 11.5,0.5 + parent: 6252 + - uid: 6430 + components: + - type: Transform + pos: 9.5,0.5 + parent: 6252 + - uid: 6431 + components: + - type: Transform + pos: 9.5,1.5 + parent: 6252 + - uid: 6432 + components: + - type: Transform + pos: 9.5,2.5 + parent: 6252 + - uid: 6433 + components: + - type: Transform + pos: 10.5,1.5 + parent: 6252 + - uid: 6434 + components: + - type: Transform + pos: 10.5,2.5 + parent: 6252 + - uid: 6435 + components: + - type: Transform + pos: 10.5,3.5 + parent: 6252 + - uid: 6436 + components: + - type: Transform + pos: 11.5,3.5 + parent: 6252 + - uid: 6437 + components: + - type: Transform + pos: 11.5,2.5 + parent: 6252 + - uid: 6438 + components: + - type: Transform + pos: 11.5,4.5 + parent: 6252 + - uid: 6439 + components: + - type: Transform + pos: 11.5,5.5 + parent: 6252 + - uid: 6440 + components: + - type: Transform + pos: 12.5,4.5 + parent: 6252 + - uid: 6441 + components: + - type: Transform + pos: 12.5,5.5 + parent: 6252 + - uid: 6442 + components: + - type: Transform + pos: 2.5,9.5 + parent: 6252 + - uid: 6443 + components: + - type: Transform + pos: 10.5,5.5 + parent: 6252 + - uid: 6444 + components: + - type: Transform + pos: 10.5,6.5 + parent: 6252 + - uid: 6445 + components: + - type: Transform + pos: 10.5,7.5 + parent: 6252 + - uid: 6446 + components: + - type: Transform + pos: 10.5,8.5 + parent: 6252 + - uid: 6447 + components: + - type: Transform + pos: 11.5,6.5 + parent: 6252 + - uid: 6448 + components: + - type: Transform + pos: 11.5,7.5 + parent: 6252 + - uid: 6449 + components: + - type: Transform + pos: 11.5,8.5 + parent: 6252 + - uid: 6450 + components: + - type: Transform + pos: 9.5,8.5 + parent: 6252 + - uid: 6451 + components: + - type: Transform + pos: 9.5,9.5 + parent: 6252 + - uid: 6452 + components: + - type: Transform + pos: 9.5,10.5 + parent: 6252 + - uid: 6453 + components: + - type: Transform + pos: 10.5,9.5 + parent: 6252 + - uid: 6454 + components: + - type: Transform + pos: 10.5,10.5 + parent: 6252 + - uid: 6455 + components: + - type: Transform + pos: 2.5,10.5 + parent: 6252 + - uid: 6456 + components: + - type: Transform + pos: 3.5,9.5 + parent: 6252 + - uid: 6457 + components: + - type: Transform + pos: 3.5,10.5 + parent: 6252 + - uid: 6458 + components: + - type: Transform + pos: 4.5,9.5 + parent: 6252 + - uid: 6459 + components: + - type: Transform + pos: 4.5,10.5 + parent: 6252 + - uid: 6460 + components: + - type: Transform + pos: 5.5,9.5 + parent: 6252 + - uid: 6461 + components: + - type: Transform + pos: 5.5,10.5 + parent: 6252 + - uid: 6462 + components: + - type: Transform + pos: 6.5,9.5 + parent: 6252 + - uid: 6463 + components: + - type: Transform + pos: 6.5,10.5 + parent: 6252 + - uid: 6464 + components: + - type: Transform + pos: 7.5,9.5 + parent: 6252 + - uid: 6465 + components: + - type: Transform + pos: 7.5,10.5 + parent: 6252 + - uid: 6466 + components: + - type: Transform + pos: 8.5,9.5 + parent: 6252 + - uid: 6467 + components: + - type: Transform + pos: 8.5,10.5 + parent: 6252 + - uid: 6468 + components: + - type: Transform + pos: 8.5,11.5 + parent: 6252 + - uid: 6469 + components: + - type: Transform + pos: 6.5,8.5 + parent: 6252 + - uid: 6470 + components: + - type: Transform + pos: 3.5,8.5 + parent: 6252 +- proto: SpawnAshDrakeLavaland + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6252 +- proto: WallNecropolis + entities: + - uid: 6471 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 6252 + - uid: 6472 + components: + - type: Transform + pos: -5.5,1.5 + parent: 6252 + - uid: 6473 + components: + - type: Transform + pos: -7.5,5.5 + parent: 6252 + - uid: 6474 + components: + - type: Transform + pos: -7.5,6.5 + parent: 6252 + - uid: 6475 + components: + - type: Transform + pos: 1.5,8.5 + parent: 6252 + - uid: 6476 + components: + - type: Transform + pos: -4.5,4.5 + parent: 6252 + - uid: 6477 + components: + - type: Transform + pos: -3.5,6.5 + parent: 6252 + - uid: 6478 + components: + - type: Transform + pos: -2.5,7.5 + parent: 6252 + - uid: 6479 + components: + - type: Transform + pos: -2.5,8.5 + parent: 6252 + - uid: 6480 + components: + - type: Transform + pos: -1.5,8.5 + parent: 6252 + - uid: 6481 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6252 + - uid: 6482 + components: + - type: Transform + pos: -0.5,9.5 + parent: 6252 + - uid: 6483 + components: + - type: Transform + pos: 0.5,9.5 + parent: 6252 + - uid: 6484 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6252 + - uid: 6485 + components: + - type: Transform + pos: 2.5,7.5 + parent: 6252 + - uid: 6486 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 6252 + - uid: 6487 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 6252 + - uid: 6488 + components: + - type: Transform + pos: 2.5,8.5 + parent: 6252 + - uid: 6489 + components: + - type: Transform + pos: 3.5,5.5 + parent: 6252 + - uid: 6490 + components: + - type: Transform + pos: 5.5,4.5 + parent: 6252 + - uid: 6491 + components: + - type: Transform + pos: 8.5,7.5 + parent: 6252 + - uid: 6492 + components: + - type: Transform + pos: 7.5,7.5 + parent: 6252 + - uid: 6493 + components: + - type: Transform + pos: 9.5,6.5 + parent: 6252 + - uid: 6494 + components: + - type: Transform + pos: 6.5,0.5 + parent: 6252 + - uid: 6495 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 6252 + - uid: 6496 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 6252 + - uid: 6497 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 6252 + - uid: 6498 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 6252 + - uid: 6499 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 6252 + - uid: 6500 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 6252 + - uid: 6501 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 6252 + - uid: 6502 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 6252 +... diff --git a/Resources/Maps/_Wega/Lavaland/escape_pod_crash.yml b/Resources/Maps/_Wega/Lavaland/escape_pod_crash.yml new file mode 100644 index 00000000000..e28c75aaf66 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/escape_pod_crash.yml @@ -0,0 +1,583 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:40:46 + entityCount: 68 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 3: Space + 2: FloorBasalt + 1: FloorHullReinforced + 0: FloorShuttleBlue + 4: FloorShuttleOrange +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAACAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAEAAQAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 0: 0.30350327,0.4092369 + 2: -0.7902467,-1.9188881 + 3: 0.7722533,-2.887638 + 4: 1.6785033,-1.7157631 + 5: -1.5558717,-0.8407631 + 6: 1.6003783,-0.2626381 + 8: -0.47774673,-2.950138 + 9: 0.33475327,-3.778263 + 10: -0.18087173,-4.918888 + 11: 0.14725327,-5.934513 + 12: -0.055871725,-6.981388 + 13: 0.6003783,-5.481388 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 1: 0,-1 + 7: 0,-2 + - node: + cleanable: True + color: '#571212B2' + id: dot + decals: + 19: -0.41524673,-0.6532631 + 20: 0.30350327,0.2686119 + 21: 0.36600327,-1.0126381 + 22: 2.5222533,-3.700138 + 23: 2.7566283,-3.543888 + 24: 2.8035033,-3.653263 + 25: 2.9128783,-3.793888 + 26: 1.8191283,-4.512638 + 27: 1.7722533,-4.840763 + 28: 1.0378783,-4.231388 + 29: 1.1941283,-4.309513 + 30: 0.28787827,-1.8563881 + 31: 0.42850327,-2.247013 + 32: 0.9441283,-3.028263 + 33: 1.1003783,-3.231388 + 34: 0.42850327,-2.700138 + 35: 0.8503783,-3.481388 + 36: -0.39962173,-1.4813881 + - node: + cleanable: True + angle: 3.5255650890285457 rad + color: '#571212B2' + id: shortline + decals: + 42: 0.069128275,-1.6063881 + - node: + cleanable: True + angle: 4.049163864626845 rad + color: '#571212B2' + id: shortline + decals: + 41: 0.6785033,-3.153263 + - node: + cleanable: True + angle: 4.223696789826278 rad + color: '#571212B2' + id: shortline + decals: + 40: 1.4441283,-3.575138 + - node: + cleanable: True + color: '#571212B2' + id: splatter + decals: + 14: 0.24100327,-0.3251381 + 15: 1.8660033,-3.700138 + - node: + cleanable: True + angle: 0.2617993877991494 rad + color: '#571212B2' + id: splatter + decals: + 17: 2.2410033,-4.278263 + - node: + cleanable: True + angle: 1.2915436464758039 rad + color: '#571212B2' + id: splatter + decals: + 18: -0.35274673,-0.012638092 + - node: + cleanable: True + angle: 3.420845333908886 rad + color: '#571212B2' + id: thinline + decals: + 37: -0.071496725,-2.215763 + - node: + cleanable: True + angle: 3.9793506945470716 rad + color: '#571212B2' + id: thinline + decals: + 38: 0.7878783,-2.778263 + - node: + cleanable: True + angle: 4.223696789826278 rad + color: '#571212B2' + id: thinline + decals: + 39: 0.9597533,-3.731388 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 159 + 0,-1: + 0: 57343 + -1,0: + 0: 2 + -1,-1: + 0: 61164 + 0,-2: + 0: 63280 + -1,-2: + 0: 52352 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: BasaltFive + entities: + - uid: 60 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: BasaltOne + entities: + - uid: 65 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 55 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: BasaltTwo + entities: + - uid: 62 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: EmergencyMedipen + entities: + - uid: 40 + components: + - type: Transform + pos: 3.1915195,-4.0212746 + parent: 1 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 43 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 42 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 28 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 35 + components: + - type: Transform + pos: 0.26585317,-1.6376381 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 39 + components: + - type: Transform + pos: 2.7696445,-1.7868996 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 31 + components: + - type: Transform + pos: -0.2928555,-1.3324811 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.82835317,-0.9970131 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 38 + components: + - type: Transform + pos: 1.6252282,-3.2868996 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 30 + components: + - type: Transform + pos: -0.1209805,-2.9106061 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 2.4727695,0.46439385 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.3709805,-0.55123115 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.2540195,1.6987689 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 51 + components: + - type: Transform + pos: 0.89085317,1.6662254 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 0.31272817,1.3849754 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.79710317,0.85372543 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 44 + components: + - type: Transform + pos: -1.0622718,-1.1462746 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 0.25022817,0.97872543 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.82835317,-0.34939957 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.7814782,-0.39627457 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -0.12477183,-3.9587746 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 0.39085317,-5.7868996 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 1.5783532,-4.6618996 + parent: 1 +- proto: SurvivalMedipen + entities: + - uid: 41 + components: + - type: Transform + pos: 2.0633864,-2.7881908 + parent: 1 +- proto: Thruster + entities: + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/golemsshuttle.yml b/Resources/Maps/_Wega/Lavaland/golemsshuttle.yml new file mode 100644 index 00000000000..399a7657d5f --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/golemsshuttle.yml @@ -0,0 +1,3473 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 14:33:35 + entityCount: 530 +maps: [] +grids: +- 6832 +orphans: +- 6832 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 6832 + components: + - type: MetaData + name: Шаттл свободных големов + - type: Transform + rot: 4.71238898038469 rad + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAwAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEgAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAbAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAGwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAAMAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAADAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAMAAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAwAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#9FED58FF' + id: BotGreyscale + decals: + 8: -3,-9 + 9: -3,-8 + 10: -3,-7 + 11: -5,-7 + 12: -5,-8 + 13: -5,-9 + 14: -8,-10 + 15: -8,-9 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 34: -2,11 + 35: -1,12 + 36: 0,12 + 37: 1,12 + 38: 2,11 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 24: 0,4 + 25: 0,5 + 26: -1,6 + 27: 1,6 + 28: 1,3 + 29: -1,3 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 30: -1,8 + 31: -1,9 + 32: 1,9 + 33: 1,8 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: 3,-3 + 1: 1,-3 + 2: 8,-10 + 3: 8,-9 + 4: -4,2 + 5: -3,3 + - node: + color: '#9FED58FF' + id: DeliveryGreyscale + decals: + 6: -3,-5 + 7: -3,-6 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 39: -2,1 + 40: -1,1 + 41: 0,1 + 42: 1,1 + 43: 2,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 44: -2,-1 + 45: -2,0 + 46: -2,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 47: -2,-1 + 48: -1,-1 + 49: 0,-1 + 50: 1,-1 + 51: 2,-1 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 52: 2,-1 + 53: 2,0 + 54: 2,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 61: 5,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 20: -4,-1 + 21: -4,0 + 22: 5,-1 + 23: 5,0 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 55: 2,-5 + 56: 3,-5 + 57: 4,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 16: 4,-1 + 17: 4,0 + 18: -5,-1 + 19: -5,0 + 58: 5,-8 + 59: 5,-7 + 60: 5,-6 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 47487 + 0,-1: + 0: 61951 + -1,0: + 0: 46031 + 0,1: + 0: 7103 + -1,1: + 0: 3007 + 0,2: + 0: 30719 + -1,2: + 0: 52462 + 0,3: + 0: 55 + -1,3: + 0: 140 + 1,0: + 0: 30471 + 1: 136 + 1,1: + 0: 887 + 1: 9344 + 1,-1: + 0: 28927 + 1: 34816 + -2,0: + 1: 34 + 0: 52236 + -2,-1: + 1: 8720 + 0: 49390 + -2,1: + 1: 33824 + 0: 2252 + -1,-1: + 0: 61631 + 0,-3: + 1: 51 + 0: 33536 + -1,-3: + 1: 136 + 0: 14336 + 0,-2: + 0: 65535 + -1,-2: + 0: 48059 + 1,-3: + 0: 56320 + 1: 12 + 1,-2: + 0: 65527 + 1,-4: + 1: 60416 + 2,-4: + 1: 12544 + 2,-3: + 1: 1 + 0: 4352 + 2,-1: + 1: 16 + 2,-2: + 1: 2 + -3,-4: + 1: 32768 + -2,-4: + 1: 63232 + -2,-3: + 1: 7 + 0: 63232 + -3,-2: + 1: 8 + -2,-2: + 0: 61167 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + immutable: True + temperature: 323.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockMiningGlassLocked + entities: + - uid: 6833 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 6832 + - uid: 6834 + components: + - type: Transform + pos: -2.5,0.5 + parent: 6832 + - uid: 6835 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 6832 + - uid: 6836 + components: + - type: Transform + pos: 3.5,0.5 + parent: 6832 + - uid: 6837 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6832 + - uid: 6838 + components: + - type: Transform + pos: -1.5,4.5 + parent: 6832 + - uid: 6839 + components: + - type: Transform + pos: 2.5,4.5 + parent: 6832 +- proto: AirlockMiningLocked + entities: + - uid: 6840 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 6832 + - uid: 6841 + components: + - type: Transform + pos: -5.5,0.5 + parent: 6832 + - uid: 6842 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 6832 + - uid: 6843 + components: + - type: Transform + pos: 6.5,0.5 + parent: 6832 + - uid: 6844 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6832 + - uid: 6845 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6832 + - uid: 6846 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 6832 + - uid: 6847 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 6832 +- proto: APCBasic + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 17 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 54 + components: + - type: Transform + pos: 1.5,2.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 6832 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 6849 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 6832 + - uid: 6850 + components: + - type: Transform + pos: -5.5,0.5 + parent: 6832 + - uid: 6851 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 6832 + - uid: 6852 + components: + - type: Transform + pos: 6.5,0.5 + parent: 6832 +- proto: BedsheetCosmos + entities: + - uid: 6854 + components: + - type: Transform + pos: 5.5125427,2.747323 + parent: 6832 +- proto: BluespaceBeaker + entities: + - uid: 6855 + components: + - type: Transform + pos: 4.3393097,-8.370478 + parent: 6832 +- proto: BookHowToSurvive + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5859375,9.513672 + parent: 6832 +- proto: BookRandomStory + entities: + - uid: 6856 + components: + - type: Transform + pos: 3.468811,8.763201 + parent: 6832 +- proto: CableApcExtension + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 6832 + - uid: 7 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 6832 + - uid: 8 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 6832 + - uid: 10 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 6832 + - uid: 11 + components: + - type: Transform + pos: 1.5,7.5 + parent: 6832 + - uid: 12 + components: + - type: Transform + pos: -0.5,9.5 + parent: 6832 + - uid: 13 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6832 + - uid: 14 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6832 + - uid: 50 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 6832 + - uid: 51 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 6832 + - uid: 52 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 6832 + - uid: 69 + components: + - type: Transform + pos: 1.5,2.5 + parent: 6832 + - uid: 70 + components: + - type: Transform + pos: 2.5,9.5 + parent: 6832 + - uid: 6858 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 6832 + - uid: 6859 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 6832 + - uid: 6860 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 6832 + - uid: 6861 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 6832 + - uid: 6862 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 6832 + - uid: 6863 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 6832 + - uid: 6865 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 6832 + - uid: 6867 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 6832 + - uid: 6868 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 6832 + - uid: 6869 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 6832 + - uid: 6870 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 6832 + - uid: 6871 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 6832 + - uid: 6872 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 6832 + - uid: 6873 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 6832 + - uid: 6875 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6832 + - uid: 6876 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6832 + - uid: 6877 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 6832 + - uid: 6878 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 6832 + - uid: 6879 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 6832 + - uid: 6880 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 6832 + - uid: 6881 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 6832 + - uid: 6882 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 6832 + - uid: 6883 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 6832 + - uid: 6884 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 6832 + - uid: 6885 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 6832 + - uid: 6886 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 6832 + - uid: 6887 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 6832 + - uid: 6888 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 6832 + - uid: 6889 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 6832 + - uid: 6890 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 6832 + - uid: 6891 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 6832 + - uid: 6892 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 6832 + - uid: 6893 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 6832 + - uid: 6894 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 6832 + - uid: 6895 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 6832 + - uid: 6896 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 6832 + - uid: 6897 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6832 + - uid: 6898 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 6832 + - uid: 6899 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 6832 + - uid: 6900 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 6832 + - uid: 6902 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6832 + - uid: 6903 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6832 + - uid: 6904 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6832 + - uid: 6905 + components: + - type: Transform + pos: -0.5,0.5 + parent: 6832 + - uid: 6906 + components: + - type: Transform + pos: -1.5,0.5 + parent: 6832 + - uid: 6907 + components: + - type: Transform + pos: -2.5,0.5 + parent: 6832 + - uid: 6908 + components: + - type: Transform + pos: -3.5,0.5 + parent: 6832 + - uid: 6909 + components: + - type: Transform + pos: -4.5,0.5 + parent: 6832 + - uid: 6910 + components: + - type: Transform + pos: 1.5,0.5 + parent: 6832 + - uid: 6911 + components: + - type: Transform + pos: 2.5,0.5 + parent: 6832 + - uid: 6912 + components: + - type: Transform + pos: 3.5,0.5 + parent: 6832 + - uid: 6913 + components: + - type: Transform + pos: 4.5,0.5 + parent: 6832 + - uid: 6914 + components: + - type: Transform + pos: 5.5,0.5 + parent: 6832 + - uid: 6915 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6832 + - uid: 6917 + components: + - type: Transform + pos: 0.5,4.5 + parent: 6832 + - uid: 6918 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6832 + - uid: 6919 + components: + - type: Transform + pos: 0.5,6.5 + parent: 6832 + - uid: 6920 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6832 + - uid: 6921 + components: + - type: Transform + pos: 0.5,8.5 + parent: 6832 + - uid: 6922 + components: + - type: Transform + pos: 0.5,9.5 + parent: 6832 + - uid: 6923 + components: + - type: Transform + pos: 0.5,10.5 + parent: 6832 + - uid: 6924 + components: + - type: Transform + pos: 0.5,11.5 + parent: 6832 + - uid: 6925 + components: + - type: Transform + pos: 0.5,12.5 + parent: 6832 + - uid: 6926 + components: + - type: Transform + pos: 0.5,13.5 + parent: 6832 + - uid: 6927 + components: + - type: Transform + pos: -0.5,11.5 + parent: 6832 + - uid: 6928 + components: + - type: Transform + pos: 1.5,11.5 + parent: 6832 + - uid: 6933 + components: + - type: Transform + pos: 1.5,4.5 + parent: 6832 + - uid: 6934 + components: + - type: Transform + pos: 2.5,4.5 + parent: 6832 + - uid: 6935 + components: + - type: Transform + pos: 3.5,4.5 + parent: 6832 + - uid: 6936 + components: + - type: Transform + pos: 4.5,4.5 + parent: 6832 + - uid: 6937 + components: + - type: Transform + pos: 5.5,4.5 + parent: 6832 + - uid: 6938 + components: + - type: Transform + pos: 6.5,4.5 + parent: 6832 + - uid: 6939 + components: + - type: Transform + pos: 5.5,3.5 + parent: 6832 + - uid: 6940 + components: + - type: Transform + pos: -0.5,4.5 + parent: 6832 + - uid: 6941 + components: + - type: Transform + pos: -1.5,4.5 + parent: 6832 + - uid: 6942 + components: + - type: Transform + pos: -2.5,4.5 + parent: 6832 + - uid: 6943 + components: + - type: Transform + pos: -3.5,4.5 + parent: 6832 + - uid: 6944 + components: + - type: Transform + pos: -4.5,4.5 + parent: 6832 + - uid: 6945 + components: + - type: Transform + pos: -5.5,4.5 + parent: 6832 + - uid: 6946 + components: + - type: Transform + pos: -4.5,3.5 + parent: 6832 +- proto: CableApcStack + entities: + - uid: 6947 + components: + - type: Transform + pos: 6.495804,-2.571455 + parent: 6832 +- proto: CableHV + entities: + - uid: 6948 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6832 + - uid: 6949 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6832 + - uid: 6950 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6832 + - uid: 6951 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6832 +- proto: CableHVStack + entities: + - uid: 6952 + components: + - type: Transform + pos: 6.1450806,-2.542244 + parent: 6832 +- proto: CableMV + entities: + - uid: 4 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 6832 + - uid: 9 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 6832 + - uid: 19 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 6832 + - uid: 22 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 6832 + - uid: 23 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 6832 + - uid: 24 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 6832 + - uid: 25 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 6832 + - uid: 26 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 6832 + - uid: 27 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 6832 + - uid: 28 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 6832 + - uid: 29 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 6832 + - uid: 30 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 6832 + - uid: 31 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 6832 + - uid: 32 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 6832 + - uid: 33 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 6832 + - uid: 34 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 6832 + - uid: 35 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 6832 + - uid: 36 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 6832 + - uid: 37 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 6832 + - uid: 38 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 6832 + - uid: 39 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 6832 + - uid: 40 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 6832 + - uid: 41 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 6832 + - uid: 42 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 6832 + - uid: 43 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 6832 + - uid: 44 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 6832 + - uid: 45 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 6832 + - uid: 46 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 6832 + - uid: 47 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 6832 + - uid: 48 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 6832 + - uid: 49 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 6832 + - uid: 56 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 6832 + - uid: 57 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6832 + - uid: 58 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6832 + - uid: 59 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6832 + - uid: 60 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6832 + - uid: 61 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6832 + - uid: 62 + components: + - type: Transform + pos: 1.5,2.5 + parent: 6832 + - uid: 63 + components: + - type: Transform + pos: 0.5,3.5 + parent: 6832 + - uid: 64 + components: + - type: Transform + pos: 0.5,4.5 + parent: 6832 + - uid: 65 + components: + - type: Transform + pos: 0.5,5.5 + parent: 6832 + - uid: 66 + components: + - type: Transform + pos: 0.5,6.5 + parent: 6832 + - uid: 67 + components: + - type: Transform + pos: 0.5,7.5 + parent: 6832 + - uid: 68 + components: + - type: Transform + pos: 1.5,7.5 + parent: 6832 +- proto: CableMVStack + entities: + - uid: 6958 + components: + - type: Transform + pos: 6.2327576,-2.4400043 + parent: 6832 +- proto: CarpetBlack + entities: + - uid: 6959 + components: + - type: Transform + pos: -2.5,8.5 + parent: 6832 + - uid: 6960 + components: + - type: Transform + pos: -2.5,9.5 + parent: 6832 + - uid: 6961 + components: + - type: Transform + pos: -1.5,8.5 + parent: 6832 + - uid: 6962 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6832 + - uid: 6963 + components: + - type: Transform + pos: -0.5,8.5 + parent: 6832 + - uid: 6964 + components: + - type: Transform + pos: -0.5,9.5 + parent: 6832 + - uid: 6965 + components: + - type: Transform + pos: 0.5,8.5 + parent: 6832 + - uid: 6966 + components: + - type: Transform + pos: 0.5,9.5 + parent: 6832 + - uid: 6967 + components: + - type: Transform + pos: 1.5,8.5 + parent: 6832 + - uid: 6968 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6832 + - uid: 6969 + components: + - type: Transform + pos: 2.5,8.5 + parent: 6832 + - uid: 6970 + components: + - type: Transform + pos: 2.5,9.5 + parent: 6832 + - uid: 6971 + components: + - type: Transform + pos: 3.5,8.5 + parent: 6832 + - uid: 6972 + components: + - type: Transform + pos: 3.5,9.5 + parent: 6832 +- proto: CarpStatue + entities: + - uid: 6973 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 6832 +- proto: Catwalk + entities: + - uid: 6974 + components: + - type: Transform + pos: 7.5,0.5 + parent: 6832 + - uid: 6975 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 6832 + - uid: 6976 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 6832 + - uid: 6977 + components: + - type: Transform + pos: -6.5,0.5 + parent: 6832 +- proto: ChairPilotSeat + entities: + - uid: 6978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 6832 + - uid: 6979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 6832 + - uid: 6980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 6832 + - uid: 6981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 6832 + - uid: 6982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 6832 + - uid: 6983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 6832 + - uid: 6984 + components: + - type: Transform + pos: -1.5,9.5 + parent: 6832 + - uid: 6985 + components: + - type: Transform + pos: 2.5,9.5 + parent: 6832 + - uid: 6986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 6832 +- proto: CigCartonBlack + entities: + - uid: 6987 + components: + - type: Transform + pos: -2.4868011,8.578197 + parent: 6832 +- proto: ClothingEyesHudBeer + entities: + - uid: 6988 + components: + - type: Transform + pos: -4.456436,-2.4708726 + parent: 6832 +- proto: ComputerBroken + entities: + - uid: 6989 + components: + - type: Transform + pos: 0.5,13.5 + parent: 6832 +- proto: ComputerCrewMonitoring + entities: + - uid: 6990 + components: + - type: Transform + pos: -0.5,13.5 + parent: 6832 +- proto: ComputerFrame + entities: + - uid: 6991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 6832 +- proto: ComputerIFF + entities: + - uid: 6992 + components: + - type: Transform + pos: 1.5,13.5 + parent: 6832 +- proto: ComputerPowerMonitoring + entities: + - uid: 5 + components: + - type: Transform + pos: 2.5,12.5 + parent: 6832 +- proto: ComputerRadar + entities: + - uid: 6993 + components: + - type: Transform + pos: -1.5,12.5 + parent: 6832 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 6832 +- proto: CrateEngineeringGear + entities: + - uid: 6995 + components: + - type: Transform + pos: -2.5,5.5 + parent: 6832 +- proto: CrateFilledSpawner + entities: + - uid: 6996 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 6832 + - uid: 6997 + components: + - type: Transform + pos: -5.5,4.5 + parent: 6832 + - uid: 6998 + components: + - type: Transform + pos: -4.5,5.5 + parent: 6832 + - uid: 6999 + components: + - type: Transform + pos: -2.5,6.5 + parent: 6832 + - uid: 7000 + components: + - type: Transform + pos: -5.5,2.5 + parent: 6832 +- proto: CrateGenericSteel + entities: + - uid: 7001 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 6832 + - uid: 7002 + components: + - type: Transform + pos: -5.5,3.5 + parent: 6832 + - uid: 7003 + components: + - type: Transform + pos: -3.5,6.5 + parent: 6832 +- proto: CrateHydroponicsTools + entities: + - uid: 7004 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 6832 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 7005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 6832 + - type: Fixtures + fixtures: {} +- proto: FlippoEngravedLighter + entities: + - uid: 7006 + components: + - type: Transform + pos: -2.3504028,9.055314 + parent: 6832 +- proto: Floodlight + entities: + - uid: 7007 + components: + - type: Transform + pos: -2.4689636,-2.5161684 + parent: 6832 +- proto: GeneratorBasic15kW + entities: + - uid: 7008 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6832 + - type: PowerSupplier + supplyRate: 25000 + - uid: 7009 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6832 + - type: PowerSupplier + supplyRate: 25000 +- proto: GravityGeneratorMini + entities: + - uid: 7010 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6832 +- proto: Grille + entities: + - uid: 7011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 6832 + - uid: 7012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 6832 + - uid: 7013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 6832 + - uid: 7014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 6832 + - uid: 7015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 6832 + - uid: 7016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 6832 + - uid: 7017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 6832 + - uid: 7018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 6832 + - uid: 7019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 6832 + - uid: 7020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 6832 + - uid: 7021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 6832 +- proto: Gyroscope + entities: + - uid: 7022 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 6832 + - uid: 7023 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 6832 +- proto: hydroponicsTray + entities: + - uid: 7024 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 6832 + - uid: 7025 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 6832 + - uid: 7026 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 6832 + - uid: 7027 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 6832 + - uid: 7028 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 6832 + - uid: 7029 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 6832 +- proto: LiquidOxygenCanister + entities: + - uid: 7030 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6832 +- proto: MachineFrame + entities: + - uid: 7031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 6832 + - uid: 7032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 6832 + - uid: 7033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 6832 +- proto: MedkitBurnFilled + entities: + - uid: 7035 + components: + - type: Transform + pos: 6.4997864,4.3701725 + parent: 6832 +- proto: MedkitFilled + entities: + - uid: 7036 + components: + - type: Transform + pos: 6.6296844,3.6496277 + parent: 6832 +- proto: MedkitRadiationFilled + entities: + - uid: 7037 + components: + - type: Transform + pos: 6.558243,2.7343402 + parent: 6832 +- proto: MegaSprayBottle + entities: + - uid: 7038 + components: + - type: Transform + pos: -3.3750153,-2.4416616 + parent: 6832 +- proto: MiningWindow + entities: + - uid: 7039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 6832 + - uid: 7040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 6832 + - uid: 7041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 6832 + - uid: 7042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 6832 + - uid: 7043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 6832 + - uid: 7044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 6832 + - uid: 7045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 6832 + - uid: 7046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 6832 + - uid: 7047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 6832 + - uid: 7048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 6832 + - uid: 7049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 6832 +- proto: OreBox + entities: + - uid: 7050 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 6832 + - uid: 7051 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 6832 + - uid: 7052 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 6832 + - uid: 7053 + components: + - type: Transform + pos: -3.5,2.5 + parent: 6832 + - uid: 7054 + components: + - type: Transform + pos: -2.5,3.5 + parent: 6832 +- proto: OreProcessor + entities: + - uid: 7055 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 6832 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 7056 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 6832 +- proto: Poweredlight + entities: + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 6832 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 6832 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 6832 + - uid: 7057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 6832 + - uid: 7058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 6832 + - uid: 7059 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 6832 + - uid: 7060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 6832 + - uid: 7061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 6832 + - uid: 7062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 6832 + - uid: 7063 + components: + - type: Transform + pos: -3.5,0.5 + parent: 6832 + - uid: 7064 + components: + - type: Transform + pos: 4.5,0.5 + parent: 6832 + - uid: 7065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 6832 + - uid: 7066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 6832 + - uid: 7067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 6832 + - uid: 7068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 6832 + - uid: 7069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 6832 + - uid: 7070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 6832 + - uid: 7071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 6832 + - uid: 7072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 6832 + - uid: 7073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 6832 + - uid: 7074 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 6832 +- proto: Rack + entities: + - uid: 7075 + components: + - type: Transform + pos: -0.5,3.5 + parent: 6832 + - uid: 7076 + components: + - type: Transform + pos: -0.5,6.5 + parent: 6832 + - uid: 7077 + components: + - type: Transform + pos: 1.5,6.5 + parent: 6832 + - uid: 7078 + components: + - type: Transform + pos: 1.5,3.5 + parent: 6832 +- proto: RandomVendingSnacks + entities: + - uid: 7079 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 6832 +- proto: ShardGlass + entities: + - uid: 7080 + components: + - type: Transform + pos: 0.38319397,12.938033 + parent: 6832 + - uid: 7081 + components: + - type: Transform + pos: 0.8216095,12.830925 + parent: 6832 +- proto: SheetGlass + entities: + - uid: 7082 + components: + - type: Transform + pos: 5.516693,-2.4107933 + parent: 6832 +- proto: SheetSteel + entities: + - uid: 7083 + components: + - type: Transform + pos: 5.3997803,-2.3085535 + parent: 6832 +- proto: SignalButton + entities: + - uid: 7084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 6832 + - type: DeviceLinkSource + linkedPorts: + 6840: + - - Pressed + - DoorBolt + 6841: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 7085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 6832 + - type: DeviceLinkSource + linkedPorts: + 6842: + - - Pressed + - DoorBolt + 6843: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 7086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 6832 + - type: DeviceLinkSource + linkedPorts: + 6833: + - - Pressed + - DoorBolt + 6834: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 7087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 6832 + - type: DeviceLinkSource + linkedPorts: + 6835: + - - Pressed + - DoorBolt + 6836: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} +- proto: SignNTMine + entities: + - uid: 7088 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 6832 + - type: Fixtures + fixtures: {} +- proto: SignSurvival + entities: + - uid: 7089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 6832 + - type: Fixtures + fixtures: {} + - uid: 7096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 6832 + - type: Fixtures + fixtures: {} +- proto: SprayBottleSpaceCleaner + entities: + - uid: 7097 + components: + - type: Transform + pos: 4.3759155,2.4811757 + parent: 6832 + - uid: 7098 + components: + - type: Transform + pos: 4.55777,2.5915294 + parent: 6832 + - uid: 7099 + components: + - type: Transform + pos: 4.7006683,2.5136328 + parent: 6832 +- proto: SprayBottleWater + entities: + - uid: 7100 + components: + - type: Transform + pos: -3.9449615,-2.5146894 + parent: 6832 + - uid: 7101 + components: + - type: Transform + pos: -3.7403717,-2.3832388 + parent: 6832 +- proto: SubstationWallBasic + entities: + - uid: 7102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 6832 +- proto: Syringe + entities: + - uid: 7103 + components: + - type: Transform + pos: 6.1620483,2.6239867 + parent: 6832 +- proto: TableReinforced + entities: + - uid: 7104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 6832 + - uid: 7105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 6832 + - uid: 7106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 6832 + - uid: 7107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 6832 + - uid: 7108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 6832 + - uid: 7109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 6832 + - uid: 7110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 6832 + - uid: 7111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 6832 + - uid: 7112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 6832 + - uid: 7113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 6832 + - uid: 7114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 6832 + - uid: 7115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 6832 + - uid: 7116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 6832 + - uid: 7117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 6832 + - uid: 7118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 6832 +- proto: TechnologyDiskRare + entities: + - uid: 7119 + components: + - type: Transform + pos: 4.654499,-8.339956 + parent: 6832 +- proto: Thruster + entities: + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 6832 + - uid: 7121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 6832 + - uid: 7122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 6832 + - uid: 7123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 6832 + - uid: 7124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 6832 + - uid: 7125 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 6832 + - uid: 7126 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 6832 + - uid: 7127 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 6832 + - uid: 7128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 6832 + - uid: 7129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 6832 + - uid: 7130 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 6832 + - uid: 7131 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 6832 + - uid: 7132 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 6832 + - uid: 7133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 6832 + - uid: 7134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 6832 + - type: Thruster + enabled: False + - uid: 7135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 6832 + - uid: 7136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 6832 + - uid: 7137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 6832 + - uid: 7138 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 6832 + - uid: 7139 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 6832 + - uid: 7140 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 6832 + - uid: 7141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 6832 +- proto: ToolboxMechanicalFilled + entities: + - uid: 7142 + components: + - type: Transform + pos: 6.481201,-2.2501311 + parent: 6832 +- proto: UnfinishedMachineFrame + entities: + - uid: 7143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 6832 + - uid: 7144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 6832 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 6832 + - uid: 7146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 6832 + - uid: 7147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 6832 + - uid: 7148 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 6832 + - uid: 7149 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 6832 + - uid: 7150 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 6832 + - uid: 7151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 6832 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 6832 + - uid: 7153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 6832 + - uid: 7155 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 6832 + - uid: 7156 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 6832 +- proto: VendingMachineCoffee + entities: + - uid: 7157 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 6832 +- proto: VendingMachineNutri + entities: + - uid: 7158 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 6832 + missingComponents: + - AccessReader +- proto: VendingMachineSalvage + entities: + - uid: 7159 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 6832 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 7160 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 6832 +- proto: VendingMachineWallMedical + entities: + - uid: 7161 + components: + - type: Transform + pos: -1.5,7.5 + parent: 6832 + - type: Fixtures + fixtures: {} +- proto: WallMining + entities: + - uid: 1 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 6832 + - uid: 3 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 6832 + - uid: 7162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 6832 + - uid: 7163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 6832 + - uid: 7164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 6832 + - uid: 7165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 6832 + - uid: 7166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 6832 + - uid: 7167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 6832 + - uid: 7168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 6832 + - uid: 7169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 6832 + - uid: 7170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 6832 + - uid: 7171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 6832 + - uid: 7172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 6832 + - uid: 7173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 6832 + - uid: 7174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 6832 + - uid: 7175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 6832 + - uid: 7176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 6832 + - uid: 7177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 6832 + - uid: 7178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 6832 + - uid: 7179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 6832 + - uid: 7180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 6832 + - uid: 7181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 6832 + - uid: 7182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 6832 + - uid: 7183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 6832 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 6832 + - uid: 7185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 6832 + - uid: 7186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 6832 + - uid: 7187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 6832 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 6832 + - uid: 7189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 6832 + - uid: 7190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 6832 + - uid: 7191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 6832 + - uid: 7192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 6832 + - uid: 7193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 6832 + - uid: 7194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 6832 + - uid: 7195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 6832 + - uid: 7196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 6832 + - uid: 7197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 6832 + - uid: 7198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 6832 + - uid: 7199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 6832 + - uid: 7200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 6832 + - uid: 7201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 6832 + - uid: 7202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 6832 + - uid: 7203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 6832 + - uid: 7204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 6832 + - uid: 7205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 6832 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 6832 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 6832 + - uid: 7208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 6832 + - uid: 7209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 6832 + - uid: 7210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 6832 + - uid: 7211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 6832 + - uid: 7212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 6832 + - uid: 7213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 6832 + - uid: 7214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 6832 + - uid: 7215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 6832 + - uid: 7216 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 6832 + - uid: 7217 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 6832 + - uid: 7218 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 6832 + - uid: 7219 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 6832 + - uid: 7220 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 6832 + - uid: 7221 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 6832 + - uid: 7222 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 6832 + - uid: 7223 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 6832 + - uid: 7224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 6832 + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 6832 + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 6832 + - uid: 7227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 6832 + - uid: 7228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 6832 + - uid: 7229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 6832 + - uid: 7230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 6832 + - uid: 7231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 6832 + - uid: 7232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 6832 + - uid: 7233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 6832 + - uid: 7234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 6832 + - uid: 7235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 6832 + - uid: 7236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 6832 + - uid: 7237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 6832 + - uid: 7238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 6832 + - uid: 7239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 6832 + - uid: 7240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 6832 + - uid: 7241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 6832 + - uid: 7242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 6832 + - uid: 7243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 6832 + - uid: 7244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 6832 + - uid: 7245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 6832 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 6832 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 6832 + - uid: 7248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 6832 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 6832 + - uid: 7250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 6832 + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 6832 + - uid: 7252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 6832 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 6832 + - uid: 7254 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 6832 + - uid: 7255 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 6832 + - uid: 7256 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 6832 + - uid: 7257 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 6832 + - uid: 7258 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 6832 + - uid: 7259 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 6832 + - uid: 7260 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 6832 + - uid: 7261 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 6832 + - uid: 7262 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 6832 + - uid: 7263 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 6832 + - uid: 7264 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 6832 +- proto: WallMiningDiagonal + entities: + - uid: 7265 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 6832 + - uid: 7266 + components: + - type: Transform + pos: -2.5,2.5 + parent: 6832 + - uid: 7267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 6832 + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 6832 + - uid: 7269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 6832 + - uid: 7270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 6832 + - uid: 7271 + components: + - type: Transform + pos: -6.5,5.5 + parent: 6832 + - uid: 7272 + components: + - type: Transform + pos: -5.5,6.5 + parent: 6832 + - uid: 7273 + components: + - type: Transform + pos: -4.5,7.5 + parent: 6832 + - uid: 7274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 6832 + - uid: 7275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 6832 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 6832 + - uid: 7277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 6832 + - uid: 7278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 6832 + - uid: 7279 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 6832 + - uid: 7280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 6832 + - uid: 7281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 6832 + - uid: 7282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 6832 + - uid: 7283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 6832 + - uid: 7284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 6832 + - uid: 7285 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 6832 + - uid: 7286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 6832 + - uid: 7287 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 6832 + - uid: 7288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 6832 + - uid: 7289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 6832 + - uid: 7290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 6832 + - uid: 7291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 6832 + - uid: 7294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 6832 +- proto: WarpPoint + entities: + - uid: 7295 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6832 + - type: WarpPoint + location: Шаттл свободных големов +- proto: WaterTankHighCapacity + entities: + - uid: 7296 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 6832 + - uid: 7297 + components: + - type: Transform + pos: 5.5,5.5 + parent: 6832 +- proto: WeaponCapacitorRecharger + entities: + - uid: 7298 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 6832 +- proto: WeaponCrusher + entities: + - uid: 7299 + components: + - type: Transform + pos: -0.53222656,3.48274 + parent: 6832 +- proto: WeaponCrusherDagger + entities: + - uid: 7300 + components: + - type: Transform + pos: 1.455246,3.5265567 + parent: 6832 +- proto: WeaponCrusherGlaive + entities: + - uid: 7301 + components: + - type: Transform + pos: -0.47377014,6.5645313 + parent: 6832 + - uid: 7302 + components: + - type: Transform + pos: 1.5429382,6.4915037 + parent: 6832 +- proto: WeldingFuelTankFull + entities: + - uid: 7303 + components: + - type: Transform + pos: 3.5,6.5 + parent: 6832 + - uid: 7304 + components: + - type: Transform + pos: 4.5,6.5 + parent: 6832 +- proto: WindoorSecure + entities: + - uid: 7305 + components: + - type: Transform + pos: 0.5,10.5 + parent: 6832 +- proto: WindowReinforcedDirectional + entities: + - uid: 7306 + components: + - type: Transform + pos: -0.5,10.5 + parent: 6832 + - uid: 7307 + components: + - type: Transform + pos: -1.5,10.5 + parent: 6832 + - uid: 7308 + components: + - type: Transform + pos: 1.5,10.5 + parent: 6832 + - uid: 7309 + components: + - type: Transform + pos: 2.5,10.5 + parent: 6832 + - uid: 7310 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 6832 + - uid: 7311 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 6832 + - uid: 7312 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 6832 +... diff --git a/Resources/Maps/_Wega/Lavaland/hermit_base.yml b/Resources/Maps/_Wega/Lavaland/hermit_base.yml new file mode 100644 index 00000000000..b82882fe912 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/hermit_base.yml @@ -0,0 +1,1264 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 17:30:26 + entityCount: 208 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 5: FloorAsteroidSandUnvariantized + 1: FloorBasalt + 4: FloorMining + 3: FloorShuttleBlue + 2: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAACAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1: 0,4 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 2: 4,2 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 3: 9,15 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65520 + 0,1: + 0: 6143 + 0,2: + 0: 1 + 1,0: + 0: 65520 + 1,1: + 0: 61157 + 1,2: + 0: 52969 + 2,0: + 0: 49136 + 2,1: + 0: 12801 + 2,2: + 0: 14195 + 2,3: + 0: 28671 + 3,0: + 0: 768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockMining + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 +- proto: AirlockShuttle + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 +- proto: BasaltFour + entities: + - uid: 205 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 +- proto: BasaltOne + entities: + - uid: 206 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: BasaltThree + entities: + - uid: 204 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 +- proto: Bed + entities: + - uid: 169 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 170 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 +- proto: Bucket + entities: + - uid: 195 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 +- proto: ChanterelleSeeds + entities: + - uid: 198 + components: + - type: Transform + pos: 6.2880387,11.378061 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 6.4130387,11.581764 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 6.7000756,11.5123205 + parent: 1 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 189 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 +- proto: ClothingMaskBreath + entities: + - uid: 190 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 188 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 +- proto: ClothingShoesBootsMag + entities: + - uid: 193 + components: + - type: Transform + pos: 10.569324,10.612394 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 181 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 178 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: FloorWaterEntity + entities: + - uid: 196 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 +- proto: FlyAmanitaSeeds + entities: + - uid: 202 + components: + - type: Transform + pos: 6.579705,11.373431 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 +- proto: hydroponicsSoil + entities: + - uid: 171 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 203 + components: + - type: Transform + pos: 6.7139645,11.345654 + parent: 1 +- proto: Lantern + entities: + - uid: 176 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 +- proto: LingzhiSeeds + entities: + - uid: 201 + components: + - type: Transform + pos: 6.718594,11.655839 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 194 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 192 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 191 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: Rack + entities: + - uid: 173 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 +- proto: Shovel + entities: + - uid: 184 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 +- proto: SmallLight + entities: + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 +- proto: Spaceshroom + entities: + - uid: 186 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 +- proto: SpawnInhabitantHermit + entities: + - uid: 208 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 +- proto: SurvivalKnife + entities: + - uid: 183 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 +- proto: Table + entities: + - uid: 182 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 179 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 +- proto: ToolboxMechanicalFilledAllTools + entities: + - uid: 197 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 177 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 +- proto: WallAsteroidCobblebrick + entities: + - uid: 98 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 +- proto: WallMining + entities: + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 +- proto: WallMiningDiagonal + entities: + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 13 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/hierophant.yml b/Resources/Maps/_Wega/Lavaland/hierophant.yml new file mode 100644 index 00000000000..660c34a61a7 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/hierophant.yml @@ -0,0 +1,530 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 12:38:11 + entityCount: 91 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt + 2: FloorWhite +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.515625,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: ExplosionAirtightGrid + - type: RadiationGridResistance +- proto: MarkerHierophantSignal + entities: + - uid: 91 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: SpawnMobHierophantLavaland + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: WallHierophantArena + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/hospital.yml b/Resources/Maps/_Wega/Lavaland/hospital.yml new file mode 100644 index 00000000000..6b57390f627 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/hospital.yml @@ -0,0 +1,2438 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 02/14/2026 12:37:23 + entityCount: 369 +maps: [] +grids: +- 10211 +orphans: +- 10211 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 10211 + components: + - type: MetaData + name: "" + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAACQAAAAAAAADAAAAAAAACwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAsAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAACQAAAAAAAAkAAAAAAAAAwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAAkAAAAAAAAJAAAAAAAAAMAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAAJAAAAAAAACQAAAAAAAADAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAGAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 0: 13,3 + 1: 14,3 + 2: 15,3 + 3: 11,3 + 4: 10,3 + 5: 8,3 + 6: 7,3 + 7: 6,3 + 8: 4,3 + 40: 4,-5 + 41: 5,-5 + 42: 3,-5 + 43: 7,-5 + 44: 9,-5 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 9: 4,1 + 10: 5,1 + 11: 7,1 + 12: 9,1 + 13: 10,1 + 14: 11,1 + 15: 13,1 + 48: 8,-8 + 49: 5,-8 + 50: 4,-8 + 51: 3,-8 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 30: 14,-9 + 31: 14,-8 + 32: 14,-7 + 33: 14,-5 + 34: 14,-4 + 35: 14,-3 + 36: 14,-2 + 37: 14,-1 + 38: 14,0 + 53: 2,-7 + 54: 2,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 16: 15,2 + 17: 15,1 + 18: 15,0 + 19: 15,-1 + 20: 15,-2 + 21: 15,-3 + 22: 15,-4 + 23: 15,-6 + 24: 15,-5 + 25: 15,-7 + 26: 15,-8 + 27: 15,-10 + 28: 15,-11 + 29: 15,-9 + 45: 9,-6 + 46: 9,-7 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 39: 14,1 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 47: 9,-8 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 52: 2,-8 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + flags: Hide + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockExternalShuttleLocked + entities: + - uid: 1 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 10211 + - uid: 2 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 10211 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 10211 + - uid: 4 + components: + - type: Transform + pos: 12.5,4.5 + parent: 10211 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 10211 + - uid: 6 + components: + - type: Transform + pos: 3.5,4.5 + parent: 10211 + - uid: 7 + components: + - type: Transform + pos: 5.5,4.5 + parent: 10211 + - uid: 8 + components: + - type: Transform + pos: 9.5,4.5 + parent: 10211 + - uid: 9 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 10211 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 10211 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 10211 + - uid: 10212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 10211 +- proto: AirlockGlass + entities: + - uid: 10213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 10211 + - uid: 10214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 10211 +- proto: AirlockVirologyLocked + entities: + - uid: 10226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 10211 + - uid: 10227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 10211 +- proto: Ash + entities: + - uid: 10228 + components: + - type: Transform + pos: 2.5664673,-1.4254827 + parent: 10211 +- proto: BannerMedical + entities: + - uid: 10229 + components: + - type: Transform + pos: 15.5,3.5 + parent: 10211 +- proto: BaseAPC + entities: + - uid: 10340 + components: + - type: Transform + pos: 12.5,8.5 + parent: 10211 + - type: BatterySelfRecharger + autoRechargeRate: 5000 + - type: Fixtures + fixtures: {} +- proto: BoxHugHealing + entities: + - uid: 10230 + components: + - type: Transform + pos: 5.515503,-6.364625 + parent: 10211 +- proto: BoxSterileMask + entities: + - uid: 10231 + components: + - type: Transform + pos: 10.545013,-1.4266684 + parent: 10211 +- proto: CableApcExtension + entities: + - uid: 10232 + components: + - type: Transform + pos: 14.5,1.5 + parent: 10211 + - uid: 10233 + components: + - type: Transform + pos: 12.5,8.5 + parent: 10211 + - uid: 10234 + components: + - type: Transform + pos: 12.5,7.5 + parent: 10211 + - uid: 10235 + components: + - type: Transform + pos: 12.5,6.5 + parent: 10211 + - uid: 10236 + components: + - type: Transform + pos: 12.5,5.5 + parent: 10211 + - uid: 10237 + components: + - type: Transform + pos: 12.5,4.5 + parent: 10211 + - uid: 10238 + components: + - type: Transform + pos: 12.5,3.5 + parent: 10211 + - uid: 10239 + components: + - type: Transform + pos: 12.5,2.5 + parent: 10211 + - uid: 10240 + components: + - type: Transform + pos: 12.5,1.5 + parent: 10211 + - uid: 10241 + components: + - type: Transform + pos: 12.5,0.5 + parent: 10211 + - uid: 10242 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 10211 + - uid: 10243 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 10211 + - uid: 10244 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 10211 + - uid: 10245 + components: + - type: Transform + pos: 11.5,2.5 + parent: 10211 + - uid: 10246 + components: + - type: Transform + pos: 10.5,2.5 + parent: 10211 + - uid: 10247 + components: + - type: Transform + pos: 9.5,2.5 + parent: 10211 + - uid: 10248 + components: + - type: Transform + pos: 8.5,2.5 + parent: 10211 + - uid: 10249 + components: + - type: Transform + pos: 7.5,2.5 + parent: 10211 + - uid: 10250 + components: + - type: Transform + pos: 6.5,2.5 + parent: 10211 + - uid: 10251 + components: + - type: Transform + pos: 5.5,2.5 + parent: 10211 + - uid: 10252 + components: + - type: Transform + pos: 4.5,2.5 + parent: 10211 + - uid: 10253 + components: + - type: Transform + pos: 3.5,2.5 + parent: 10211 + - uid: 10254 + components: + - type: Transform + pos: 2.5,2.5 + parent: 10211 + - uid: 10255 + components: + - type: Transform + pos: 9.5,3.5 + parent: 10211 + - uid: 10256 + components: + - type: Transform + pos: 9.5,4.5 + parent: 10211 + - uid: 10257 + components: + - type: Transform + pos: 9.5,5.5 + parent: 10211 + - uid: 10258 + components: + - type: Transform + pos: 9.5,6.5 + parent: 10211 + - uid: 10259 + components: + - type: Transform + pos: 8.5,6.5 + parent: 10211 + - uid: 10260 + components: + - type: Transform + pos: 7.5,6.5 + parent: 10211 + - uid: 10261 + components: + - type: Transform + pos: 6.5,6.5 + parent: 10211 + - uid: 10262 + components: + - type: Transform + pos: 6.5,1.5 + parent: 10211 + - uid: 10263 + components: + - type: Transform + pos: 6.5,0.5 + parent: 10211 + - uid: 10264 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 10211 + - uid: 10265 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 10211 + - uid: 10266 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 10211 + - uid: 10267 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 10211 + - uid: 10268 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 10211 + - uid: 10269 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 10211 + - uid: 10270 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 10211 + - uid: 10271 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 10211 + - uid: 10272 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 10211 + - uid: 10273 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 10211 + - uid: 10274 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 10211 + - uid: 10275 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 10211 + - uid: 10276 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 10211 + - uid: 10277 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 10211 + - uid: 10278 + components: + - type: Transform + pos: 13.5,2.5 + parent: 10211 + - uid: 10279 + components: + - type: Transform + pos: 14.5,2.5 + parent: 10211 + - uid: 10280 + components: + - type: Transform + pos: 15.5,2.5 + parent: 10211 + - uid: 10281 + components: + - type: Transform + pos: 14.5,0.5 + parent: 10211 + - uid: 10282 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 10211 + - uid: 10283 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 10211 + - uid: 10284 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 10211 + - uid: 10285 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 10211 + - uid: 10286 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 10211 + - uid: 10287 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 10211 + - uid: 10288 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 10211 + - uid: 10289 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 10211 + - uid: 10290 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 10211 + - uid: 10291 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 10211 + - uid: 10292 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 10211 + - uid: 10293 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 10211 + - uid: 10294 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 10211 + - uid: 10295 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 10211 + - uid: 10296 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 10211 + - uid: 10297 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 10211 + - uid: 10298 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 10211 + - uid: 10299 + components: + - type: Transform + pos: 2.5,1.5 + parent: 10211 + - uid: 10300 + components: + - type: Transform + pos: 2.5,0.5 + parent: 10211 + - uid: 10301 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 10211 + - uid: 10302 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 10211 + - uid: 10303 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 10211 + - uid: 10304 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 10211 + - uid: 10305 + components: + - type: Transform + pos: 8.5,1.5 + parent: 10211 + - uid: 10306 + components: + - type: Transform + pos: 8.5,0.5 + parent: 10211 + - uid: 10307 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 10211 + - uid: 10308 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 10211 + - uid: 10309 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 10211 + - uid: 10310 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 10211 + - uid: 10311 + components: + - type: Transform + pos: 3.5,3.5 + parent: 10211 + - uid: 10312 + components: + - type: Transform + pos: 3.5,4.5 + parent: 10211 + - uid: 10313 + components: + - type: Transform + pos: 3.5,5.5 + parent: 10211 + - uid: 10314 + components: + - type: Transform + pos: 3.5,6.5 + parent: 10211 + - uid: 10315 + components: + - type: Transform + pos: 3.5,7.5 + parent: 10211 +- proto: CableApcStack10 + entities: + - uid: 10316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.516113,-0.43558872 + parent: 10211 +- proto: Chair + entities: + - uid: 10317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 10211 + - uid: 10318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 10211 + - uid: 10319 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 10211 +- proto: CheapRollerBed + entities: + - uid: 10320 + components: + - type: Transform + pos: 15.508636,6.654506 + parent: 10211 +- proto: ClosetL3Filled + entities: + - uid: 10321 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 10211 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 10322 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 10211 + - uid: 10323 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 10211 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 10324 + components: + - type: Transform + pos: 14.376831,7.696405 + parent: 10211 + - uid: 10325 + components: + - type: Transform + pos: 4.474701,-1.3563559 + parent: 10211 +- proto: ClothingEyesGlasses + entities: + - uid: 10326 + components: + - type: Transform + pos: 3.499878,-6.4115 + parent: 10211 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 10327 + components: + - type: Transform + pos: 11.457855,7.5369296 + parent: 10211 +- proto: ClothingHeadNurseHat + entities: + - uid: 10328 + components: + - type: Transform + pos: 11.528168,7.841617 + parent: 10211 +- proto: ClothingMaskSterile + entities: + - uid: 10329 + components: + - type: Transform + pos: 11.481293,7.560367 + parent: 10211 +- proto: Cobweb1 + entities: + - uid: 10330 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 10211 +- proto: ComfyChair + entities: + - uid: 10331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 10211 + - uid: 10332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 10211 + - uid: 10333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 10211 +- proto: computerBodyScanner + entities: + - uid: 10334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 10211 +- proto: CrateFreezer + entities: + - uid: 10335 + components: + - type: Transform + pos: 14.5,3.5 + parent: 10211 +- proto: CrateGenericSteel + entities: + - uid: 10336 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 10211 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10337 + - 10338 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateNPCMouse + entities: + - uid: 10339 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 10211 +- proto: DrinkVodkaBottleFull + entities: + - uid: 10337 + components: + - type: Transform + parent: 10336 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtinguisherCabinetFilled + entities: + - uid: 10341 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 10211 + - type: Fixtures + fixtures: {} + - uid: 10342 + components: + - type: Transform + pos: 10.5,4.5 + parent: 10211 + - type: Fixtures + fixtures: {} + - uid: 10343 + components: + - type: Transform + pos: 4.5,4.5 + parent: 10211 + - type: Fixtures + fixtures: {} +- proto: filingCabinetDrawerRandom + entities: + - uid: 10344 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 10211 +- proto: FoodBakedCookie + entities: + - uid: 10345 + components: + - type: Transform + pos: 7.671753,-4.308533 + parent: 10211 + - uid: 10346 + components: + - type: Transform + pos: 7.3670654,-4.4725957 + parent: 10211 + - uid: 10347 + components: + - type: Transform + pos: 7.6014404,-4.636658 + parent: 10211 +- proto: GasPassiveVent + entities: + - uid: 10348 + components: + - type: Transform + pos: 12.5,9.5 + parent: 10211 +- proto: GasPipeStraight + entities: + - uid: 10349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 10211 +- proto: GasPort + entities: + - uid: 10350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 10211 +- proto: Gauze + entities: + - uid: 10351 + components: + - type: Transform + pos: 15.454956,5.6339054 + parent: 10211 +- proto: Grille + entities: + - uid: 10352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 10211 + - uid: 10353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 10211 + - uid: 10354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 10211 + - uid: 10355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 10211 + - uid: 10356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 10211 + - uid: 10357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 10211 + - uid: 10358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 10211 + - uid: 10359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 10211 + - uid: 10360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 10211 +- proto: HandheldHealthAnalyzerEmpty + entities: + - uid: 10361 + components: + - type: Transform + pos: 10.521576,-2.340731 + parent: 10211 +- proto: Lamp + entities: + - uid: 10362 + components: + - type: Transform + pos: 6.4955444,7.5907903 + parent: 10211 + - uid: 10363 + components: + - type: Transform + pos: 2.5389404,-6.31775 + parent: 10211 +- proto: LockerMedicineFilled + entities: + - uid: 10364 + components: + - type: Transform + pos: 11.5,5.5 + parent: 10211 + - uid: 10365 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 10211 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 10366 + components: + - type: Transform + pos: 15.5,5.5 + parent: 10211 + - uid: 10367 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 10211 + - uid: 10368 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 10211 + - uid: 10369 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 10211 + - uid: 10370 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 10211 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 10371 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 10211 + - uid: 10372 + components: + - type: Transform + pos: 15.5,7.5 + parent: 10211 +- proto: Matchbox + entities: + - uid: 10373 + components: + - type: Transform + pos: 1.5352173,-2.3864202 + parent: 10211 +- proto: MedkitToxinFilled + entities: + - uid: 10374 + components: + - type: Transform + pos: 4.4981384,-2.4579184 + parent: 10211 +- proto: Mirror + entities: + - uid: 10375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 10211 + - type: Fixtures + fixtures: {} +- proto: Morgue + entities: + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 10211 +- proto: OperatingTable + entities: + - uid: 10377 + components: + - type: Transform + pos: 14.5,5.5 + parent: 10211 +- proto: OxygenTankFilled + entities: + - uid: 10378 + components: + - type: Transform + pos: 14.48822,-7.468613 + parent: 10211 +- proto: Paper + entities: + - uid: 10379 + components: + - type: Transform + pos: 7.477051,7.6040845 + parent: 10211 +- proto: PaperBin10 + entities: + - uid: 10380 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 10211 +- proto: Pen + entities: + - uid: 10381 + components: + - type: Transform + pos: 7.228607,7.5456624 + parent: 10211 + - uid: 10382 + components: + - type: Transform + pos: 4.0858154,-6.3880625 + parent: 10211 +- proto: PhoneInstrument + entities: + - uid: 10383 + components: + - type: Transform + pos: 5.4920654,-5.427125 + parent: 10211 +- proto: PlushieCarp + entities: + - uid: 10384 + components: + - type: Transform + pos: 8.4192505,7.614228 + parent: 10211 +- proto: PortableScrubber + entities: + - uid: 10385 + components: + - type: Transform + pos: 12.5,7.5 + parent: 10211 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 10386 + components: + - type: Transform + pos: 7.5,4.5 + parent: 10211 + - type: Fixtures + fixtures: {} +- proto: PowerCellMedium + entities: + - uid: 10388 + components: + - type: Transform + parent: 10387 + - type: Physics + canCollide: False +- proto: PowerCellRecharger + entities: + - uid: 10387 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 10211 + - type: ContainerContainer + containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 10388 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: Poweredlight + entities: + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 10211 + - uid: 10390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 10211 + - uid: 10391 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 10211 + - uid: 10392 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 10211 +- proto: PoweredSmallLight + entities: + - uid: 10393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 10211 + - uid: 10394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 10211 + - uid: 10395 + components: + - type: Transform + pos: 7.5,3.5 + parent: 10211 + - uid: 10396 + components: + - type: Transform + pos: 11.5,3.5 + parent: 10211 + - uid: 10397 + components: + - type: Transform + pos: 14.5,3.5 + parent: 10211 + - uid: 10398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 10211 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 10211 + - uid: 10400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 10211 + - uid: 10401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 10211 + - uid: 10402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 10211 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 10211 + - uid: 10404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 10211 + - uid: 10405 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 10211 +- proto: Rack + entities: + - uid: 10406 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 10211 +- proto: RagItem + entities: + - uid: 10407 + components: + - type: Transform + pos: 14.2543335,-4.393833 + parent: 10211 +- proto: ScalpelAdvanced + entities: + - uid: 10408 + components: + - type: Transform + pos: 13.509644,7.55578 + parent: 10211 +- proto: SheetPlastic10 + entities: + - uid: 10409 + components: + - type: Transform + pos: 15.384644,7.64953 + parent: 10211 +- proto: SheetSteel10 + entities: + - uid: 10410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.445801,-0.5527762 + parent: 10211 +- proto: ShuttleWindow + entities: + - uid: 10411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 10211 + - uid: 10412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 10211 + - uid: 10413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 10211 + - uid: 10414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 10211 + - uid: 10415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 10211 + - uid: 10416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 10211 + - uid: 10417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 10211 + - uid: 10418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 10211 + - uid: 10419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 10211 +- proto: Sink + entities: + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 10211 +- proto: SpawnInhabitantTranslocatedVeterinarian + entities: + - uid: 12 + components: + - type: Transform + pos: 7.5,2.5 + parent: 10211 +- proto: SpawnMobMedibot + entities: + - uid: 10421 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 10211 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 10422 + components: + - type: Transform + pos: 14.559021,-4.440708 + parent: 10211 +- proto: StasisBed + entities: + - uid: 10423 + components: + - type: Transform + pos: 11.5,6.5 + parent: 10211 + - uid: 10424 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 10211 + - uid: 10425 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 10211 + - uid: 10426 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 10211 + - uid: 10427 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 10211 + - uid: 10428 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 10211 +- proto: Stunprod + entities: + - uid: 10429 + components: + - type: Transform + pos: 14.559021,-10.373623 + parent: 10211 +- proto: TableGlass + entities: + - uid: 10430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 10211 + - uid: 10431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 10211 + - uid: 10432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 10211 + - uid: 10433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 10211 + - uid: 10434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 10211 + - uid: 10435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 10211 +- proto: TableReinforced + entities: + - uid: 10436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 10211 + - uid: 10437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 10211 + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 10211 + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 10211 + - uid: 10440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 10211 + - uid: 10441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 10211 + - uid: 10442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 10211 + - uid: 10443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 10211 + - uid: 10444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 10211 + - uid: 10445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 10211 + - uid: 10446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 10211 + - uid: 10447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 10211 + - uid: 10448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 10211 + - uid: 10449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 10211 + - uid: 10450 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 10211 + - uid: 10451 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 10211 +- proto: TableWood + entities: + - uid: 10452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 10211 + - uid: 10453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 10211 + - uid: 10454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 10211 +- proto: ToiletDirtyWater + entities: + - uid: 10455 + components: + - type: Transform + pos: 3.5,7.5 + parent: 10211 +- proto: ToolboxMechanicalFilled + entities: + - uid: 10456 + components: + - type: Transform + pos: 12.492676,-1.5137137 + parent: 10211 +- proto: ToyMouse + entities: + - uid: 10457 + components: + - type: Transform + pos: 5.4999084,-2.317397 + parent: 10211 +- proto: VendingMachineCoffee + entities: + - uid: 10458 + components: + - type: Transform + pos: 5.5,7.5 + parent: 10211 +- proto: VendingMachineDiscount + entities: + - uid: 10459 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 10211 +- proto: VendingMachineSnack + entities: + - uid: 10460 + components: + - type: Transform + pos: 9.5,7.5 + parent: 10211 +- proto: VendingMachineWallMedical + entities: + - uid: 10461 + components: + - type: Transform + pos: 5.5,0.5 + parent: 10211 + - type: Fixtures + fixtures: {} + - uid: 10462 + components: + - type: Transform + pos: 9.5,0.5 + parent: 10211 + - type: Fixtures + fixtures: {} +- proto: WallShuttle + entities: + - uid: 10463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 10211 + - uid: 10464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 10211 + - uid: 10465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 10211 + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 10211 + - uid: 10467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 10211 + - uid: 10468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 10211 + - uid: 10469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 10211 + - uid: 10470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 10211 + - uid: 10471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 10211 + - uid: 10472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 10211 + - uid: 10473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 10211 + - uid: 10474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 10211 + - uid: 10475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 10211 + - uid: 10476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 10211 + - uid: 10477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 10211 + - uid: 10478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 10211 + - uid: 10479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 10211 + - uid: 10480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 10211 + - uid: 10481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 10211 + - uid: 10482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 10211 + - uid: 10483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 10211 + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 10211 + - uid: 10485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 10211 + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 10211 + - uid: 10487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 10211 + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 10211 + - uid: 10489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 10211 + - uid: 10490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 10211 + - uid: 10491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 10211 + - uid: 10492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 10211 + - uid: 10493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 10211 + - uid: 10494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 10211 + - uid: 10495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 10211 + - uid: 10496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 10211 + - uid: 10497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 10211 + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 10211 + - uid: 10499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 10211 + - uid: 10500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 10211 + - uid: 10501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 10211 + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 10211 + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 10211 + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 10211 + - uid: 10505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 10211 + - uid: 10506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 10211 + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 10211 + - uid: 10508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 10211 + - uid: 10509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 10211 + - uid: 10510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 10211 + - uid: 10511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 10211 + - uid: 10512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 10211 + - uid: 10513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 10211 + - uid: 10514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 10211 + - uid: 10515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 10211 + - uid: 10516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 10211 + - uid: 10517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 10211 + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 10211 + - uid: 10519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 10211 + - uid: 10520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 10211 + - uid: 10521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 10211 + - uid: 10522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 10211 + - uid: 10523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 10211 + - uid: 10524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 10211 + - uid: 10525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 10211 + - uid: 10526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 10211 + - uid: 10527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 10211 + - uid: 10528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 10211 + - uid: 10529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 10211 + - uid: 10530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 10211 + - uid: 10531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 10211 + - uid: 10532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 10211 + - uid: 10533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 10211 + - uid: 10534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 10211 + - uid: 10535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 10211 + - uid: 10536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 10211 + - uid: 10537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 10211 + - uid: 10538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 10211 + - uid: 10539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 10211 + - uid: 10540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 10211 + - uid: 10541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 10211 + - uid: 10542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 10211 + - uid: 10543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 10211 + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 10211 + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 10211 + - uid: 10546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 10211 + - uid: 10547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 10211 + - uid: 10548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 10211 + - uid: 10549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 10211 + - uid: 10550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 10211 + - uid: 10551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 10211 + - uid: 10552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 10211 + - uid: 10553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 10211 + - uid: 10554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 10211 + - uid: 10555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 10211 + - uid: 10556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 10211 + - uid: 10557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 10211 + - uid: 10558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 10211 + - uid: 10559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 10211 + - uid: 10560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 10211 + - uid: 10561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 10211 + - uid: 10562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 10211 + - uid: 10563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 10211 + - uid: 10564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 10211 + - uid: 10565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 10211 + - uid: 10566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 10211 + - uid: 10567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 10211 + - uid: 10568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 10211 + - uid: 10569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 10211 + - uid: 10570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 10211 + - uid: 10571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 10211 + - uid: 10572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 10211 + - uid: 10573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 10211 + - uid: 10574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 10211 + - uid: 10575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 10211 + - uid: 10576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 10211 +- proto: WarpPoint + entities: + - uid: 10577 + components: + - type: Transform + pos: 10.5,2.5 + parent: 10211 + - type: WarpPoint + location: Ветеринарная Клиника +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 10338 + components: + - type: Transform + parent: 10336 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeldingFuelTankFull + entities: + - uid: 10578 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 10211 +... diff --git a/Resources/Maps/_Wega/Lavaland/luxuriouscapsule.yml b/Resources/Maps/_Wega/Lavaland/luxuriouscapsule.yml new file mode 100644 index 00000000000..fb002871c90 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/luxuriouscapsule.yml @@ -0,0 +1,973 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/27/2026 17:15:16 + entityCount: 129 +maps: [] +grids: +- 9072 +orphans: +- 9072 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 9072 + components: + - type: MetaData + name: Капсула + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HQAAAAAAAB0AAAAAAAAdAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAdAAAAAAAAHQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1911 + 1: 32768 + 0,-1: + 0: 30480 + 1: 128 + -1,0: + 0: 1228 + 2: 2048 + 1: 8192 + -1,-1: + 0: 52224 + 1: 32 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 20.078888 + Nitrogen: 75.53487 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AcousticGuitarInstrument + entities: + - uid: 9074 + components: + - type: Transform + parent: 9073 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 9073 +- proto: AdminInstantEffectSmoke3 + entities: + - uid: 1 + components: + - type: Transform + pos: 0.6997895,-0.436239 + parent: 9072 + - uid: 2 + components: + - type: Transform + pos: 0.059164524,0.579386 + parent: 9072 +- proto: AirlockMiningGlassLocked + entities: + - uid: 9077 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 9072 +- proto: APCBasic + entities: + - uid: 20 + components: + - type: Transform + pos: -0.5,3.5 + parent: 9072 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 9078 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 9072 +- proto: AtmosFixBlockerMarker + entities: + - uid: 9079 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 9072 + - uid: 9080 + components: + - type: Transform + pos: -2.5,3.5 + parent: 9072 + - uid: 9081 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 9072 + - uid: 9082 + components: + - type: Transform + pos: 3.5,3.5 + parent: 9072 +- proto: Bed + entities: + - uid: 9083 + components: + - type: Transform + pos: 0.5,1.5 + parent: 9072 +- proto: BedsheetSpawner + entities: + - uid: 9084 + components: + - type: Transform + pos: 0.5,1.5 + parent: 9072 +- proto: CableApcExtension + entities: + - uid: 9085 + components: + - type: Transform + pos: -0.5,3.5 + parent: 9072 + - uid: 9086 + components: + - type: Transform + pos: -0.5,2.5 + parent: 9072 + - uid: 9087 + components: + - type: Transform + pos: -0.5,1.5 + parent: 9072 + - uid: 9088 + components: + - type: Transform + pos: -0.5,0.5 + parent: 9072 + - uid: 9089 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 9072 + - uid: 9090 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 9072 + - uid: 9091 + components: + - type: Transform + pos: -1.5,0.5 + parent: 9072 + - uid: 9092 + components: + - type: Transform + pos: 0.5,0.5 + parent: 9072 + - uid: 9093 + components: + - type: Transform + pos: 1.5,0.5 + parent: 9072 + - uid: 9094 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9072 +- proto: CableHV + entities: + - uid: 21 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 9072 + - uid: 22 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 9072 + - uid: 23 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 9072 + - uid: 24 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 9072 + - uid: 25 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 9072 + - uid: 26 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9072 + - uid: 27 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 9072 +- proto: CableMV + entities: + - uid: 11 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 9072 + - uid: 14 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9072 + - uid: 15 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 9072 + - uid: 16 + components: + - type: Transform + pos: -0.5,0.5 + parent: 9072 + - uid: 17 + components: + - type: Transform + pos: -0.5,1.5 + parent: 9072 + - uid: 18 + components: + - type: Transform + pos: -0.5,2.5 + parent: 9072 + - uid: 19 + components: + - type: Transform + pos: -0.5,3.5 + parent: 9072 +- proto: CarpetBlack + entities: + - uid: 9095 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 9072 + - uid: 9096 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9072 + - uid: 9097 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 9072 + - uid: 9098 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 9072 + - uid: 9099 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 9072 + - uid: 9100 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 9072 + - uid: 9101 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 9072 + - uid: 9102 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 9072 + - uid: 9103 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 9072 + - uid: 9104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 9072 + - uid: 9105 + components: + - type: Transform + pos: 1.5,1.5 + parent: 9072 + - uid: 9106 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9072 + - uid: 9107 + components: + - type: Transform + pos: 2.5,1.5 + parent: 9072 + - uid: 9108 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 9072 +- proto: ClothingUniformJumpskirtElegantMaid + entities: + - uid: 9109 + components: + - type: Transform + pos: 2.5347824,1.46359 + parent: 9072 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] +- proto: ComfyChair + entities: + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 9072 + - uid: 9111 + components: + - type: Transform + pos: 2.5,1.5 + parent: 9072 +- proto: CrateSecure + entities: + - uid: 9073 + components: + - type: Transform + pos: -0.5,2.5 + parent: 9072 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9075 + - 9074 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CurtainsBlack + entities: + - uid: 9112 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9072 +- proto: DrinkGlass + entities: + - uid: 9114 + components: + - type: Transform + pos: 2.6885471,0.69257486 + parent: 9072 + - uid: 9115 + components: + - type: Transform + pos: 2.3053417,-0.008496165 + parent: 9072 +- proto: DrinkWineBottleFull + entities: + - uid: 9116 + components: + - type: Transform + pos: 2.3832817,0.8029286 + parent: 9072 +- proto: FloorDrain + entities: + - uid: 9117 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9072 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonkpocket + entities: + - uid: 9075 + components: + - type: Transform + parent: 9073 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 9073 +- proto: FoodBurgerSuper + entities: + - uid: 9118 + components: + - type: Transform + pos: 2.6679192,0.054575205 + parent: 9072 +- proto: FoodSaladValid + entities: + - uid: 9119 + components: + - type: Transform + pos: 2.5142097,-0.31543463 + parent: 9072 +- proto: GasPassiveVent + entities: + - uid: 9120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 9072 +- proto: GasPipeBend + entities: + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 9072 +- proto: GasPort + entities: + - uid: 9122 + components: + - type: Transform + pos: -1.5,2.5 + parent: 9072 +- proto: GeneratorWallmountBasic + entities: + - uid: 12 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 9072 +- proto: HandheldGPSBasic + entities: + - uid: 9123 + components: + - type: Transform + pos: 0.5890312,2.578941 + parent: 9072 +- proto: KitchenMicrowave + entities: + - uid: 9124 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9072 +- proto: MedkitBruteFilled + entities: + - uid: 9125 + components: + - type: Transform + pos: -1.3692131,0.46112218 + parent: 9072 +- proto: MedkitFilled + entities: + - uid: 9126 + components: + - type: Transform + pos: -1.5693951,0.54875594 + parent: 9072 +- proto: OxygenCanister + entities: + - uid: 10 + components: + - type: Transform + anchored: True + pos: -1.5,2.5 + parent: 9072 + - type: Physics + bodyType: Static +- proto: PottedPlantRandom + entities: + - uid: 9127 + components: + - type: Transform + pos: 0.5,0.5 + parent: 9072 +- proto: Poweredlight + entities: + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 9072 + - uid: 9129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 9072 +- proto: Shower + entities: + - uid: 9 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9072 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: SignNTMine + entities: + - uid: 9130 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 9072 + - type: Fixtures + fixtures: {} +- proto: SignSurvival + entities: + - uid: 9131 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9132 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9133 + components: + - type: Transform + pos: -2.5,0.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9134 + components: + - type: Transform + pos: -2.5,2.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9135 + components: + - type: Transform + pos: -1.5,3.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9136 + components: + - type: Transform + pos: 0.5,3.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9137 + components: + - type: Transform + pos: 2.5,3.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9138 + components: + - type: Transform + pos: 3.5,2.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9139 + components: + - type: Transform + pos: 3.5,0.5 + parent: 9072 + - type: Fixtures + fixtures: {} + - uid: 9140 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 9072 + - type: Fixtures + fixtures: {} +- proto: SinkWide + entities: + - uid: 9141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 9072 +- proto: StasisBed + entities: + - uid: 9142 + components: + - type: Transform + pos: -1.5,1.5 + parent: 9072 +- proto: SubstationWallBasic + entities: + - uid: 13 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 9072 +- proto: TableFancyBlack + entities: + - uid: 9143 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 9072 + - uid: 9144 + components: + - type: Transform + pos: 2.5,0.5 + parent: 9072 + - uid: 9145 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9072 +- proto: TableReinforced + entities: + - uid: 9146 + components: + - type: Transform + pos: -1.5,0.5 + parent: 9072 + - uid: 9147 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9072 +- proto: ToiletDirtyWater + entities: + - uid: 9148 + components: + - type: Transform + pos: 2.5,2.5 + parent: 9072 +- proto: VendingMachineWallMedicalCivilian + entities: + - uid: 9149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 9072 + - type: Fixtures + fixtures: {} +- proto: WallMining + entities: + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 9072 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 9072 + - uid: 9152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 9072 + - uid: 9153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 9072 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 9072 + - uid: 9155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 9072 + - uid: 9156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 9072 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 9072 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 9072 + - uid: 9159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 9072 + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 9072 + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 9072 + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 9072 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 9072 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 9072 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 9072 + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 9072 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 9072 + - uid: 9168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 9072 +- proto: WallMiningDiagonal + entities: + - uid: 9169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 9072 + - uid: 9170 + components: + - type: Transform + pos: -2.5,3.5 + parent: 9072 + - uid: 9171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 9072 + - uid: 9172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 9072 +- proto: WarpPoint + entities: + - uid: 9173 + components: + - type: MetaData + name: Элитная Капсула + - type: Transform + pos: 0.5,0.5 + parent: 9072 +- proto: WindoorSecure + entities: + - uid: 9174 + components: + - type: Transform + pos: -0.5,0.5 + parent: 9072 + - uid: 9175 + components: + - type: Transform + pos: 1.5,2.5 + parent: 9072 +- proto: WindowReinforcedDirectional + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,2.5 + parent: 9072 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 9072 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 9072 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 9072 + - uid: 7 + components: + - type: Transform + pos: 0.5,0.5 + parent: 9072 + - uid: 8 + components: + - type: Transform + pos: -1.5,0.5 + parent: 9072 +... diff --git a/Resources/Maps/_Wega/Lavaland/miner_tomb.yml b/Resources/Maps/_Wega/Lavaland/miner_tomb.yml new file mode 100644 index 00000000000..007519f63fd --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/miner_tomb.yml @@ -0,0 +1,537 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:20:21 + entityCount: 54 +maps: [] +grids: +- 6196 +orphans: +- 6196 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 6196 + components: + - type: MetaData + name: Капсула + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EQAAAAAAABEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 14: 1,-1 + 15: 0,-1 + 16: -1,-1 + 17: -1,0 + 18: 0,0 + 19: 1,0 + 21: 0,1 + 22: 1,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 8: -1,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 51 + 1: 1024 + 0,-1: + 0: 12544 + 1: 1024 + -1,0: + 0: 136 + 1: 1024 + -1,-1: + 0: 32768 + 1: 1024 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirCanister + entities: + - uid: 6197 + components: + - type: Transform + anchored: True + pos: -0.5,1.5 + parent: 6196 + - type: Physics + bodyType: Static +- proto: AirlockMiningGlass + entities: + - uid: 6198 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6196 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6199 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6196 +- proto: BaseAPC + entities: + - uid: 6216 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6196 + - type: BatterySelfRecharger + autoRechargeRate: 5000 + - type: Fixtures + fixtures: {} +- proto: Bed + entities: + - uid: 6204 + components: + - type: Transform + pos: 1.5,0.5 + parent: 6196 +- proto: BedsheetBlack + entities: + - uid: 6205 + components: + - type: Transform + pos: 1.5,0.5 + parent: 6196 +- proto: CableApcExtension + entities: + - uid: 6206 + components: + - type: Transform + pos: 0.5,2.5 + parent: 6196 + - uid: 6207 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6196 + - uid: 6208 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6196 + - uid: 6209 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6196 + - uid: 6210 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 6196 +- proto: CombatKnife + entities: + - uid: 6211 + components: + - type: Transform + pos: -0.4568138,-0.4375 + parent: 6196 +- proto: CrateSecure + entities: + - uid: 6212 + components: + - type: Transform + pos: 0.5,1.5 + parent: 6196 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6213 + - 6214 + - 6215 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Crowbar + entities: + - uid: 2 + components: + - type: Transform + pos: 1.4990234,-0.5185547 + parent: 6196 +- proto: d6Dice + entities: + - uid: 6213 + components: + - type: Transform + parent: 6212 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyMedipen + entities: + - uid: 6214 + components: + - type: Transform + parent: 6212 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocket + entities: + - uid: 6215 + components: + - type: Transform + parent: 6212 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 6217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 6196 +- proto: GasPipeBend + entities: + - uid: 6218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 6196 +- proto: GasPort + entities: + - uid: 6219 + components: + - type: Transform + pos: -0.5,1.5 + parent: 6196 +- proto: HandheldGPSBasic + entities: + - uid: 6220 + components: + - type: Transform + pos: 1.565342,1.6500413 + parent: 6196 +- proto: PartRodMetal1 + entities: + - uid: 6221 + components: + - type: Transform + pos: 1.5837402,-0.5062087 + parent: 6196 +- proto: Pickaxe + entities: + - uid: 6222 + components: + - type: Transform + pos: 0.48091888,0.5484788 + parent: 6196 +- proto: PoweredSmallLight + entities: + - uid: 6223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 6196 +- proto: PuddleBlood + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6196 + - uid: 4 + components: + - type: Transform + pos: 0.5,0.5 + parent: 6196 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 6196 +- proto: SignSurvival + entities: + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 6196 + - type: Fixtures + fixtures: {} + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 6196 + - type: Fixtures + fixtures: {} +- proto: StasisBed + entities: + - uid: 6233 + components: + - type: Transform + pos: -0.5,0.5 + parent: 6196 +- proto: TableReinforced + entities: + - uid: 6234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 6196 + - uid: 6235 + components: + - type: Transform + pos: 1.5,1.5 + parent: 6196 +- proto: WallMining + entities: + - uid: 6236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 6196 + - uid: 6237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 6196 + - uid: 6238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 6196 + - uid: 6239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 6196 + - uid: 6240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 6196 + - uid: 6241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 6196 + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 6196 + - uid: 6243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 6196 + - uid: 6244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 6196 + - uid: 6245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 6196 + - uid: 6246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 6196 +- proto: WallMiningDiagonal + entities: + - uid: 6247 + components: + - type: Transform + pos: -1.5,2.5 + parent: 6196 + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 6196 + - uid: 6249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 6196 + - uid: 6250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 6196 +... diff --git a/Resources/Maps/_Wega/Lavaland/necropolis.yml b/Resources/Maps/_Wega/Lavaland/necropolis.yml new file mode 100644 index 00000000000..10939c20187 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/necropolis.yml @@ -0,0 +1,40992 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/28/2026 15:30:12 + entityCount: 6187 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt + 3: FloorNecropolis + 2: PlatingBrass +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5,-0.4707198 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-3: + ind: -1,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 2,0: + ind: 2,0 + tiles: AwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -4,-2: + ind: -4,-2 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -4,-1: + ind: -4,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -4,0: + ind: -4,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 4,-1: + ind: 4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -4,-3: + ind: -4,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,-3: + ind: -3,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-3: + ind: -2,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 3,-3: + ind: 3,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 4,-3: + ind: 4,-3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 0: -6.881117,-18.700922 + 2: 3.6279383,-20.700956 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1: 4.0699954,-17.867588 + - node: + color: '#FFFFFFFF' + id: StencilLetterA + decals: + 6: 1,8 + - node: + color: '#FFFFFFFF' + id: StencilLetterL + decals: + 7: 2,8 + - node: + color: '#FFFFFFFF' + id: StencilLetterO + decals: + 5: -1,8 + - node: + color: '#FFFFFFFF' + id: StencilLetterS + decals: + 3: -2,8 + 4: 0,8 + - node: + angle: -0.17453292519943295 rad + color: '#FFFFFFFF' + id: StencilSymbolExclaim + decals: + 8: 2.604688,8.022081 + - node: + angle: -0.4363323129985824 rad + color: '#FFFFFFFF' + id: StencilSymbolQuestion + decals: + 9: 3.0694506,7.960928 + - node: + color: '#FFC800FF' + id: rune1 + decals: + 11: 38.017284,-2.0512912 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: ExplosionAirtightGrid + - type: RadiationGridResistance +- proto: BasaltRandom + entities: + - uid: 1079 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 4781 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 1 + - uid: 4782 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 1 + - uid: 4783 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 1 + - uid: 4784 + components: + - type: Transform + pos: -56.5,3.5 + parent: 1 + - uid: 4785 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 1 + - uid: 4786 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 1 + - uid: 4787 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 1 + - uid: 4788 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 1 + - uid: 4789 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 1 + - uid: 4790 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 1 + - uid: 4791 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 1 + - uid: 4792 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - uid: 4793 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1 + - uid: 4794 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1 + - uid: 4795 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 1 + - uid: 4796 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 4797 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 4798 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 4799 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 4800 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 4801 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 4802 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 4803 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 4804 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 1 + - uid: 4805 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 + - uid: 4806 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 1 + - uid: 4807 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 1 + - uid: 4808 + components: + - type: Transform + pos: 66.5,-12.5 + parent: 1 + - uid: 4810 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 1 + - uid: 4811 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 1 + - uid: 6026 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 1 + - uid: 6037 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 1 + - uid: 6048 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 1 + - uid: 6118 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1 + - uid: 6119 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 1 + - uid: 6120 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 1 + - uid: 6121 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1 + - uid: 6122 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 1 + - uid: 6123 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 1 + - uid: 6124 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 1 + - uid: 6125 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - uid: 6126 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 6127 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 + - uid: 6128 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1 + - uid: 6129 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 1 + - uid: 6130 + components: + - type: Transform + pos: 46.5,-25.5 + parent: 1 + - uid: 6131 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 1 + - uid: 6132 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 1 + - uid: 6133 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 1 +- proto: BookRandomStory + entities: + - uid: 6181 + components: + - type: Transform + pos: 45.520687,-1.4936305 + parent: 1 +- proto: Bookshelf + entities: + - uid: 2108 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - uid: 2109 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - uid: 2116 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - uid: 2117 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 2118 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 2119 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 2120 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 2121 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 2122 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 2123 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 2124 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 2125 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 1 + - uid: 2126 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 1 + - uid: 2127 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 2128 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 4709 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 4710 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 4711 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 1 + - uid: 4712 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 1 + - uid: 4713 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 4714 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - uid: 4715 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 4716 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - uid: 4717 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1 + - uid: 4718 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1 + - uid: 4719 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1 + - uid: 4720 + components: + - type: Transform + pos: 39.5,4.5 + parent: 1 + - uid: 4721 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1 + - uid: 4722 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1 + - uid: 4723 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1 + - uid: 4724 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1 + - uid: 4779 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 +- proto: ChairBrass + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 2087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 1 + - uid: 2092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + - uid: 2242 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 2243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 +- proto: ClockworkGirder + entities: + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 1868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 1970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + - uid: 1971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 1977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 1981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 2181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 1 + - uid: 2191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 1 + - uid: 2200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1 + - uid: 2205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + - uid: 2208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + - uid: 2212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1 + - uid: 2213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 1 + - uid: 2215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,5.5 + parent: 1 + - uid: 2218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 1 + - uid: 2223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 1 + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + - uid: 2225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 1 + - uid: 2226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 1 + - uid: 2227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 1 +- proto: ClothingHandsKnuckleDustersBrass + entities: + - uid: 6183 + components: + - type: Transform + pos: 35.522724,-7.398723 + parent: 1 +- proto: CrateNecropolisFilled + entities: + - uid: 1200 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 1 + - uid: 1900 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 1 + - uid: 2249 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 +- proto: CultAltarSpawner + entities: + - uid: 6182 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 1 +- proto: FireExtinguisher + entities: + - uid: 6158 + components: + - type: Transform + pos: 10.564152,-28.366238 + parent: 1 +- proto: FloorEntityBurntBlock + entities: + - uid: 309 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 315 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 416 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2373 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2374 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2376 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntCenter + entities: + - uid: 296 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntSlab + entities: + - uid: 30 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 532 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 536 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 696 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntSurroundingTile + entities: + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntTile + entities: + - uid: 689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedBlock + entities: + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 397 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 507 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 514 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 521 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 547 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 549 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 711 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1787 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2037 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2056 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2327 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2355 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3109 + components: + - type: Transform + pos: 41.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3788 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedCenter + entities: + - uid: 295 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 298 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 300 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 301 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 302 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 303 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 304 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 705 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1503 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1747 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1896 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1899 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1929 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2060 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2111 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2232 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2233 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2234 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2235 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2236 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2378 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2926 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2946 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3081 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3082 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3083 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3084 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3085 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3086 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3087 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3088 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3089 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3090 + components: + - type: Transform + pos: 40.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3092 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3094 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3095 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6179 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedSlab + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 167 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 552 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 586 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 616 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1326 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1327 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1341 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1343 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1560 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1654 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1664 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1735 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1749 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1862 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1982 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1983 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2063 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2097 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2244 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2269 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedSurrounding + entities: + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 515 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2379 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2685 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3257 + components: + - type: Transform + pos: 36.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3339 + components: + - type: Transform + pos: 42.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedSurroundingTile + entities: + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3188 + components: + - type: Transform + pos: 42.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3318 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3319 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3453 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3684 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3685 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4003 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedTile + entities: + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 175 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 262 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 348 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 366 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 480 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 525 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 587 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 594 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 606 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 609 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 636 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 644 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 646 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 670 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 673 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 677 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 679 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 698 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 704 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 710 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 716 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 725 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 726 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-31.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1064 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1068 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-36.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1078 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1080 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-36.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1097 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1369 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1824 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1913 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1940 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2229 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2396 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2397 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3025 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3736 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3870 + components: + - type: Transform + pos: 32.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3904 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3945 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3954 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3961 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3962 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3965 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3993 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3998 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4002 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4027 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4529 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6148 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6149 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6150 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6153 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineBlock + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 255 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 256 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 263 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 264 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 265 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 269 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 353 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 719 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 720 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1649 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2025 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2139 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2294 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2323 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2340 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2347 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2348 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2349 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2387 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2388 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2389 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2390 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2404 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3103 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3107 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3108 + components: + - type: Transform + pos: 35.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3732 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3733 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3734 + components: + - type: Transform + pos: 37.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3735 + components: + - type: Transform + pos: 39.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3761 + components: + - type: Transform + pos: 44.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3762 + components: + - type: Transform + pos: 43.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3763 + components: + - type: Transform + pos: 42.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3764 + components: + - type: Transform + pos: 40.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3765 + components: + - type: Transform + pos: 39.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3766 + components: + - type: Transform + pos: 38.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3767 + components: + - type: Transform + pos: 37.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3768 + components: + - type: Transform + pos: 36.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3769 + components: + - type: Transform + pos: 41.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3770 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3771 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3772 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3773 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3774 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineCenter + entities: + - uid: 10 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 608 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 706 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 707 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1930 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2298 + components: + - type: Transform + pos: 24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2299 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2300 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2301 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2314 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2315 + components: + - type: Transform + pos: 38.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2316 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2317 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2354 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2956 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3077 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3078 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3079 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3080 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3446 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineSlab + entities: + - uid: 68 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 77 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 88 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 253 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 530 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 533 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 534 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 535 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 537 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 595 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 596 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 598 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 600 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 601 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 602 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 603 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1510 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2260 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2261 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2262 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3786 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3787 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4627 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4628 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4629 + components: + - type: Transform + pos: 35.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4630 + components: + - type: Transform + pos: 36.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4631 + components: + - type: Transform + pos: 37.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4632 + components: + - type: Transform + pos: 39.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4633 + components: + - type: Transform + pos: 40.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4634 + components: + - type: Transform + pos: 41.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4635 + components: + - type: Transform + pos: 42.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4636 + components: + - type: Transform + pos: 43.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4637 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4638 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4639 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4640 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4641 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4642 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4643 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4644 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4645 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4646 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4647 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4648 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4649 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4650 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4651 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineSurrounding + entities: + - uid: 147 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 436 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 605 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1568 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1594 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1638 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1841 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1843 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1927 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1928 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1934 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2049 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2051 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2054 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2057 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2059 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2061 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2144 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2309 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2310 + components: + - type: Transform + pos: 38.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2353 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2710 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3073 + components: + - type: Transform + pos: 38.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3074 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3075 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3076 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineSurroundingTile + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 231 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 234 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 236 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 238 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 242 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 249 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 320 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 321 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 327 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 611 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2272 + components: + - type: Transform + pos: 24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2283 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2291 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2308 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2313 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2328 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2336 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2339 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2360 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2361 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3373 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3375 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3573 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 3720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineTile + entities: + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 19 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 158 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 187 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 199 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 335 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 336 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 337 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 343 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 344 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 345 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 346 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 347 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 419 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 420 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 421 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 423 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 424 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 425 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 426 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 429 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 431 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 433 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 437 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 438 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 439 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 440 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 441 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 442 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 443 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 444 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 445 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 446 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 447 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 448 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 449 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 550 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 553 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 554 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 556 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 613 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 614 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 615 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 619 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 620 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 621 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 622 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 623 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 624 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 666 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 667 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 684 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 714 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 721 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 915 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1014 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1048 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1075 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1083 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1085 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-35.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1091 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1111 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1140 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1144 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1151 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1167 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1172 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1187 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1199 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1202 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1248 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1285 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1286 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1297 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1300 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1311 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1314 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1318 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1328 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1342 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1360 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1374 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1375 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1382 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1383 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1401 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1408 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1447 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1449 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1459 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1460 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1484 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1490 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1494 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1498 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1511 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1523 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1525 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1526 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1528 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1566 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1596 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1615 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1622 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1634 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1652 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1658 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1666 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1671 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1680 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1705 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1752 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1762 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1763 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1780 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1784 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1798 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1802 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1812 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1815 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1854 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1870 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1878 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1880 + components: + - type: Transform + pos: -25.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1890 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1910 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1921 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1924 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1937 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1986 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1987 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1988 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 1995 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2002 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2003 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2015 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2017 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2020 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2030 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2043 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2045 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2052 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2066 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2077 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2078 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2079 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2110 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2131 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2132 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2134 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2136 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2196 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2197 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2198 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2199 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2201 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2202 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2203 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2204 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2206 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2207 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2219 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2231 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2245 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2248 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2252 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2263 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2267 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2285 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2293 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2312 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2369 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2375 + components: + - type: Transform + pos: 39.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2401 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2406 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2408 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2415 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2420 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2421 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2422 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 2703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4007 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4028 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4029 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4041 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4552 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4553 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4554 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4555 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4556 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4557 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4558 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4559 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4560 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4561 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4566 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4567 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4569 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4570 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4578 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4584 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4586 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4592 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4594 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4597 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4598 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4600 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4603 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4604 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4613 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4614 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4615 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4626 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4652 + components: + - type: Transform + pos: 44.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4653 + components: + - type: Transform + pos: 44.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4654 + components: + - type: Transform + pos: 44.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4655 + components: + - type: Transform + pos: 43.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4656 + components: + - type: Transform + pos: 43.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4657 + components: + - type: Transform + pos: 43.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4676 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 4678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 204 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - uid: 730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 1 + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 1 + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + - uid: 740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 + - uid: 742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 1 + - uid: 745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 1 + - uid: 746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + - uid: 748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-19.5 + parent: 1 + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1 + - uid: 752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1 + - uid: 756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 1 + - uid: 757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 1 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 1 + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + - uid: 767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + - uid: 768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 1 + - uid: 770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 1 + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + - uid: 773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 1 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 1 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 1 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + - uid: 787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 1 + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 1 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 1 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 1 + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1 + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 1 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 1 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + - uid: 816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 1 + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 1 + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 1 + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 1 + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 1 + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 1 + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 1 + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1 + - uid: 829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 1 + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 1 + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + - uid: 836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + - uid: 837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 1 + - uid: 840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 1 + - uid: 841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 1 + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 1 + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + - uid: 851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 1 + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 1 + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 1 + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 1 + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 1 + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1 + - uid: 885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - uid: 890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 + - uid: 897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1 + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + - uid: 907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + - uid: 912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 1 + - uid: 913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 1 + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 1 + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1 + - uid: 921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + - uid: 925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 + - uid: 926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + - uid: 927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + - uid: 928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 1 + - uid: 929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 1 + - uid: 930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 1 + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 1 + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 1 + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 1 + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1 + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1 + - uid: 938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 1 + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 1 + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 1 + - uid: 941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 1 + - uid: 942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 1 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 1 + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 1 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 1 + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 1 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 1 + - uid: 961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 1 + - uid: 962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 1 + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 1 + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 1 + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 1 + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 1 + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 1 + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1 + - uid: 983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1 + - uid: 986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 1 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 1 + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 1 + - uid: 990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 1 + - uid: 991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 1 + - uid: 992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 1 + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 1 + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 1 + - uid: 995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 1 + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 1 + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 1 + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-17.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-19.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-20.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-2.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-2.5 + parent: 1 + - uid: 1772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 1 + - uid: 1774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 1 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,2.5 + parent: 1 + - uid: 1789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 1 + - uid: 1793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,1.5 + parent: 1 + - uid: 1795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-3.5 + parent: 1 + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-5.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 1 + - uid: 1820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 1 + - uid: 1821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 1 + - uid: 1834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 1 + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-3.5 + parent: 1 + - uid: 1891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1 + - uid: 1892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-4.5 + parent: 1 + - uid: 1918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 1 + - uid: 1919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 1 + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 1 + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1 + - uid: 2064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - uid: 2065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + - uid: 2070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1 + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1 + - uid: 2137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 1 + - uid: 2141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 1 + - uid: 2142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + - uid: 2143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 1 + - uid: 2146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 1 + - uid: 2147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + - uid: 2148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 1 + - uid: 2149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 1 + - uid: 2150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + - uid: 2151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1 + - uid: 2152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 1 + - uid: 2153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + - uid: 2515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 1 + - uid: 2516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 1 + - uid: 2517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 1 + - uid: 2518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 1 + - uid: 2519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 1 + - uid: 2520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 1 + - uid: 2521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 1 + - uid: 2522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 1 + - uid: 2523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 1 + - uid: 2524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 1 + - uid: 2525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 1 + - uid: 2526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 1 + - uid: 2527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 1 + - uid: 2528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 1 + - uid: 2529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 1 + - uid: 2530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 1 + - uid: 2531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 1 + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 1 + - uid: 2533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + - uid: 2534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + - uid: 2535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1 + - uid: 2536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 1 + - uid: 2537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 1 + - uid: 2538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 1 + - uid: 2539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 1 + - uid: 2540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 1 + - uid: 2541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 1 + - uid: 2542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 1 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 1 + - uid: 2544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + - uid: 2545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 1 + - uid: 2546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 1 + - uid: 2547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 1 + - uid: 2548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 1 + - uid: 2549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 1 + - uid: 2550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 1 + - uid: 2551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 1 + - uid: 2552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 1 + - uid: 2553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 1 + - uid: 2554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 1 + - uid: 2555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1 + - uid: 2556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 1 + - uid: 2557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 1 + - uid: 2558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 1 + - uid: 2559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 1 + - uid: 2560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 1 + - uid: 2561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 1 + - uid: 2562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 1 + - uid: 2563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 1 + - uid: 2564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 1 + - uid: 2565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 1 + - uid: 2566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 1 + - uid: 2568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 1 + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 1 + - uid: 2570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 1 + - uid: 2571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 1 + - uid: 2572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 1 + - uid: 2573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 1 + - uid: 2574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 1 + - uid: 2575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 1 + - uid: 2576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 1 + - uid: 2577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-20.5 + parent: 1 + - uid: 2578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 1 + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 1 + - uid: 2580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 1 + - uid: 2581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 1 + - uid: 2582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 1 + - uid: 2583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + - uid: 2584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + - uid: 2585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 1 + - uid: 2586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 1 + - uid: 2587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-20.5 + parent: 1 + - uid: 2588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 1 + - uid: 2589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 1 + - uid: 2590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 1 + - uid: 2591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 1 + - uid: 2592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 1 + - uid: 2593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 1 + - uid: 2594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 1 + - uid: 2595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 1 + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 1 + - uid: 2597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 1 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 1 + - uid: 2599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 1 + - uid: 2600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 1 + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + - uid: 2602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 1 + - uid: 2603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 1 + - uid: 2604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 1 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 1 + - uid: 2606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1 + - uid: 2607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 1 + - uid: 2608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 1 + - uid: 2609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 1 + - uid: 2610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 1 + - uid: 2611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 1 + - uid: 2612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 1 + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 1 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-11.5 + parent: 1 + - uid: 2615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 1 + - uid: 2616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 1 + - uid: 2617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 1 + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 1 + - uid: 2619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 1 + - uid: 2620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 1 + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 1 + - uid: 2622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 1 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 + parent: 1 + - uid: 2624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 1 + - uid: 2625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-22.5 + parent: 1 + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 1 + - uid: 2627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 1 + - uid: 2628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-19.5 + parent: 1 + - uid: 2629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 1 + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 1 + - uid: 2631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 1 + - uid: 2632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 1 + - uid: 2633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 1 + - uid: 2634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 1 + - uid: 2635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 1 + - uid: 2636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 1 + - uid: 2637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 1 + - uid: 2638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 1 + - uid: 2639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 1 + - uid: 2640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 1 + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 1 + - uid: 2642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 1 + - uid: 2643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 1 + - uid: 2644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 1 + - uid: 2645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 1 + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1 + - uid: 2647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1 + - uid: 2648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 1 + - uid: 2649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 1 + - uid: 2650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + - uid: 2651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 1 + - uid: 2652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 1 + - uid: 2653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 1 + - uid: 2654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 1 + - uid: 2655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 1 + - uid: 2656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 1 + - uid: 2657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 1 + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 1 + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 1 + - uid: 2660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 1 + - uid: 2661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 1 + - uid: 2662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 1 + - uid: 2663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 1 + - uid: 2664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 1 + - uid: 2665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 1 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 1 + - uid: 2667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 1 + - uid: 2668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 1 + - uid: 2669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 1 + - uid: 2670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + - uid: 2671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-16.5 + parent: 1 + - uid: 2672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 1 + - uid: 2673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 1 + - uid: 2674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 1 + - uid: 2675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 1 + - uid: 2676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 1 + - uid: 2677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 1 + - uid: 2678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 1 + - uid: 2679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 1 + - uid: 2680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 1 + - uid: 2681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 1 + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 1 + - uid: 2683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 1 + - uid: 2684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + - uid: 2686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 1 + - uid: 2687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 1 + - uid: 2688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 1 + - uid: 2689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 1 + - uid: 2690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 1 + - uid: 2691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 1 + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 1 + - uid: 2693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 1 + - uid: 2694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 1 + - uid: 2696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 1 + - uid: 2697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 1 + - uid: 2698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 1 + - uid: 2699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 1 + - uid: 2700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 1 + - uid: 2701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 1 + - uid: 2702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 1 + - uid: 2704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 1 + - uid: 2705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 1 + - uid: 2706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 1 + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 1 + - uid: 2708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 1 + - uid: 2709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 1 + - uid: 2711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 1 + - uid: 2712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 1 + - uid: 2713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 1 + - uid: 2714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 1 + - uid: 2715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 1 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 1 + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + - uid: 2718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 1 + - uid: 2719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 1 + - uid: 2720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 1 + - uid: 2721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 1 + - uid: 2722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1 + - uid: 2723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 1 + - uid: 2724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 1 + - uid: 2725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 1 + - uid: 2726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 1 + - uid: 2727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 1 + - uid: 2728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 1 + - uid: 2729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 1 + - uid: 2730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 1 + - uid: 2731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 1 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 1 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 1 + - uid: 2734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 1 + - uid: 2735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 1 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 1 + - uid: 2737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-20.5 + parent: 1 + - uid: 2738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-19.5 + parent: 1 + - uid: 2739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-18.5 + parent: 1 + - uid: 2740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 1 + - uid: 2741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 1 + - uid: 2742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 1 + - uid: 2743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 1 + - uid: 2744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 1 + - uid: 2745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-22.5 + parent: 1 + - uid: 2746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 1 + - uid: 2747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 1 + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-19.5 + parent: 1 + - uid: 2749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 1 + - uid: 2750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 1 + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-16.5 + parent: 1 + - uid: 2752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 1 + - uid: 2753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 1 + - uid: 2754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-13.5 + parent: 1 + - uid: 2755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 + parent: 1 + - uid: 2756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 1 + - uid: 2757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-20.5 + parent: 1 + - uid: 2758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-19.5 + parent: 1 + - uid: 2759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 1 + - uid: 2760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-17.5 + parent: 1 + - uid: 2761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 + parent: 1 + - uid: 2762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 1 + - uid: 2763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 1 + - uid: 2764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-13.5 + parent: 1 + - uid: 2769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1 + - uid: 2770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 1 + - uid: 2771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 1 + - uid: 2772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 2773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1 + - uid: 2774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1 + - uid: 2775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 1 + - uid: 2776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + - uid: 2777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 1 + - uid: 2778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 1 + - uid: 2779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + - uid: 2780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 2781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 2782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1 + - uid: 2783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 2784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 1 + - uid: 2785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 1 + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 1 + - uid: 2787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 1 + - uid: 2788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 1 + - uid: 2789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 1 + - uid: 2790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 1 + - uid: 2792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1 + - uid: 2793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 1 + - uid: 2794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 1 + - uid: 2795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 1 + - uid: 2796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 1 + - uid: 2797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 1 + - uid: 2798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 1 + - uid: 2799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 1 + - uid: 2800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 1 + - uid: 2801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + - uid: 2802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 1 + - uid: 2803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + - uid: 2804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 1 + - uid: 2805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 1 + - uid: 2806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1 + - uid: 2807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 1 + - uid: 2808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 2809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 1 + - uid: 2810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 1 + - uid: 2811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1 + - uid: 2812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 1 + - uid: 2813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 1 + - uid: 2814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1 + - uid: 2815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1 + - uid: 2816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 1 + - uid: 2817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 1 + - uid: 2818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 1 + - uid: 2819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 1 + - uid: 2820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-21.5 + parent: 1 + - uid: 2821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 1 + - uid: 2822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 1 + - uid: 2823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1 + - uid: 2824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 1 + - uid: 2825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 1 + - uid: 2826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 1 + - uid: 2827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 1 + - uid: 2828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 1 + - uid: 2829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 1 + - uid: 2830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 1 + - uid: 2831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 1 + - uid: 2832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 1 + - uid: 2833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 1 + - uid: 2834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 1 + - uid: 2835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 1 + - uid: 2836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + - uid: 2837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 1 + - uid: 2838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 1 + - uid: 2839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 1 + - uid: 2840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 1 + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 1 + - uid: 2842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 1 + - uid: 2843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1 + - uid: 2844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1 + - uid: 2845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1 + - uid: 2846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 1 + - uid: 2847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 1 + - uid: 2848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 1 + - uid: 2849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 1 + - uid: 2850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 1 + - uid: 2851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + - uid: 2852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 1 + - uid: 2853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 1 + - uid: 2854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 1 + - uid: 2855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 1 + - uid: 2856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + - uid: 2857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 1 + - uid: 2858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 1 + - uid: 2859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 1 + - uid: 2860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-21.5 + parent: 1 + - uid: 2861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 1 + - uid: 2863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 1 + - uid: 2864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 1 + - uid: 2865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-16.5 + parent: 1 + - uid: 2866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + - uid: 2867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 1 + - uid: 2868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 1 + - uid: 2869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 1 + - uid: 2870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 1 + - uid: 2871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 1 + - uid: 2872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 1 + - uid: 2873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1 + - uid: 2874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 1 + - uid: 2875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 + parent: 1 + - uid: 2876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + - uid: 2877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 1 + - uid: 2878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 1 + - uid: 2879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 1 + - uid: 2880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 1 + - uid: 2881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + - uid: 2882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + - uid: 2883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 1 + - uid: 2884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 1 + - uid: 2885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 1 + - uid: 2886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 1 + - uid: 2887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 1 + - uid: 2888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 1 + - uid: 2889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 1 + - uid: 2890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 1 + - uid: 2891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 1 + - uid: 2892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1 + - uid: 2893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 1 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 1 + - uid: 2895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 1 + - uid: 2896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 1 + - uid: 2897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 1 + - uid: 2898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 1 + - uid: 2899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 1 + - uid: 2900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 1 + - uid: 2901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 1 + - uid: 2902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 1 + - uid: 2903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 1 + - uid: 2904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 1 + - uid: 2905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 1 + - uid: 2906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 1 + - uid: 2907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 1 + - uid: 2908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 1 + - uid: 2909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 1 + - uid: 2910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 1 + - uid: 2911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1 + - uid: 2912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 1 + - uid: 2913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 1 + - uid: 2914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 1 + - uid: 2915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 1 + - uid: 2916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 1 + - uid: 2917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 1 + - uid: 2918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 1 + - uid: 2919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 1 + - uid: 2920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 1 + - uid: 2921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 1 + - uid: 2922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 1 + - uid: 2923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 1 + - uid: 2924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 1 + - uid: 2925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 1 + - uid: 2927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 1 + - uid: 2928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 1 + - uid: 2929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 1 + - uid: 2930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 1 + - uid: 2931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-18.5 + parent: 1 + - uid: 2932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 1 + - uid: 2933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 1 + - uid: 2934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 1 + - uid: 2935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 1 + - uid: 2936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 1 + - uid: 2937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 1 + - uid: 2938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-21.5 + parent: 1 + - uid: 2939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 1 + - uid: 2940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 1 + - uid: 2941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 1 + - uid: 2942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 1 + - uid: 2943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-16.5 + parent: 1 + - uid: 2944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 1 + - uid: 2945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 1 + - uid: 2947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 1 + - uid: 2948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 1 + - uid: 2949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 1 + - uid: 2950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 1 + - uid: 2951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 1 + - uid: 2952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 1 + - uid: 2953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-16.5 + parent: 1 + - uid: 2954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 + parent: 1 + - uid: 2955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 1 + - uid: 2957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 1 + - uid: 2958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 1 + - uid: 2959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-20.5 + parent: 1 + - uid: 2960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 1 + - uid: 2961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-18.5 + parent: 1 + - uid: 2962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-17.5 + parent: 1 + - uid: 2963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-16.5 + parent: 1 + - uid: 2964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-15.5 + parent: 1 + - uid: 2965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 1 + - uid: 2966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 1 + - uid: 2967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 1 + - uid: 2968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 1 + - uid: 2969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 1 + - uid: 2970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-19.5 + parent: 1 + - uid: 2971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-18.5 + parent: 1 + - uid: 2972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 1 + - uid: 2973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 1 + - uid: 2974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 1 + - uid: 2975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 1 + - uid: 2976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 1 + - uid: 2977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 1 + - uid: 2978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 1 + - uid: 2979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 1 + - uid: 2980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 1 + - uid: 2981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 1 + - uid: 2982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 1 + - uid: 2983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 1 + - uid: 2984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 1 + - uid: 2985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 1 + - uid: 2986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 1 + - uid: 2987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 1 + - uid: 2988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 1 + - uid: 2989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 1 + - uid: 2990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 1 + - uid: 2991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 1 + - uid: 2992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 1 + - uid: 2993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 1 + - uid: 2994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 1 + - uid: 2995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 1 + - uid: 2996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 1 + - uid: 2997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 1 + - uid: 2998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 1 + - uid: 2999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 1 + - uid: 3000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 1 + - uid: 3001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 1 + - uid: 3002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 1 + - uid: 3003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 1 + - uid: 3004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 1 + - uid: 3005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 1 + - uid: 3006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 1 + - uid: 3007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 1 + - uid: 3008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 1 + - uid: 3009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 1 + - uid: 3010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 1 + - uid: 3011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 1 + - uid: 3012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 1 + - uid: 3013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 1 + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 1 + - uid: 3015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-22.5 + parent: 1 + - uid: 3016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 1 + - uid: 3017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-20.5 + parent: 1 + - uid: 3018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-19.5 + parent: 1 + - uid: 3019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 1 + - uid: 3020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 1 + - uid: 3021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-21.5 + parent: 1 + - uid: 3022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 1 + - uid: 3023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 1 + - uid: 3024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-15.5 + parent: 1 + - uid: 3026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 1 + - uid: 3027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-16.5 + parent: 1 + - uid: 3028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-20.5 + parent: 1 + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 1 + - uid: 3030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-19.5 + parent: 1 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-18.5 + parent: 1 + - uid: 3032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 1 + - uid: 3033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 1 + - uid: 3034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 1 + - uid: 3035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 1 + - uid: 3037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 1 + - uid: 3038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-21.5 + parent: 1 + - uid: 3039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-20.5 + parent: 1 + - uid: 3040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 1 + - uid: 3041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 + parent: 1 + - uid: 3042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-17.5 + parent: 1 + - uid: 3043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-16.5 + parent: 1 + - uid: 3044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 1 + - uid: 3045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 + parent: 1 + - uid: 3046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 1 + - uid: 3047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 1 + - uid: 3048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-21.5 + parent: 1 + - uid: 3049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-20.5 + parent: 1 + - uid: 3050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-19.5 + parent: 1 + - uid: 3051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 1 + - uid: 3052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 1 + - uid: 3053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 1 + - uid: 3054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-15.5 + parent: 1 + - uid: 3055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-14.5 + parent: 1 + - uid: 3056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 1 + - uid: 3057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 1 + - uid: 3058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 1 + - uid: 3059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 1 + - uid: 3061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 1 + - uid: 3378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 1 + - uid: 3379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 1 + - uid: 3380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 1 + - uid: 3381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 1 + - uid: 3382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 1 + - uid: 3383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 1 + - uid: 3384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 1 + - uid: 3385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 1 + - uid: 3386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-12.5 + parent: 1 + - uid: 3387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 1 + - uid: 3388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 1 + - uid: 3389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-13.5 + parent: 1 + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 1 + - uid: 3391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 1 + - uid: 3392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 1 + - uid: 3393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 1 + - uid: 3394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 1 + - uid: 3395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 1 + - uid: 3396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 1 + - uid: 3397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 + parent: 1 + - uid: 3398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 1 + - uid: 3399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-12.5 + parent: 1 + - uid: 3400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 1 + - uid: 3401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 1 + - uid: 3402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 1 + - uid: 3403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 1 + - uid: 3404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 1 + - uid: 3405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-12.5 + parent: 1 + - uid: 3407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-13.5 + parent: 1 + - uid: 3408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-15.5 + parent: 1 + - uid: 3409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-16.5 + parent: 1 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 1 + - uid: 3412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-17.5 + parent: 1 + - uid: 3413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 1 + - uid: 3414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-18.5 + parent: 1 + - uid: 3415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-17.5 + parent: 1 + - uid: 3416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-18.5 + parent: 1 + - uid: 3417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 1 + - uid: 3418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 1 + - uid: 3419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-15.5 + parent: 1 + - uid: 3420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-18.5 + parent: 1 + - uid: 3421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 1 + - uid: 3422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 1 + - uid: 3423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-21.5 + parent: 1 + - uid: 3424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-22.5 + parent: 1 + - uid: 3425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-15.5 + parent: 1 + - uid: 3426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-17.5 + parent: 1 + - uid: 3427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 1 + - uid: 3428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-18.5 + parent: 1 + - uid: 3429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-20.5 + parent: 1 + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-21.5 + parent: 1 + - uid: 3431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-22.5 + parent: 1 + - uid: 3432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-16.5 + parent: 1 + - uid: 3433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 1 + - uid: 3434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-18.5 + parent: 1 + - uid: 3435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-19.5 + parent: 1 + - uid: 3436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-20.5 + parent: 1 + - uid: 3437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-21.5 + parent: 1 + - uid: 3438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-22.5 + parent: 1 + - uid: 3439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-17.5 + parent: 1 + - uid: 3440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 + parent: 1 + - uid: 3441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 1 + - uid: 3442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-19.5 + parent: 1 + - uid: 3443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-20.5 + parent: 1 + - uid: 3444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-21.5 + parent: 1 + - uid: 3445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-22.5 + parent: 1 + - uid: 3447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-17.5 + parent: 1 + - uid: 3448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 1 + - uid: 3449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-19.5 + parent: 1 + - uid: 3450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 1 + - uid: 3451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 1 + - uid: 3452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-22.5 + parent: 1 + - uid: 3454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-17.5 + parent: 1 + - uid: 3455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 + parent: 1 + - uid: 3456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 1 + - uid: 3457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 1 + - uid: 3458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-22.5 + parent: 1 + - uid: 3459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-21.5 + parent: 1 + - uid: 3460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 + parent: 1 + - uid: 3461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 1 + - uid: 3462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 1 + - uid: 3463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-18.5 + parent: 1 + - uid: 3464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 1 + - uid: 3465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 1 + - uid: 3466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 1 + - uid: 3467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-23.5 + parent: 1 + - uid: 3468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-18.5 + parent: 1 + - uid: 3469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-17.5 + parent: 1 + - uid: 3470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-19.5 + parent: 1 + - uid: 3471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 1 + - uid: 3472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-20.5 + parent: 1 + - uid: 3473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-22.5 + parent: 1 + - uid: 3474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-23.5 + parent: 1 + - uid: 3475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-17.5 + parent: 1 + - uid: 3476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 1 + - uid: 3477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-19.5 + parent: 1 + - uid: 3478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-20.5 + parent: 1 + - uid: 3479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-21.5 + parent: 1 + - uid: 3480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-22.5 + parent: 1 + - uid: 3481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-23.5 + parent: 1 + - uid: 3482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-17.5 + parent: 1 + - uid: 3483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-18.5 + parent: 1 + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-19.5 + parent: 1 + - uid: 3485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 1 + - uid: 3486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-21.5 + parent: 1 + - uid: 3487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-22.5 + parent: 1 + - uid: 3488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 1 + - uid: 3489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-17.5 + parent: 1 + - uid: 3490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-18.5 + parent: 1 + - uid: 3491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-19.5 + parent: 1 + - uid: 3492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-20.5 + parent: 1 + - uid: 3493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-21.5 + parent: 1 + - uid: 3494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-22.5 + parent: 1 + - uid: 3495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 1 + - uid: 3496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-17.5 + parent: 1 + - uid: 3497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-18.5 + parent: 1 + - uid: 3498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-19.5 + parent: 1 + - uid: 3499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-20.5 + parent: 1 + - uid: 3500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-21.5 + parent: 1 + - uid: 3501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-22.5 + parent: 1 + - uid: 3502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-23.5 + parent: 1 + - uid: 3503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 1 + - uid: 3504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 1 + - uid: 3505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-19.5 + parent: 1 + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-20.5 + parent: 1 + - uid: 3507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 1 + - uid: 3508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-22.5 + parent: 1 + - uid: 3509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-23.5 + parent: 1 + - uid: 3510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 + parent: 1 + - uid: 3511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 1 + - uid: 3512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-19.5 + parent: 1 + - uid: 3513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-20.5 + parent: 1 + - uid: 3514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-21.5 + parent: 1 + - uid: 3515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-22.5 + parent: 1 + - uid: 3516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-23.5 + parent: 1 + - uid: 3517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-16.5 + parent: 1 + - uid: 3518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-15.5 + parent: 1 + - uid: 3519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 1 + - uid: 3520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 1 + - uid: 3521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 1 + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 1 + - uid: 3523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 1 + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-15.5 + parent: 1 + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 1 + - uid: 3526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 1 + - uid: 3527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-15.5 + parent: 1 + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 1 + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 1 + - uid: 3530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 1 + - uid: 3531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 1 + - uid: 3532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 1 + - uid: 3533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-15.5 + parent: 1 + - uid: 3534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 1 + - uid: 3535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 1 + - uid: 3536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-15.5 + parent: 1 + - uid: 3537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-14.5 + parent: 1 + - uid: 3538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 1 + - uid: 3539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 1 + - uid: 3540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 1 + - uid: 3541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 1 + - uid: 3542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 1 + - uid: 3543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 1 + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-16.5 + parent: 1 + - uid: 3545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 + parent: 1 + - uid: 3546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-15.5 + parent: 1 + - uid: 3547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-15.5 + parent: 1 + - uid: 3548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-16.5 + parent: 1 + - uid: 3549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 1 + - uid: 3550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 1 + - uid: 3551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 1 + - uid: 3552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 1 + - uid: 3553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 1 + - uid: 3554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 1 + - uid: 3555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-14.5 + parent: 1 + - uid: 3556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-16.5 + parent: 1 + - uid: 3557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-15.5 + parent: 1 + - uid: 3558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-14.5 + parent: 1 + - uid: 3559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 1 + - uid: 3560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-18.5 + parent: 1 + - uid: 3561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-17.5 + parent: 1 + - uid: 3562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-16.5 + parent: 1 + - uid: 3563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-15.5 + parent: 1 + - uid: 3564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-14.5 + parent: 1 + - uid: 3565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-16.5 + parent: 1 + - uid: 3567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-15.5 + parent: 1 + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 + parent: 1 + - uid: 3569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 + parent: 1 + - uid: 3570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 1 + - uid: 3571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 1 + - uid: 3572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-17.5 + parent: 1 + - uid: 3575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 1 + - uid: 3576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 1 + - uid: 3577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-19.5 + parent: 1 + - uid: 3578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 1 + - uid: 3579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 1 + - uid: 3580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-16.5 + parent: 1 + - uid: 3581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 1 + - uid: 3582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-14.5 + parent: 1 + - uid: 3583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 1 + - uid: 3584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-13.5 + parent: 1 + - uid: 3585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 1 + - uid: 3586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 1 + - uid: 3587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-21.5 + parent: 1 + - uid: 3588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 1 + - uid: 3589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-20.5 + parent: 1 + - uid: 3590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-19.5 + parent: 1 + - uid: 3591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 1 + - uid: 3592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-17.5 + parent: 1 + - uid: 3593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 1 + - uid: 3594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-15.5 + parent: 1 + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 1 + - uid: 3596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-13.5 + parent: 1 + - uid: 3597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 1 + - uid: 3598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 1 + - uid: 3599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 1 + - uid: 3600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 1 + - uid: 3601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 1 + - uid: 3602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-20.5 + parent: 1 + - uid: 3603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-19.5 + parent: 1 + - uid: 3604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 1 + - uid: 3605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-17.5 + parent: 1 + - uid: 3606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-16.5 + parent: 1 + - uid: 3607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-15.5 + parent: 1 + - uid: 3608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 1 + - uid: 3609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 1 + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 1 + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 1 + - uid: 3612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 1 + - uid: 3613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 1 + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 1 + - uid: 3615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 1 + - uid: 3616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-19.5 + parent: 1 + - uid: 3617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 1 + - uid: 3618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-17.5 + parent: 1 + - uid: 3619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-16.5 + parent: 1 + - uid: 3620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-15.5 + parent: 1 + - uid: 3621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-14.5 + parent: 1 + - uid: 3622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 1 + - uid: 3623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 1 + - uid: 3624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 1 + - uid: 3625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-10.5 + parent: 1 + - uid: 3626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-9.5 + parent: 1 + - uid: 3627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 1 + - uid: 3628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 1 + - uid: 3629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-19.5 + parent: 1 + - uid: 3630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 1 + - uid: 3631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-17.5 + parent: 1 + - uid: 3632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 1 + - uid: 3633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 1 + - uid: 3634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 1 + - uid: 3635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 1 + - uid: 3636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 1 + - uid: 3637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 1 + - uid: 3638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-9.5 + parent: 1 + - uid: 3639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 1 + - uid: 3640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 1 + - uid: 3641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-20.5 + parent: 1 + - uid: 3642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-19.5 + parent: 1 + - uid: 3643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-18.5 + parent: 1 + - uid: 3644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 1 + - uid: 3645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 1 + - uid: 3646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-15.5 + parent: 1 + - uid: 3647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 1 + - uid: 3648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 1 + - uid: 3649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 1 + - uid: 3650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-13.5 + parent: 1 + - uid: 3651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 1 + - uid: 3652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-9.5 + parent: 1 + - uid: 3653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 1 + - uid: 3654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 1 + - uid: 3655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 1 + - uid: 3656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 1 + - uid: 3657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 1 + - uid: 3658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-14.5 + parent: 1 + - uid: 3659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-15.5 + parent: 1 + - uid: 3660 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 1 + - uid: 3661 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 1 + - uid: 3662 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 1 + - uid: 3663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 1 + - uid: 3664 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 1 + - uid: 3665 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 1 + - uid: 3666 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 1 + - uid: 3667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-15.5 + parent: 1 + - uid: 3668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-13.5 + parent: 1 + - uid: 3669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 1 + - uid: 3670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 1 + - uid: 3671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 1 + - uid: 3672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 1 + - uid: 3673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 1 + - uid: 3674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-17.5 + parent: 1 + - uid: 3675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-16.5 + parent: 1 + - uid: 3676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-15.5 + parent: 1 + - uid: 3677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 1 + - uid: 3678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 1 + - uid: 3679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 1 + - uid: 3680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 1 + - uid: 3681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 1 + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 1 + - uid: 3687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 1 + - uid: 3688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 1 + - uid: 3689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-10.5 + parent: 1 + - uid: 3690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 1 + - uid: 3691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 1 + - uid: 3692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 1 + - uid: 3693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 1 + - uid: 3694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 1 + - uid: 3695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 1 + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-13.5 + parent: 1 + - uid: 3697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-13.5 + parent: 1 + - uid: 3698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-11.5 + parent: 1 + - uid: 3699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-14.5 + parent: 1 + - uid: 3700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 1 + - uid: 3701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 1 + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-14.5 + parent: 1 + - uid: 3703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 1 + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 1 + - uid: 3705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 1 + - uid: 3706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 1 + - uid: 3707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 1 + - uid: 3708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 1 + - uid: 3709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 1 + - uid: 3710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 1 + - uid: 3711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 1 + - uid: 3712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 1 + - uid: 3713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 1 + - uid: 3714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 1 + - uid: 3715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 1 + - uid: 3716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-16.5 + parent: 1 + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-12.5 + parent: 1 + - uid: 3719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-11.5 + parent: 1 + - uid: 3758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 1 + - uid: 3759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 1 + - uid: 3760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 1 + - uid: 5656 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 1 + - uid: 5667 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 1 + - uid: 5678 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 1 + - uid: 5689 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 1 + - uid: 5700 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 1 + - uid: 5701 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 1 + - uid: 5711 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 1 + - uid: 5712 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 1 + - uid: 5721 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 1 + - uid: 5723 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 1 + - uid: 5733 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 1 + - uid: 5744 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 1 + - uid: 5972 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 1 + - uid: 5983 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 1 + - uid: 5993 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 1 + - uid: 6004 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 1 + - uid: 6066 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 1 + - uid: 6072 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 1 + - uid: 6075 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 1 + - uid: 6076 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 1 + - uid: 6078 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 1 + - uid: 6081 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 1 + - uid: 6084 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 1 +- proto: LavalandFloraCactus2 + entities: + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + - uid: 6162 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 1 +- proto: LavalandFloraCactus3 + entities: + - uid: 6156 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 1 + - uid: 6161 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 1 +- proto: LavalandFloraCactus4 + entities: + - uid: 6157 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 1 +- proto: LavalandFloraFireBlossom1 + entities: + - uid: 6015 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: LavalandFloraInocybeMushroom1 + entities: + - uid: 6155 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: LavalandFloraPolyporeMushroom1 + entities: + - uid: 6154 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6159 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: LavalandFloraPorciniMushroom2 + entities: + - uid: 6163 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: LavalandFloraPorciniMushroom4 + entities: + - uid: 6160 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: MaterialWoodPlank1 + entities: + - uid: 4726 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 +- proto: SheetBrass + entities: + - uid: 6184 + components: + - type: Transform + pos: 41.460846,4.516144 + parent: 1 +- proto: SheetBrass1 + entities: + - uid: 4001 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - uid: 4725 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 +- proto: SpawnMegaLegionLavaland + entities: + - uid: 4 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: SpawnMobAncientGoliathLavaland + entities: + - uid: 6186 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 6187 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 6188 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 6189 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 +- proto: SpawnMobLegionLavaland + entities: + - uid: 6166 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 6167 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 6168 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 6169 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 6170 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 6171 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 6172 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 6173 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - uid: 6174 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 6175 + components: + - type: Transform + pos: 37.5,0.5 + parent: 1 + - uid: 6176 + components: + - type: Transform + pos: 38.5,4.5 + parent: 1 + - uid: 6177 + components: + - type: Transform + pos: 40.5,0.5 + parent: 1 + - uid: 6180 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 +- proto: SpawnMobWatcherMagmawing + entities: + - uid: 6165 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - uid: 6185 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 +- proto: StatueAshDrake + entities: + - uid: 589 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] + - uid: 1773 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] + - uid: 1807 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] +- proto: StatueAshDrakeFalling + entities: + - uid: 208 + components: + - type: Transform + pos: 41.5,1.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] + - uid: 217 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] + - uid: 588 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] + - uid: 1823 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 1 + - type: Damageable + damageModifierSet: null + damageContainer: null + - type: Destructible + thresholds: [] +- proto: TableBrass + entities: + - uid: 1282 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 2084 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 2088 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 2089 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 2090 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 2093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 1 + - uid: 2095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + - uid: 2096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 2099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - uid: 2100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1 + - uid: 2102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - uid: 2105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + - uid: 2237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - uid: 2238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 2239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 2240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 3067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 3068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 3069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + - uid: 3070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + - uid: 3071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + - uid: 3072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + - uid: 4679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 1 + - uid: 4680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 1 + - uid: 4681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,4.5 + parent: 1 + - uid: 4682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1 +- proto: TrophyLavalandLegionSkull + entities: + - uid: 1087 + components: + - type: Transform + pos: 5.582929,-21.569506 + parent: 1 +- proto: WallNecropolis + entities: + - uid: 2 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-10.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -30.5,5.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: -31.5,3.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: -31.5,4.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: -31.5,5.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: -32.5,3.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: -32.5,4.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: -33.5,2.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: -33.5,3.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: -33.5,4.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: -33.5,5.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: -34.5,0.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,2.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-3.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-9.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-4.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-8.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-7.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-4.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-3.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 1 + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 1 + - uid: 1725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 1 + - uid: 1726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 1 + - uid: 1727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 1 + - uid: 1728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 1 + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 1 + - uid: 1736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1 + - uid: 1737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 1 + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 1 + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 1 + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 1 + - uid: 1741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 1 + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1 + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 1 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1 + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 1 + - uid: 1760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-8.5 + parent: 1 + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 1 + - uid: 1768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 1 + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 1 + - uid: 1775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,3.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 1 + - uid: 1779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 1 + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-9.5 + parent: 1 + - uid: 1786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 1 + - uid: 1790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-9.5 + parent: 1 + - uid: 1791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 1 + - uid: 1797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 1 + - uid: 1799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + - uid: 1808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 1 + - uid: 1811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,5.5 + parent: 1 + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 1 + - uid: 1814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 1 + - uid: 1825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 1 + - uid: 1827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 1 + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-9.5 + parent: 1 + - uid: 1829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,4.5 + parent: 1 + - uid: 1830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-6.5 + parent: 1 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-8.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-1.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,5.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 1 + - uid: 1845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-3.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-7.5 + parent: 1 + - uid: 1847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,0.5 + parent: 1 + - uid: 1853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,5.5 + parent: 1 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-9.5 + parent: 1 + - uid: 1856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-9.5 + parent: 1 + - uid: 1857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,2.5 + parent: 1 + - uid: 1858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 1 + - uid: 1859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,2.5 + parent: 1 + - uid: 1860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 1 + - uid: 1861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-2.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,5.5 + parent: 1 + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,5.5 + parent: 1 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 1 + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 1 + - uid: 1884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 1 + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,5.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 1 + - uid: 1895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 1 + - uid: 1898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-9.5 + parent: 1 + - uid: 1902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 1 + - uid: 1903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,3.5 + parent: 1 + - uid: 1909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 + parent: 1 + - uid: 1916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,5.5 + parent: 1 + - uid: 1917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,5.5 + parent: 1 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 1 + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1 + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-8.5 + parent: 1 + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-8.5 + parent: 1 + - uid: 1947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-8.5 + parent: 1 + - uid: 1948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + - uid: 1949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-8.5 + parent: 1 + - uid: 1950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-8.5 + parent: 1 + - uid: 1951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 1 + - uid: 1952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 1 + - uid: 1953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-8.5 + parent: 1 + - uid: 1954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-8.5 + parent: 1 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 1 + - uid: 1956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 1 + - uid: 1957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-8.5 + parent: 1 + - uid: 1958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-7.5 + parent: 1 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 1 + - uid: 1960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + - uid: 1972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 1 + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-6.5 + parent: 1 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 1 + - uid: 1984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 1 + - uid: 1997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,4.5 + parent: 1 + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,5.5 + parent: 1 + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,5.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 2042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 2058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + - uid: 2062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,3.5 + parent: 1 + - uid: 2098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 2106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 2107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 2155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1 + - uid: 2156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 1 + - uid: 2157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + - uid: 2159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + - uid: 2160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 1 + - uid: 2161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 1 + - uid: 2164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 1 + - uid: 2230 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 2418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 1 + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 1 + - uid: 2424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 1 + - uid: 2425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + - uid: 2426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 1 + - uid: 2427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1 + - uid: 2428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 1 + - uid: 2429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + - uid: 2430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 1 + - uid: 2431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + - uid: 2432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 1 + - uid: 2433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 1 + - uid: 2434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + - uid: 2435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + - uid: 2436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 1 + - uid: 2437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 1 + - uid: 2438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 1 + - uid: 2439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 1 + - uid: 2440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1 + - uid: 2441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 1 + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + - uid: 2443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 1 + - uid: 2444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + - uid: 2445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 1 + - uid: 2446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + - uid: 2447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + - uid: 2448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1 + - uid: 2449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 1 + - uid: 2450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 1 + - uid: 2451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + - uid: 2452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1 + - uid: 2453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + - uid: 2454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 1 + - uid: 2455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + - uid: 2456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + - uid: 2457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 1 + - uid: 2458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 1 + - uid: 2459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 1 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 1 + - uid: 2461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 1 + - uid: 2462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + - uid: 2465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + - uid: 2467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,5.5 + parent: 1 + - uid: 2468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 1 + - uid: 2469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 1 + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 1 + - uid: 2471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 1 + - uid: 2472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 1 + - uid: 2473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + - uid: 2474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + - uid: 2475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 1 + - uid: 2476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,3.5 + parent: 1 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 1 + - uid: 2478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + - uid: 2479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 1 + - uid: 2480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-3.5 + parent: 1 + - uid: 2481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 1 + - uid: 2482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 1 + - uid: 2483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 1 + - uid: 2484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + - uid: 2485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + - uid: 2486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 1 + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,3.5 + parent: 1 + - uid: 2488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,4.5 + parent: 1 + - uid: 2489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,5.5 + parent: 1 + - uid: 2490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 1 + - uid: 2491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 1 + - uid: 2492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 1 + - uid: 2493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 1 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 1 + - uid: 2495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + - uid: 2496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + - uid: 2497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,2.5 + parent: 1 + - uid: 2498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + - uid: 2499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,4.5 + parent: 1 + - uid: 2500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 1 + - uid: 2501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 1 + - uid: 2502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + - uid: 2503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + - uid: 2504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 1 + - uid: 2505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1 + - uid: 2506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + - uid: 2507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + - uid: 2508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + - uid: 2509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + - uid: 2510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + - uid: 2511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + - uid: 3091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 1 + - uid: 3110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 1 + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 1 + - uid: 3112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 1 + - uid: 3113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1 + - uid: 3114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1 + - uid: 3115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + - uid: 3116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,3.5 + parent: 1 + - uid: 3118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + - uid: 3119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + - uid: 3120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + - uid: 3121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 1 + - uid: 3122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 1 + - uid: 3123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1 + - uid: 3124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 1 + - uid: 3125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 1 + - uid: 3126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + - uid: 3127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + - uid: 3128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + - uid: 3129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 1 + - uid: 3131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 1 + - uid: 3132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 1 + - uid: 3133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 1 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 1 + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 1 + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 1 + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 1 + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 1 + - uid: 3139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,5.5 + parent: 1 + - uid: 3140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 1 + - uid: 3141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 1 + - uid: 3142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 1 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 1 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 1 + - uid: 3145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 1 + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 1 + - uid: 3147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,3.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,4.5 + parent: 1 + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,5.5 + parent: 1 + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 1 + - uid: 3152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 1 + - uid: 3153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 1 + - uid: 3154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1 + - uid: 3155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 1 + - uid: 3156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,3.5 + parent: 1 + - uid: 3157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,4.5 + parent: 1 + - uid: 3158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,5.5 + parent: 1 + - uid: 3159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 1 + - uid: 3160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 1 + - uid: 3161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 1 + - uid: 3162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 1 + - uid: 3163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 1 + - uid: 3164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 1 + - uid: 3165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,2.5 + parent: 1 + - uid: 3166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 1 + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,4.5 + parent: 1 + - uid: 3168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 1 + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 1 + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 1 + - uid: 3171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 1 + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,0.5 + parent: 1 + - uid: 3173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,1.5 + parent: 1 + - uid: 3174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,2.5 + parent: 1 + - uid: 3175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 1 + - uid: 3176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,4.5 + parent: 1 + - uid: 3177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 1 + - uid: 3178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 1 + - uid: 3179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 1 + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 1 + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 1 + - uid: 3182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,1.5 + parent: 1 + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,0.5 + parent: 1 + - uid: 3191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 1 + - uid: 3192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 1 + - uid: 3194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 1 + - uid: 3195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 1 + - uid: 3196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 1 + - uid: 3197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 1 + - uid: 3198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 1 + - uid: 3199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 1 + - uid: 3200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 1 + - uid: 3201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 1 + - uid: 3202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 1 + - uid: 3203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,2.5 + parent: 1 + - uid: 3204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,3.5 + parent: 1 + - uid: 3205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,4.5 + parent: 1 + - uid: 3206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,5.5 + parent: 1 + - uid: 3207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 1 + - uid: 3208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 1 + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 + parent: 1 + - uid: 3210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 1 + - uid: 3211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 1 + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 1 + - uid: 3213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 1 + - uid: 3214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 1 + - uid: 3215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,1.5 + parent: 1 + - uid: 3216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,2.5 + parent: 1 + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,4.5 + parent: 1 + - uid: 3218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,5.5 + parent: 1 + - uid: 3219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 1 + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 1 + - uid: 3221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,3.5 + parent: 1 + - uid: 3222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 1 + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 1 + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 1 + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 1 + - uid: 3226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 1 + - uid: 3227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,2.5 + parent: 1 + - uid: 3228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,3.5 + parent: 1 + - uid: 3229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,4.5 + parent: 1 + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,5.5 + parent: 1 + - uid: 3231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-6.5 + parent: 1 + - uid: 3232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-5.5 + parent: 1 + - uid: 3233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-4.5 + parent: 1 + - uid: 3234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-3.5 + parent: 1 + - uid: 3235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 1 + - uid: 3236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 1 + - uid: 3237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 1 + - uid: 3238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 1 + - uid: 3239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,1.5 + parent: 1 + - uid: 3240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,2.5 + parent: 1 + - uid: 3241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,3.5 + parent: 1 + - uid: 3242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 1 + - uid: 3243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,5.5 + parent: 1 + - uid: 3244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 1 + - uid: 3245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 1 + - uid: 3246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 1 + - uid: 3247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 1 + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-2.5 + parent: 1 + - uid: 3249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 1 + - uid: 3250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 1 + - uid: 3251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 1 + - uid: 3252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 1 + - uid: 3253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 1 + - uid: 3254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 1 + - uid: 3255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,3.5 + parent: 1 + - uid: 3256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 1 + - uid: 3258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,5.5 + parent: 1 + - uid: 3259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 1 + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 1 + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 1 + - uid: 3262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-0.5 + parent: 1 + - uid: 3263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,0.5 + parent: 1 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 1 + - uid: 3265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,1.5 + parent: 1 + - uid: 3266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,2.5 + parent: 1 + - uid: 3267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 1 + - uid: 3268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,4.5 + parent: 1 + - uid: 3269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 1 + - uid: 3270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-5.5 + parent: 1 + - uid: 3272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 1 + - uid: 3273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-3.5 + parent: 1 + - uid: 3274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 1 + - uid: 3275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 1 + - uid: 3276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 1 + - uid: 3277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 1 + - uid: 3278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 1 + - uid: 3279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,2.5 + parent: 1 + - uid: 3280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 1 + - uid: 3281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,5.5 + parent: 1 + - uid: 3282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 1 + - uid: 3283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 1 + - uid: 3284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,3.5 + parent: 1 + - uid: 3285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 + parent: 1 + - uid: 3286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 1 + - uid: 3287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 1 + - uid: 3288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-4.5 + parent: 1 + - uid: 3289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-2.5 + parent: 1 + - uid: 3290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 1 + - uid: 3291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,2.5 + parent: 1 + - uid: 3292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,3.5 + parent: 1 + - uid: 3293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,5.5 + parent: 1 + - uid: 3294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 1 + - uid: 3295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,4.5 + parent: 1 + - uid: 3296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 + parent: 1 + - uid: 3297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-3.5 + parent: 1 + - uid: 3298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 + parent: 1 + - uid: 3299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 + parent: 1 + - uid: 3300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 1 + - uid: 3301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 1 + - uid: 3302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 1 + - uid: 3303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,2.5 + parent: 1 + - uid: 3304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,3.5 + parent: 1 + - uid: 3305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 1 + - uid: 3306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 1 + - uid: 3307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 1 + - uid: 3308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,4.5 + parent: 1 + - uid: 3309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 1 + - uid: 3310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,3.5 + parent: 1 + - uid: 3311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 1 + - uid: 3312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-7.5 + parent: 1 + - uid: 3313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 1 + - uid: 3314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,5.5 + parent: 1 + - uid: 3315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 + parent: 1 + - uid: 3316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 1 + - uid: 3317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,2.5 + parent: 1 + - uid: 3321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 + parent: 1 + - uid: 3322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 1 + - uid: 3323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 1 + - uid: 3324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 1 + - uid: 3325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 1 + - uid: 3326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,3.5 + parent: 1 + - uid: 3327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,4.5 + parent: 1 + - uid: 3328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 1 + - uid: 3329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 1 + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 1 + - uid: 3331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 1 + - uid: 3332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 1 + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,2.5 + parent: 1 + - uid: 3334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,3.5 + parent: 1 + - uid: 3335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 1 + - uid: 3336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,2.5 + parent: 1 + - uid: 3337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 1 + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 1 + - uid: 3340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,5.5 + parent: 1 + - uid: 3341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 1 + - uid: 3342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,3.5 + parent: 1 + - uid: 3343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,2.5 + parent: 1 + - uid: 3344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 1 + - uid: 3345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,0.5 + parent: 1 + - uid: 3346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 1 + - uid: 3347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 1 + - uid: 3348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,4.5 + parent: 1 + - uid: 3349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,5.5 + parent: 1 + - uid: 3350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,2.5 + parent: 1 + - uid: 3351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,3.5 + parent: 1 + - uid: 3352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 1 + - uid: 3353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-0.5 + parent: 1 + - uid: 3354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,1.5 + parent: 1 + - uid: 3355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,5.5 + parent: 1 + - uid: 3356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 1 + - uid: 3357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,2.5 + parent: 1 + - uid: 3358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,1.5 + parent: 1 + - uid: 3359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,0.5 + parent: 1 + - uid: 3360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-1.5 + parent: 1 + - uid: 3361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 1 + - uid: 3362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 1 + - uid: 3363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 1 + - uid: 3364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 1 + - uid: 3365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,1.5 + parent: 1 + - uid: 3366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 1 + - uid: 3367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,3.5 + parent: 1 + - uid: 3368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 1 + - uid: 3369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,5.5 + parent: 1 + - uid: 3370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,0.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 3791 + components: + - type: Transform + pos: -51.5,5.5 + parent: 1 + - uid: 3792 + components: + - type: Transform + pos: -51.5,3.5 + parent: 1 + - uid: 3793 + components: + - type: Transform + pos: -51.5,2.5 + parent: 1 + - uid: 3794 + components: + - type: Transform + pos: -51.5,1.5 + parent: 1 + - uid: 3795 + components: + - type: Transform + pos: -51.5,0.5 + parent: 1 + - uid: 3796 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 1 + - uid: 3797 + components: + - type: Transform + pos: -52.5,5.5 + parent: 1 + - uid: 3798 + components: + - type: Transform + pos: -52.5,4.5 + parent: 1 + - uid: 3799 + components: + - type: Transform + pos: -52.5,3.5 + parent: 1 + - uid: 3800 + components: + - type: Transform + pos: -52.5,2.5 + parent: 1 + - uid: 3801 + components: + - type: Transform + pos: -52.5,1.5 + parent: 1 + - uid: 3802 + components: + - type: Transform + pos: -52.5,0.5 + parent: 1 + - uid: 3803 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 1 + - uid: 3804 + components: + - type: Transform + pos: -53.5,5.5 + parent: 1 + - uid: 3805 + components: + - type: Transform + pos: -51.5,4.5 + parent: 1 + - uid: 3806 + components: + - type: Transform + pos: -53.5,3.5 + parent: 1 + - uid: 3807 + components: + - type: Transform + pos: -53.5,4.5 + parent: 1 + - uid: 3808 + components: + - type: Transform + pos: -53.5,2.5 + parent: 1 + - uid: 3809 + components: + - type: Transform + pos: -53.5,1.5 + parent: 1 + - uid: 3810 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 1 + - uid: 3811 + components: + - type: Transform + pos: -53.5,0.5 + parent: 1 + - uid: 3812 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 1 + - uid: 3813 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 1 + - uid: 3814 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 1 + - uid: 3815 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 1 + - uid: 3816 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 1 + - uid: 3817 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 1 + - uid: 3818 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 1 + - uid: 3819 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 1 + - uid: 3820 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1 + - uid: 3821 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 1 + - uid: 3822 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 1 + - uid: 3823 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 1 + - uid: 3824 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 1 + - uid: 3825 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 1 + - uid: 3826 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 1 + - uid: 3827 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 1 + - uid: 3828 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1 + - uid: 3829 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 1 + - uid: 3830 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 1 + - uid: 3831 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 1 + - uid: 3832 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 1 + - uid: 3833 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 1 + - uid: 3834 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 1 + - uid: 3835 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 1 + - uid: 3836 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 1 + - uid: 3837 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 1 + - uid: 3838 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 1 + - uid: 3839 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1 + - uid: 3840 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1 + - uid: 3841 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 1 + - uid: 3842 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 1 + - uid: 3843 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 1 + - uid: 3844 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 1 + - uid: 3845 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 1 + - uid: 3846 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 1 + - uid: 3847 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 1 + - uid: 3848 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 1 + - uid: 3849 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 1 + - uid: 3850 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 1 + - uid: 3851 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 1 + - uid: 3852 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 1 + - uid: 3853 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 1 + - uid: 3854 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 3855 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 3856 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 3857 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 + - uid: 3858 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - uid: 3859 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 3860 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 3861 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 3862 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 3863 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 3864 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 3865 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 3866 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 3867 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 3868 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1 + - uid: 3871 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 3872 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 3873 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 3874 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 3875 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 3876 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 3877 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 3878 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 3879 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 3880 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 3881 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 3885 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 3887 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 3888 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 3890 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 3891 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 3892 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 3893 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 3894 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 3898 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 3899 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 3900 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 3901 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 3902 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 3903 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 3905 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 3906 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 3910 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 1 + - uid: 3913 + components: + - type: Transform + pos: 64.5,5.5 + parent: 1 + - uid: 3914 + components: + - type: Transform + pos: 64.5,4.5 + parent: 1 + - uid: 3915 + components: + - type: Transform + pos: 64.5,3.5 + parent: 1 + - uid: 3916 + components: + - type: Transform + pos: 64.5,2.5 + parent: 1 + - uid: 3917 + components: + - type: Transform + pos: 64.5,1.5 + parent: 1 + - uid: 3918 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 1 + - uid: 3919 + components: + - type: Transform + pos: 65.5,5.5 + parent: 1 + - uid: 3920 + components: + - type: Transform + pos: 64.5,0.5 + parent: 1 + - uid: 3921 + components: + - type: Transform + pos: 65.5,4.5 + parent: 1 + - uid: 3922 + components: + - type: Transform + pos: 65.5,3.5 + parent: 1 + - uid: 3923 + components: + - type: Transform + pos: 65.5,2.5 + parent: 1 + - uid: 3924 + components: + - type: Transform + pos: 65.5,1.5 + parent: 1 + - uid: 3925 + components: + - type: Transform + pos: 65.5,0.5 + parent: 1 + - uid: 3926 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 1 + - uid: 3927 + components: + - type: Transform + pos: 66.5,5.5 + parent: 1 + - uid: 3928 + components: + - type: Transform + pos: 66.5,4.5 + parent: 1 + - uid: 3929 + components: + - type: Transform + pos: 66.5,3.5 + parent: 1 + - uid: 3930 + components: + - type: Transform + pos: 66.5,2.5 + parent: 1 + - uid: 3931 + components: + - type: Transform + pos: 66.5,1.5 + parent: 1 + - uid: 3932 + components: + - type: Transform + pos: 66.5,0.5 + parent: 1 + - uid: 3933 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 1 + - uid: 3935 + components: + - type: Transform + pos: 67.5,5.5 + parent: 1 + - uid: 3936 + components: + - type: Transform + pos: 67.5,3.5 + parent: 1 + - uid: 3937 + components: + - type: Transform + pos: 67.5,2.5 + parent: 1 + - uid: 3938 + components: + - type: Transform + pos: 68.5,5.5 + parent: 1 + - uid: 3939 + components: + - type: Transform + pos: 68.5,4.5 + parent: 1 + - uid: 3940 + components: + - type: Transform + pos: 68.5,3.5 + parent: 1 + - uid: 3941 + components: + - type: Transform + pos: 68.5,2.5 + parent: 1 + - uid: 3942 + components: + - type: Transform + pos: 67.5,4.5 + parent: 1 + - uid: 3943 + components: + - type: Transform + pos: 67.5,1.5 + parent: 1 + - uid: 3946 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 1 + - uid: 3947 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 1 + - uid: 3948 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 1 + - uid: 3949 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 1 + - uid: 3950 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 1 + - uid: 3951 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 1 + - uid: 3952 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 1 + - uid: 3955 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 1 + - uid: 3956 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 1 + - uid: 3957 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 1 + - uid: 3958 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 1 + - uid: 3959 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 1 + - uid: 3960 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 1 + - uid: 3963 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 1 + - uid: 3966 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 1 + - uid: 3968 + components: + - type: Transform + pos: 64.5,-6.5 + parent: 1 + - uid: 3969 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 1 + - uid: 3970 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 1 + - uid: 3971 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 1 + - uid: 3972 + components: + - type: Transform + pos: 64.5,-10.5 + parent: 1 + - uid: 3973 + components: + - type: Transform + pos: 65.5,-6.5 + parent: 1 + - uid: 3974 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 1 + - uid: 3976 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 1 + - uid: 3977 + components: + - type: Transform + pos: 65.5,-10.5 + parent: 1 + - uid: 3978 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 1 + - uid: 3979 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 1 + - uid: 3980 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 1 + - uid: 3981 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 1 + - uid: 3982 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 1 + - uid: 3983 + components: + - type: Transform + pos: 67.5,-6.5 + parent: 1 + - uid: 3984 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 1 + - uid: 3985 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 1 + - uid: 3986 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 1 + - uid: 3987 + components: + - type: Transform + pos: 67.5,-10.5 + parent: 1 + - uid: 3988 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 1 + - uid: 3989 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 1 + - uid: 3990 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 1 + - uid: 3992 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 1 + - uid: 3994 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 1 + - uid: 3995 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 1 + - uid: 3996 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 1 + - uid: 3997 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 1 + - uid: 4043 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 4044 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 4046 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 4047 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 4048 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 4049 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 4050 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 4051 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 4052 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 4053 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 4054 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 4055 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 4056 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 4057 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 4058 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 4059 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 4060 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 4061 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 4062 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 4063 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 4064 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1 + - uid: 4065 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 4066 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 4067 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 4068 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1 + - uid: 4069 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 4070 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 4071 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 4072 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 4073 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 4074 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 4075 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 4076 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1 + - uid: 4077 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 4078 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 4079 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 4080 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 4081 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 4082 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 4083 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 4084 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 4085 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 4086 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 4087 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - uid: 4088 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 4089 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 4090 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 4091 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1 + - uid: 4092 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 4093 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 4094 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 4095 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 4096 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 4097 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 4098 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 4099 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1 + - uid: 4100 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 4101 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 4102 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 4103 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 4104 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 4105 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 4106 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 4107 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1 + - uid: 4108 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1 + - uid: 4109 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 4110 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 4111 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 4112 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 4113 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 4114 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 4115 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 4116 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 4117 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 4118 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 4119 + components: + - type: Transform + pos: -24.5,9.5 + parent: 1 + - uid: 4120 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1 + - uid: 4121 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 + - uid: 4122 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - uid: 4123 + components: + - type: Transform + pos: -25.5,9.5 + parent: 1 + - uid: 4124 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 4125 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 4126 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 4127 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1 + - uid: 4128 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1 + - uid: 4129 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - uid: 4130 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 + - uid: 4131 + components: + - type: Transform + pos: -27.5,9.5 + parent: 1 + - uid: 4132 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 + - uid: 4133 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - uid: 4134 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1 + - uid: 4135 + components: + - type: Transform + pos: -28.5,9.5 + parent: 1 + - uid: 4136 + components: + - type: Transform + pos: -29.5,6.5 + parent: 1 + - uid: 4137 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1 + - uid: 4138 + components: + - type: Transform + pos: -29.5,8.5 + parent: 1 + - uid: 4139 + components: + - type: Transform + pos: -29.5,9.5 + parent: 1 + - uid: 4140 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1 + - uid: 4141 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1 + - uid: 4142 + components: + - type: Transform + pos: -30.5,8.5 + parent: 1 + - uid: 4143 + components: + - type: Transform + pos: -30.5,9.5 + parent: 1 + - uid: 4144 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1 + - uid: 4145 + components: + - type: Transform + pos: -31.5,7.5 + parent: 1 + - uid: 4146 + components: + - type: Transform + pos: -31.5,8.5 + parent: 1 + - uid: 4147 + components: + - type: Transform + pos: -31.5,9.5 + parent: 1 + - uid: 4148 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1 + - uid: 4149 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 + - uid: 4150 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1 + - uid: 4151 + components: + - type: Transform + pos: -32.5,9.5 + parent: 1 + - uid: 4152 + components: + - type: Transform + pos: -33.5,6.5 + parent: 1 + - uid: 4153 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1 + - uid: 4154 + components: + - type: Transform + pos: -33.5,8.5 + parent: 1 + - uid: 4155 + components: + - type: Transform + pos: -33.5,9.5 + parent: 1 + - uid: 4156 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1 + - uid: 4157 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1 + - uid: 4158 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1 + - uid: 4159 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - uid: 4160 + components: + - type: Transform + pos: -35.5,6.5 + parent: 1 + - uid: 4161 + components: + - type: Transform + pos: -35.5,7.5 + parent: 1 + - uid: 4162 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1 + - uid: 4163 + components: + - type: Transform + pos: -35.5,9.5 + parent: 1 + - uid: 4164 + components: + - type: Transform + pos: -36.5,6.5 + parent: 1 + - uid: 4165 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 4166 + components: + - type: Transform + pos: -36.5,8.5 + parent: 1 + - uid: 4167 + components: + - type: Transform + pos: -36.5,9.5 + parent: 1 + - uid: 4168 + components: + - type: Transform + pos: -37.5,6.5 + parent: 1 + - uid: 4169 + components: + - type: Transform + pos: -37.5,7.5 + parent: 1 + - uid: 4170 + components: + - type: Transform + pos: -37.5,8.5 + parent: 1 + - uid: 4171 + components: + - type: Transform + pos: -37.5,9.5 + parent: 1 + - uid: 4172 + components: + - type: Transform + pos: -38.5,6.5 + parent: 1 + - uid: 4173 + components: + - type: Transform + pos: -38.5,7.5 + parent: 1 + - uid: 4174 + components: + - type: Transform + pos: -38.5,8.5 + parent: 1 + - uid: 4175 + components: + - type: Transform + pos: -38.5,9.5 + parent: 1 + - uid: 4176 + components: + - type: Transform + pos: -39.5,6.5 + parent: 1 + - uid: 4177 + components: + - type: Transform + pos: -39.5,7.5 + parent: 1 + - uid: 4178 + components: + - type: Transform + pos: -39.5,8.5 + parent: 1 + - uid: 4179 + components: + - type: Transform + pos: -39.5,9.5 + parent: 1 + - uid: 4180 + components: + - type: Transform + pos: -40.5,6.5 + parent: 1 + - uid: 4181 + components: + - type: Transform + pos: -40.5,7.5 + parent: 1 + - uid: 4182 + components: + - type: Transform + pos: -40.5,8.5 + parent: 1 + - uid: 4183 + components: + - type: Transform + pos: -40.5,9.5 + parent: 1 + - uid: 4184 + components: + - type: Transform + pos: -41.5,6.5 + parent: 1 + - uid: 4185 + components: + - type: Transform + pos: -41.5,7.5 + parent: 1 + - uid: 4186 + components: + - type: Transform + pos: -41.5,8.5 + parent: 1 + - uid: 4187 + components: + - type: Transform + pos: -41.5,9.5 + parent: 1 + - uid: 4188 + components: + - type: Transform + pos: -42.5,6.5 + parent: 1 + - uid: 4189 + components: + - type: Transform + pos: -42.5,7.5 + parent: 1 + - uid: 4190 + components: + - type: Transform + pos: -42.5,8.5 + parent: 1 + - uid: 4191 + components: + - type: Transform + pos: -42.5,9.5 + parent: 1 + - uid: 4192 + components: + - type: Transform + pos: -43.5,6.5 + parent: 1 + - uid: 4193 + components: + - type: Transform + pos: -43.5,7.5 + parent: 1 + - uid: 4194 + components: + - type: Transform + pos: -43.5,8.5 + parent: 1 + - uid: 4195 + components: + - type: Transform + pos: -43.5,9.5 + parent: 1 + - uid: 4196 + components: + - type: Transform + pos: -44.5,6.5 + parent: 1 + - uid: 4197 + components: + - type: Transform + pos: -44.5,7.5 + parent: 1 + - uid: 4198 + components: + - type: Transform + pos: -44.5,8.5 + parent: 1 + - uid: 4199 + components: + - type: Transform + pos: -44.5,9.5 + parent: 1 + - uid: 4200 + components: + - type: Transform + pos: -45.5,6.5 + parent: 1 + - uid: 4201 + components: + - type: Transform + pos: -45.5,7.5 + parent: 1 + - uid: 4202 + components: + - type: Transform + pos: -45.5,8.5 + parent: 1 + - uid: 4203 + components: + - type: Transform + pos: -45.5,9.5 + parent: 1 + - uid: 4204 + components: + - type: Transform + pos: -46.5,6.5 + parent: 1 + - uid: 4205 + components: + - type: Transform + pos: -46.5,7.5 + parent: 1 + - uid: 4206 + components: + - type: Transform + pos: -46.5,8.5 + parent: 1 + - uid: 4207 + components: + - type: Transform + pos: -46.5,9.5 + parent: 1 + - uid: 4208 + components: + - type: Transform + pos: -47.5,6.5 + parent: 1 + - uid: 4209 + components: + - type: Transform + pos: -47.5,7.5 + parent: 1 + - uid: 4210 + components: + - type: Transform + pos: -47.5,8.5 + parent: 1 + - uid: 4211 + components: + - type: Transform + pos: -47.5,9.5 + parent: 1 + - uid: 4212 + components: + - type: Transform + pos: -48.5,7.5 + parent: 1 + - uid: 4213 + components: + - type: Transform + pos: -48.5,8.5 + parent: 1 + - uid: 4214 + components: + - type: Transform + pos: -48.5,9.5 + parent: 1 + - uid: 4215 + components: + - type: Transform + pos: -48.5,6.5 + parent: 1 + - uid: 4216 + components: + - type: Transform + pos: -49.5,6.5 + parent: 1 + - uid: 4217 + components: + - type: Transform + pos: -49.5,7.5 + parent: 1 + - uid: 4218 + components: + - type: Transform + pos: -49.5,8.5 + parent: 1 + - uid: 4219 + components: + - type: Transform + pos: -49.5,9.5 + parent: 1 + - uid: 4220 + components: + - type: Transform + pos: -50.5,6.5 + parent: 1 + - uid: 4221 + components: + - type: Transform + pos: -50.5,7.5 + parent: 1 + - uid: 4222 + components: + - type: Transform + pos: -50.5,8.5 + parent: 1 + - uid: 4223 + components: + - type: Transform + pos: -50.5,9.5 + parent: 1 + - uid: 4224 + components: + - type: Transform + pos: -51.5,6.5 + parent: 1 + - uid: 4225 + components: + - type: Transform + pos: -51.5,7.5 + parent: 1 + - uid: 4226 + components: + - type: Transform + pos: -51.5,8.5 + parent: 1 + - uid: 4227 + components: + - type: Transform + pos: -51.5,9.5 + parent: 1 + - uid: 4228 + components: + - type: Transform + pos: -52.5,6.5 + parent: 1 + - uid: 4229 + components: + - type: Transform + pos: -52.5,7.5 + parent: 1 + - uid: 4230 + components: + - type: Transform + pos: -52.5,8.5 + parent: 1 + - uid: 4231 + components: + - type: Transform + pos: -52.5,9.5 + parent: 1 + - uid: 4233 + components: + - type: Transform + pos: -53.5,6.5 + parent: 1 + - uid: 4234 + components: + - type: Transform + pos: -53.5,7.5 + parent: 1 + - uid: 4235 + components: + - type: Transform + pos: -53.5,8.5 + parent: 1 + - uid: 4251 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 4252 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 4253 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 4254 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 4255 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 4256 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 4257 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 4258 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 4259 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 4260 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 4261 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 4262 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 4264 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 4265 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 4266 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 4267 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 4268 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 4269 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 4270 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 4271 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 4272 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 4273 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 4274 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 4275 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 4276 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 4277 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 4278 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 4279 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 4280 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 4281 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 4282 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 4283 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 4284 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 4285 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 4286 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 4287 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 4288 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 4289 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 4290 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 4291 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 4292 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 4293 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 4294 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - uid: 4295 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 4296 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 4297 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 4298 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 4299 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 4300 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 4301 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 4302 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 4303 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 4304 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1 + - uid: 4305 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 4306 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 4307 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 4308 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 4309 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 4310 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 4311 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 4312 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 4313 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 4314 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 4315 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 4316 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 4317 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 4318 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 4319 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 + - uid: 4320 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 4321 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 4322 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 + - uid: 4323 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1 + - uid: 4324 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 4325 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 4326 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 4327 + components: + - type: Transform + pos: 25.5,6.5 + parent: 1 + - uid: 4328 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 4329 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 4330 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 4331 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 4332 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 4333 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1 + - uid: 4334 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 4335 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1 + - uid: 4336 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - uid: 4337 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 4338 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 + - uid: 4339 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1 + - uid: 4340 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 4341 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1 + - uid: 4342 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1 + - uid: 4343 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1 + - uid: 4344 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1 + - uid: 4345 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1 + - uid: 4346 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1 + - uid: 4347 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1 + - uid: 4348 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1 + - uid: 4349 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1 + - uid: 4350 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1 + - uid: 4351 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1 + - uid: 4352 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1 + - uid: 4353 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1 + - uid: 4354 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1 + - uid: 4355 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1 + - uid: 4356 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1 + - uid: 4357 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1 + - uid: 4358 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1 + - uid: 4359 + components: + - type: Transform + pos: 33.5,6.5 + parent: 1 + - uid: 4360 + components: + - type: Transform + pos: 34.5,9.5 + parent: 1 + - uid: 4361 + components: + - type: Transform + pos: 34.5,8.5 + parent: 1 + - uid: 4362 + components: + - type: Transform + pos: 34.5,7.5 + parent: 1 + - uid: 4363 + components: + - type: Transform + pos: 34.5,6.5 + parent: 1 + - uid: 4364 + components: + - type: Transform + pos: 35.5,9.5 + parent: 1 + - uid: 4365 + components: + - type: Transform + pos: 35.5,8.5 + parent: 1 + - uid: 4366 + components: + - type: Transform + pos: 35.5,7.5 + parent: 1 + - uid: 4367 + components: + - type: Transform + pos: 35.5,6.5 + parent: 1 + - uid: 4368 + components: + - type: Transform + pos: 36.5,9.5 + parent: 1 + - uid: 4369 + components: + - type: Transform + pos: 36.5,7.5 + parent: 1 + - uid: 4370 + components: + - type: Transform + pos: 36.5,6.5 + parent: 1 + - uid: 4371 + components: + - type: Transform + pos: 36.5,8.5 + parent: 1 + - uid: 4372 + components: + - type: Transform + pos: 37.5,9.5 + parent: 1 + - uid: 4373 + components: + - type: Transform + pos: 37.5,8.5 + parent: 1 + - uid: 4374 + components: + - type: Transform + pos: 37.5,7.5 + parent: 1 + - uid: 4375 + components: + - type: Transform + pos: 37.5,6.5 + parent: 1 + - uid: 4376 + components: + - type: Transform + pos: 38.5,9.5 + parent: 1 + - uid: 4377 + components: + - type: Transform + pos: 38.5,8.5 + parent: 1 + - uid: 4378 + components: + - type: Transform + pos: 38.5,7.5 + parent: 1 + - uid: 4379 + components: + - type: Transform + pos: 38.5,6.5 + parent: 1 + - uid: 4380 + components: + - type: Transform + pos: 39.5,9.5 + parent: 1 + - uid: 4381 + components: + - type: Transform + pos: 39.5,8.5 + parent: 1 + - uid: 4382 + components: + - type: Transform + pos: 39.5,7.5 + parent: 1 + - uid: 4383 + components: + - type: Transform + pos: 39.5,6.5 + parent: 1 + - uid: 4384 + components: + - type: Transform + pos: 40.5,9.5 + parent: 1 + - uid: 4385 + components: + - type: Transform + pos: 40.5,8.5 + parent: 1 + - uid: 4386 + components: + - type: Transform + pos: 40.5,7.5 + parent: 1 + - uid: 4387 + components: + - type: Transform + pos: 40.5,6.5 + parent: 1 + - uid: 4388 + components: + - type: Transform + pos: 41.5,9.5 + parent: 1 + - uid: 4389 + components: + - type: Transform + pos: 41.5,8.5 + parent: 1 + - uid: 4390 + components: + - type: Transform + pos: 41.5,7.5 + parent: 1 + - uid: 4391 + components: + - type: Transform + pos: 41.5,6.5 + parent: 1 + - uid: 4392 + components: + - type: Transform + pos: 42.5,9.5 + parent: 1 + - uid: 4393 + components: + - type: Transform + pos: 42.5,8.5 + parent: 1 + - uid: 4394 + components: + - type: Transform + pos: 42.5,6.5 + parent: 1 + - uid: 4395 + components: + - type: Transform + pos: 43.5,9.5 + parent: 1 + - uid: 4396 + components: + - type: Transform + pos: 42.5,7.5 + parent: 1 + - uid: 4397 + components: + - type: Transform + pos: 43.5,8.5 + parent: 1 + - uid: 4398 + components: + - type: Transform + pos: 44.5,9.5 + parent: 1 + - uid: 4399 + components: + - type: Transform + pos: 43.5,7.5 + parent: 1 + - uid: 4400 + components: + - type: Transform + pos: 43.5,6.5 + parent: 1 + - uid: 4401 + components: + - type: Transform + pos: 44.5,7.5 + parent: 1 + - uid: 4402 + components: + - type: Transform + pos: 44.5,6.5 + parent: 1 + - uid: 4403 + components: + - type: Transform + pos: 44.5,8.5 + parent: 1 + - uid: 4404 + components: + - type: Transform + pos: 45.5,9.5 + parent: 1 + - uid: 4405 + components: + - type: Transform + pos: 45.5,8.5 + parent: 1 + - uid: 4406 + components: + - type: Transform + pos: 45.5,7.5 + parent: 1 + - uid: 4407 + components: + - type: Transform + pos: 45.5,6.5 + parent: 1 + - uid: 4408 + components: + - type: Transform + pos: 46.5,9.5 + parent: 1 + - uid: 4409 + components: + - type: Transform + pos: 46.5,8.5 + parent: 1 + - uid: 4410 + components: + - type: Transform + pos: 46.5,7.5 + parent: 1 + - uid: 4411 + components: + - type: Transform + pos: 46.5,6.5 + parent: 1 + - uid: 4412 + components: + - type: Transform + pos: 47.5,9.5 + parent: 1 + - uid: 4413 + components: + - type: Transform + pos: 47.5,8.5 + parent: 1 + - uid: 4414 + components: + - type: Transform + pos: 47.5,7.5 + parent: 1 + - uid: 4415 + components: + - type: Transform + pos: 47.5,6.5 + parent: 1 + - uid: 4416 + components: + - type: Transform + pos: 48.5,9.5 + parent: 1 + - uid: 4417 + components: + - type: Transform + pos: 48.5,8.5 + parent: 1 + - uid: 4418 + components: + - type: Transform + pos: 48.5,7.5 + parent: 1 + - uid: 4419 + components: + - type: Transform + pos: 48.5,6.5 + parent: 1 + - uid: 4420 + components: + - type: Transform + pos: 49.5,9.5 + parent: 1 + - uid: 4421 + components: + - type: Transform + pos: 49.5,8.5 + parent: 1 + - uid: 4422 + components: + - type: Transform + pos: 49.5,7.5 + parent: 1 + - uid: 4423 + components: + - type: Transform + pos: 49.5,6.5 + parent: 1 + - uid: 4424 + components: + - type: Transform + pos: 50.5,9.5 + parent: 1 + - uid: 4425 + components: + - type: Transform + pos: 50.5,8.5 + parent: 1 + - uid: 4426 + components: + - type: Transform + pos: 50.5,7.5 + parent: 1 + - uid: 4427 + components: + - type: Transform + pos: 50.5,6.5 + parent: 1 + - uid: 4428 + components: + - type: Transform + pos: 51.5,9.5 + parent: 1 + - uid: 4429 + components: + - type: Transform + pos: 51.5,8.5 + parent: 1 + - uid: 4430 + components: + - type: Transform + pos: 51.5,7.5 + parent: 1 + - uid: 4431 + components: + - type: Transform + pos: 51.5,6.5 + parent: 1 + - uid: 4432 + components: + - type: Transform + pos: 52.5,9.5 + parent: 1 + - uid: 4433 + components: + - type: Transform + pos: 52.5,8.5 + parent: 1 + - uid: 4434 + components: + - type: Transform + pos: 52.5,7.5 + parent: 1 + - uid: 4435 + components: + - type: Transform + pos: 52.5,6.5 + parent: 1 + - uid: 4436 + components: + - type: Transform + pos: 53.5,9.5 + parent: 1 + - uid: 4437 + components: + - type: Transform + pos: 53.5,8.5 + parent: 1 + - uid: 4438 + components: + - type: Transform + pos: 53.5,7.5 + parent: 1 + - uid: 4439 + components: + - type: Transform + pos: 53.5,6.5 + parent: 1 + - uid: 4440 + components: + - type: Transform + pos: 54.5,9.5 + parent: 1 + - uid: 4441 + components: + - type: Transform + pos: 54.5,8.5 + parent: 1 + - uid: 4442 + components: + - type: Transform + pos: 54.5,7.5 + parent: 1 + - uid: 4443 + components: + - type: Transform + pos: 54.5,6.5 + parent: 1 + - uid: 4444 + components: + - type: Transform + pos: 55.5,9.5 + parent: 1 + - uid: 4445 + components: + - type: Transform + pos: 55.5,8.5 + parent: 1 + - uid: 4446 + components: + - type: Transform + pos: 55.5,7.5 + parent: 1 + - uid: 4447 + components: + - type: Transform + pos: 55.5,6.5 + parent: 1 + - uid: 4448 + components: + - type: Transform + pos: 56.5,9.5 + parent: 1 + - uid: 4449 + components: + - type: Transform + pos: 56.5,8.5 + parent: 1 + - uid: 4450 + components: + - type: Transform + pos: 56.5,7.5 + parent: 1 + - uid: 4451 + components: + - type: Transform + pos: 56.5,6.5 + parent: 1 + - uid: 4452 + components: + - type: Transform + pos: 57.5,9.5 + parent: 1 + - uid: 4453 + components: + - type: Transform + pos: 57.5,8.5 + parent: 1 + - uid: 4454 + components: + - type: Transform + pos: 57.5,7.5 + parent: 1 + - uid: 4455 + components: + - type: Transform + pos: 57.5,6.5 + parent: 1 + - uid: 4456 + components: + - type: Transform + pos: 58.5,9.5 + parent: 1 + - uid: 4457 + components: + - type: Transform + pos: 58.5,8.5 + parent: 1 + - uid: 4458 + components: + - type: Transform + pos: 58.5,7.5 + parent: 1 + - uid: 4459 + components: + - type: Transform + pos: 58.5,6.5 + parent: 1 + - uid: 4460 + components: + - type: Transform + pos: 59.5,9.5 + parent: 1 + - uid: 4461 + components: + - type: Transform + pos: 59.5,8.5 + parent: 1 + - uid: 4462 + components: + - type: Transform + pos: 59.5,7.5 + parent: 1 + - uid: 4463 + components: + - type: Transform + pos: 59.5,6.5 + parent: 1 + - uid: 4464 + components: + - type: Transform + pos: 60.5,9.5 + parent: 1 + - uid: 4465 + components: + - type: Transform + pos: 60.5,8.5 + parent: 1 + - uid: 4466 + components: + - type: Transform + pos: 60.5,7.5 + parent: 1 + - uid: 4467 + components: + - type: Transform + pos: 60.5,6.5 + parent: 1 + - uid: 4468 + components: + - type: Transform + pos: 61.5,9.5 + parent: 1 + - uid: 4469 + components: + - type: Transform + pos: 61.5,8.5 + parent: 1 + - uid: 4470 + components: + - type: Transform + pos: 61.5,7.5 + parent: 1 + - uid: 4471 + components: + - type: Transform + pos: 61.5,6.5 + parent: 1 + - uid: 4472 + components: + - type: Transform + pos: 62.5,9.5 + parent: 1 + - uid: 4473 + components: + - type: Transform + pos: 62.5,8.5 + parent: 1 + - uid: 4474 + components: + - type: Transform + pos: 62.5,7.5 + parent: 1 + - uid: 4475 + components: + - type: Transform + pos: 62.5,6.5 + parent: 1 + - uid: 4476 + components: + - type: Transform + pos: 63.5,9.5 + parent: 1 + - uid: 4477 + components: + - type: Transform + pos: 63.5,8.5 + parent: 1 + - uid: 4478 + components: + - type: Transform + pos: 63.5,7.5 + parent: 1 + - uid: 4479 + components: + - type: Transform + pos: 63.5,6.5 + parent: 1 + - uid: 4480 + components: + - type: Transform + pos: 64.5,9.5 + parent: 1 + - uid: 4481 + components: + - type: Transform + pos: 64.5,8.5 + parent: 1 + - uid: 4482 + components: + - type: Transform + pos: 64.5,7.5 + parent: 1 + - uid: 4483 + components: + - type: Transform + pos: 64.5,6.5 + parent: 1 + - uid: 4484 + components: + - type: Transform + pos: 65.5,9.5 + parent: 1 + - uid: 4485 + components: + - type: Transform + pos: 65.5,8.5 + parent: 1 + - uid: 4486 + components: + - type: Transform + pos: 65.5,7.5 + parent: 1 + - uid: 4487 + components: + - type: Transform + pos: 65.5,6.5 + parent: 1 + - uid: 4488 + components: + - type: Transform + pos: 66.5,9.5 + parent: 1 + - uid: 4489 + components: + - type: Transform + pos: 66.5,8.5 + parent: 1 + - uid: 4490 + components: + - type: Transform + pos: 66.5,7.5 + parent: 1 + - uid: 4491 + components: + - type: Transform + pos: 66.5,6.5 + parent: 1 + - uid: 4492 + components: + - type: Transform + pos: 67.5,6.5 + parent: 1 + - uid: 4493 + components: + - type: Transform + pos: 67.5,7.5 + parent: 1 + - uid: 4494 + components: + - type: Transform + pos: 67.5,8.5 + parent: 1 + - uid: 4497 + components: + - type: Transform + pos: -54.5,1.5 + parent: 1 + - uid: 4498 + components: + - type: Transform + pos: -54.5,2.5 + parent: 1 + - uid: 4499 + components: + - type: Transform + pos: -54.5,3.5 + parent: 1 + - uid: 4500 + components: + - type: Transform + pos: -54.5,4.5 + parent: 1 + - uid: 4501 + components: + - type: Transform + pos: -54.5,5.5 + parent: 1 + - uid: 4502 + components: + - type: Transform + pos: -54.5,6.5 + parent: 1 + - uid: 4503 + components: + - type: Transform + pos: -54.5,7.5 + parent: 1 + - uid: 4504 + components: + - type: Transform + pos: -54.5,8.5 + parent: 1 + - uid: 4505 + components: + - type: Transform + pos: -58.5,8.5 + parent: 1 + - uid: 4506 + components: + - type: Transform + pos: -58.5,6.5 + parent: 1 + - uid: 4507 + components: + - type: Transform + pos: -58.5,5.5 + parent: 1 + - uid: 4508 + components: + - type: Transform + pos: -58.5,4.5 + parent: 1 + - uid: 4509 + components: + - type: Transform + pos: -58.5,7.5 + parent: 1 + - uid: 4510 + components: + - type: Transform + pos: -58.5,3.5 + parent: 1 + - uid: 4511 + components: + - type: Transform + pos: -57.5,8.5 + parent: 1 + - uid: 4512 + components: + - type: Transform + pos: -57.5,6.5 + parent: 1 + - uid: 4513 + components: + - type: Transform + pos: -57.5,5.5 + parent: 1 + - uid: 4514 + components: + - type: Transform + pos: -57.5,7.5 + parent: 1 + - uid: 4515 + components: + - type: Transform + pos: -57.5,4.5 + parent: 1 + - uid: 4516 + components: + - type: Transform + pos: -57.5,3.5 + parent: 1 + - uid: 4517 + components: + - type: Transform + pos: -56.5,8.5 + parent: 1 + - uid: 4518 + components: + - type: Transform + pos: -56.5,7.5 + parent: 1 + - uid: 4519 + components: + - type: Transform + pos: -56.5,6.5 + parent: 1 + - uid: 4520 + components: + - type: Transform + pos: -56.5,5.5 + parent: 1 + - uid: 4521 + components: + - type: Transform + pos: -56.5,4.5 + parent: 1 + - uid: 4522 + components: + - type: Transform + pos: -57.5,9.5 + parent: 1 + - uid: 4524 + components: + - type: Transform + pos: -57.5,2.5 + parent: 1 + - uid: 4525 + components: + - type: Transform + pos: -58.5,9.5 + parent: 1 + - uid: 4526 + components: + - type: Transform + pos: -58.5,2.5 + parent: 1 + - uid: 4527 + components: + - type: Transform + pos: -58.5,1.5 + parent: 1 + - uid: 4528 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 1 + - uid: 4530 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 1 + - uid: 4532 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 1 + - uid: 4534 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 1 + - uid: 4536 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 1 + - uid: 4538 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 4809 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 1 + - uid: 4813 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 1 + - uid: 4814 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 1 + - uid: 4816 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1 + - uid: 4817 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 1 + - uid: 4818 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1 + - uid: 4819 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1 + - uid: 4820 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1 + - uid: 4821 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1 + - uid: 4822 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 1 + - uid: 4823 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1 + - uid: 4824 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 1 + - uid: 4825 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 1 + - uid: 4826 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1 + - uid: 4827 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1 + - uid: 4829 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 1 + - uid: 4830 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 1 + - uid: 4831 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 1 + - uid: 4832 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 1 + - uid: 4833 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1 + - uid: 4834 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 1 + - uid: 4835 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 1 + - uid: 4836 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 1 + - uid: 4837 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 1 + - uid: 4840 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 1 + - uid: 4841 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 1 + - uid: 4842 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 1 + - uid: 4843 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1 + - uid: 4844 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 1 + - uid: 4846 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 1 + - uid: 4848 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1 + - uid: 4849 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1 + - uid: 4851 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 1 + - uid: 4852 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 1 + - uid: 4853 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1 + - uid: 4854 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 1 + - uid: 4858 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 1 + - uid: 4860 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 1 + - uid: 4861 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 1 + - uid: 4862 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 1 + - uid: 4867 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 4868 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1 + - uid: 4869 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 4870 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1 + - uid: 4871 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1 + - uid: 4872 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 4873 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - uid: 4874 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 4875 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 4876 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 4877 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 4878 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 1 + - uid: 4879 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 4880 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 4881 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 4882 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1 + - uid: 4883 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 1 + - uid: 4884 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1 + - uid: 4885 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1 + - uid: 4886 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 1 + - uid: 4887 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 + - uid: 4888 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 4889 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 4890 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1 + - uid: 4891 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1 + - uid: 4892 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 1 + - uid: 4893 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 4894 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - uid: 4895 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 4896 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1 + - uid: 4897 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 4898 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 4899 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1 + - uid: 4900 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 4901 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 4902 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 4903 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1 + - uid: 4904 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1 + - uid: 4905 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1 + - uid: 4906 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 1 + - uid: 4907 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 4908 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 1 + - uid: 4909 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1 + - uid: 4910 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 1 + - uid: 4911 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 4912 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 4913 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 1 + - uid: 4914 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1 + - uid: 4915 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 1 + - uid: 4916 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 4917 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 4918 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 1 + - uid: 4919 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1 + - uid: 4920 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 1 + - uid: 4921 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - uid: 4922 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 4923 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 4924 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 4925 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1 + - uid: 4926 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 1 + - uid: 4927 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1 + - uid: 4928 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 4929 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 4930 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 4931 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 4932 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1 + - uid: 4933 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1 + - uid: 4934 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1 + - uid: 4935 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1 + - uid: 4936 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 4937 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1 + - uid: 4938 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 4939 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 4940 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 4941 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 4942 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 4943 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 4944 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 4945 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 4946 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 4947 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1 + - uid: 4948 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 4949 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1 + - uid: 4950 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 4951 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 1 + - uid: 4952 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1 + - uid: 4953 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1 + - uid: 4954 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 4955 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 4956 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 4957 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 4958 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 4959 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 4961 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 4962 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 4963 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1 + - uid: 4964 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 + - uid: 4965 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 4966 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 4967 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 4968 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 4970 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 1 + - uid: 4971 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 1 + - uid: 4972 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 4973 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1 + - uid: 4974 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 4975 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 4976 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1 + - uid: 4977 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1 + - uid: 4978 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 + - uid: 4979 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1 + - uid: 4980 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 4981 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1 + - uid: 4982 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 4983 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 1 + - uid: 4984 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 4985 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1 + - uid: 4986 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1 + - uid: 4987 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1 + - uid: 4988 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 1 + - uid: 4989 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 4990 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - uid: 4991 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 + - uid: 4992 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 4993 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 4994 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 + - uid: 4995 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 1 + - uid: 4996 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 1 + - uid: 4997 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 1 + - uid: 4998 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 1 + - uid: 4999 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1 + - uid: 5000 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 5001 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1 + - uid: 5002 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1 + - uid: 5003 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 1 + - uid: 5004 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 1 + - uid: 5005 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1 + - uid: 5006 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 1 + - uid: 5007 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1 + - uid: 5008 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 5009 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 5010 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1 + - uid: 5011 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1 + - uid: 5012 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 1 + - uid: 5013 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 1 + - uid: 5014 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 5015 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 5016 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1 + - uid: 5017 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 5018 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 1 + - uid: 5019 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 1 + - uid: 5020 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 1 + - uid: 5021 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1 + - uid: 5022 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 1 + - uid: 5023 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 1 + - uid: 5024 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 1 + - uid: 5025 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 1 + - uid: 5026 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 1 + - uid: 5027 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1 + - uid: 5030 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1 + - uid: 5031 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1 + - uid: 5032 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 1 + - uid: 5033 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1 + - uid: 5034 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 1 + - uid: 5035 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 1 + - uid: 5036 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 + - uid: 5039 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1 + - uid: 5040 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 1 + - uid: 5041 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1 + - uid: 5042 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 5043 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 1 + - uid: 5044 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 1 + - uid: 5045 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 1 + - uid: 5046 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 1 + - uid: 5047 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1 + - uid: 5048 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 5049 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 1 + - uid: 5051 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1 + - uid: 5052 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1 + - uid: 5053 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 1 + - uid: 5054 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 + - uid: 5055 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 1 + - uid: 5056 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 1 + - uid: 5057 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1 + - uid: 5058 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 1 + - uid: 5059 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 5060 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 1 + - uid: 5061 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 1 + - uid: 5062 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1 + - uid: 5063 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 1 + - uid: 5064 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 1 + - uid: 5065 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 1 + - uid: 5066 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1 + - uid: 5067 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 1 + - uid: 5068 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 1 + - uid: 5069 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 1 + - uid: 5070 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 1 + - uid: 5072 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1 + - uid: 5073 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 1 + - uid: 5074 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 1 + - uid: 5075 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 1 + - uid: 5076 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 1 + - uid: 5078 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 1 + - uid: 5079 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 1 + - uid: 5080 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 1 + - uid: 5081 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - uid: 5082 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 1 + - uid: 5083 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 1 + - uid: 5084 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 1 + - uid: 5085 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 1 + - uid: 5086 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 1 + - uid: 5087 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 1 + - uid: 5088 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 1 + - uid: 5089 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 1 + - uid: 5090 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1 + - uid: 5091 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 1 + - uid: 5095 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 1 + - uid: 5096 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 1 + - uid: 5097 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 1 + - uid: 5098 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 1 + - uid: 5099 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 1 + - uid: 5100 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 1 + - uid: 5101 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 1 + - uid: 5102 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 1 + - uid: 5103 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 1 + - uid: 5105 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 1 + - uid: 5106 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 1 + - uid: 5107 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 1 + - uid: 5108 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1 + - uid: 5109 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1 + - uid: 5110 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1 + - uid: 5111 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 1 + - uid: 5112 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 1 + - uid: 5113 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 1 + - uid: 5114 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 1 + - uid: 5115 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 1 + - uid: 5116 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 1 + - uid: 5117 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 1 + - uid: 5118 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 1 + - uid: 5119 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 1 + - uid: 5120 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 1 + - uid: 5121 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 1 + - uid: 5122 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 1 + - uid: 5123 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 1 + - uid: 5124 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 1 + - uid: 5125 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1 + - uid: 5126 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 1 + - uid: 5127 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 1 + - uid: 5128 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 1 + - uid: 5129 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 1 + - uid: 5130 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 1 + - uid: 5131 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 1 + - uid: 5132 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 1 + - uid: 5133 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 1 + - uid: 5134 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 1 + - uid: 5136 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 1 + - uid: 5137 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 1 + - uid: 5138 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 1 + - uid: 5139 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 1 + - uid: 5140 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 1 + - uid: 5141 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 1 + - uid: 5142 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 1 + - uid: 5143 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 1 + - uid: 5144 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 1 + - uid: 5146 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 1 + - uid: 5147 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 1 + - uid: 5148 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 1 + - uid: 5149 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 1 + - uid: 5150 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 1 + - uid: 5151 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 1 + - uid: 5152 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 1 + - uid: 5153 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 1 + - uid: 5154 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 1 + - uid: 5155 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 1 + - uid: 5156 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 1 + - uid: 5157 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 1 + - uid: 5158 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 1 + - uid: 5159 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 1 + - uid: 5160 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 1 + - uid: 5161 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 1 + - uid: 5162 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 1 + - uid: 5163 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 1 + - uid: 5164 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 1 + - uid: 5165 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 1 + - uid: 5166 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 1 + - uid: 5167 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 1 + - uid: 5168 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 1 + - uid: 5169 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 1 + - uid: 5170 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 1 + - uid: 5171 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 1 + - uid: 5172 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 1 + - uid: 5173 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 1 + - uid: 5174 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 1 + - uid: 5175 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 1 + - uid: 5176 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 1 + - uid: 5177 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 1 + - uid: 5178 + components: + - type: Transform + pos: 39.5,-34.5 + parent: 1 + - uid: 5179 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 1 + - uid: 5180 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 1 + - uid: 5181 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 1 + - uid: 5182 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 1 + - uid: 5183 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 1 + - uid: 5184 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 1 + - uid: 5185 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 1 + - uid: 5186 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 1 + - uid: 5187 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 1 + - uid: 5188 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 1 + - uid: 5189 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 1 + - uid: 5190 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 1 + - uid: 5191 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 1 + - uid: 5192 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 1 + - uid: 5193 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 1 + - uid: 5194 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 1 + - uid: 5195 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 1 + - uid: 5196 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 1 + - uid: 5197 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 1 + - uid: 5198 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 1 + - uid: 5199 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 1 + - uid: 5200 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 1 + - uid: 5201 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 1 + - uid: 5202 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 1 + - uid: 5203 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 1 + - uid: 5204 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 1 + - uid: 5205 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 1 + - uid: 5206 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 1 + - uid: 5207 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 1 + - uid: 5208 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 1 + - uid: 5209 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 1 + - uid: 5210 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 1 + - uid: 5211 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 1 + - uid: 5212 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 1 + - uid: 5213 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 1 + - uid: 5214 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 1 + - uid: 5215 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 1 + - uid: 5216 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 1 + - uid: 5217 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 1 + - uid: 5218 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 1 + - uid: 5219 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 1 + - uid: 5220 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 1 + - uid: 5221 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 1 + - uid: 5222 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 1 + - uid: 5223 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 1 + - uid: 5224 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 1 + - uid: 5225 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 1 + - uid: 5226 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 1 + - uid: 5227 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 1 + - uid: 5228 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 1 + - uid: 5229 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 1 + - uid: 5230 + components: + - type: Transform + pos: 45.5,-31.5 + parent: 1 + - uid: 5231 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 1 + - uid: 5232 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 1 + - uid: 5233 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 1 + - uid: 5234 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 1 + - uid: 5235 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 1 + - uid: 5236 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 1 + - uid: 5238 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 1 + - uid: 5239 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 1 + - uid: 5240 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 1 + - uid: 5241 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 1 + - uid: 5242 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 1 + - uid: 5243 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 1 + - uid: 5244 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 1 + - uid: 5245 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 1 + - uid: 5246 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 1 + - uid: 5247 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 1 + - uid: 5248 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 1 + - uid: 5249 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 1 + - uid: 5250 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 1 + - uid: 5251 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 1 + - uid: 5252 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 1 + - uid: 5253 + components: + - type: Transform + pos: 48.5,-27.5 + parent: 1 + - uid: 5254 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 1 + - uid: 5255 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 1 + - uid: 5256 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 1 + - uid: 5257 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 1 + - uid: 5258 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 1 + - uid: 5259 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 1 + - uid: 5260 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 1 + - uid: 5261 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 1 + - uid: 5262 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 1 + - uid: 5263 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 1 + - uid: 5264 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 1 + - uid: 5265 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 1 + - uid: 5266 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 1 + - uid: 5267 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 1 + - uid: 5268 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 1 + - uid: 5269 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 1 + - uid: 5270 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 1 + - uid: 5271 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 1 + - uid: 5272 + components: + - type: Transform + pos: 50.5,-28.5 + parent: 1 + - uid: 5273 + components: + - type: Transform + pos: 50.5,-29.5 + parent: 1 + - uid: 5274 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 1 + - uid: 5275 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 1 + - uid: 5276 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 1 + - uid: 5277 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 1 + - uid: 5278 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 1 + - uid: 5279 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 1 + - uid: 5280 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 1 + - uid: 5281 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 1 + - uid: 5282 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 1 + - uid: 5283 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 1 + - uid: 5284 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 1 + - uid: 5285 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 1 + - uid: 5286 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 1 + - uid: 5287 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 1 + - uid: 5288 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 1 + - uid: 5289 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 1 + - uid: 5290 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 1 + - uid: 5291 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 1 + - uid: 5292 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 1 + - uid: 5293 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 1 + - uid: 5294 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 1 + - uid: 5295 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 1 + - uid: 5296 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 1 + - uid: 5297 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 1 + - uid: 5298 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 1 + - uid: 5299 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 1 + - uid: 5300 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 1 + - uid: 5301 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 1 + - uid: 5302 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 1 + - uid: 5303 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 1 + - uid: 5304 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 1 + - uid: 5305 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 1 + - uid: 5306 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 1 + - uid: 5307 + components: + - type: Transform + pos: 54.5,-27.5 + parent: 1 + - uid: 5308 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 1 + - uid: 5309 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 1 + - uid: 5310 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 1 + - uid: 5311 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 1 + - uid: 5312 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 1 + - uid: 5313 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 1 + - uid: 5314 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 1 + - uid: 5315 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 1 + - uid: 5316 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 1 + - uid: 5317 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 1 + - uid: 5318 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 1 + - uid: 5319 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 1 + - uid: 5320 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 1 + - uid: 5321 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 1 + - uid: 5322 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 1 + - uid: 5323 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 1 + - uid: 5324 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 1 + - uid: 5325 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 1 + - uid: 5326 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 1 + - uid: 5330 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 1 + - uid: 5331 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 1 + - uid: 5332 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 1 + - uid: 5333 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 1 + - uid: 5334 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 1 + - uid: 5335 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 1 + - uid: 5336 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 1 + - uid: 5337 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 1 + - uid: 5338 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 1 + - uid: 5340 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 1 + - uid: 5341 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 1 + - uid: 5342 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 1 + - uid: 5343 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 1 + - uid: 5344 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 1 + - uid: 5345 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 1 + - uid: 5346 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 1 + - uid: 5347 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 1 + - uid: 5348 + components: + - type: Transform + pos: 58.5,-32.5 + parent: 1 + - uid: 5349 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 1 + - uid: 5350 + components: + - type: Transform + pos: 58.5,-34.5 + parent: 1 + - uid: 5351 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 1 + - uid: 5352 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 1 + - uid: 5353 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 1 + - uid: 5354 + components: + - type: Transform + pos: 59.5,-29.5 + parent: 1 + - uid: 5355 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 1 + - uid: 5356 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 1 + - uid: 5357 + components: + - type: Transform + pos: 59.5,-32.5 + parent: 1 + - uid: 5358 + components: + - type: Transform + pos: 59.5,-33.5 + parent: 1 + - uid: 5359 + components: + - type: Transform + pos: 59.5,-34.5 + parent: 1 + - uid: 5360 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 1 + - uid: 5361 + components: + - type: Transform + pos: 60.5,-27.5 + parent: 1 + - uid: 5362 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 1 + - uid: 5363 + components: + - type: Transform + pos: 60.5,-29.5 + parent: 1 + - uid: 5364 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 1 + - uid: 5365 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 1 + - uid: 5366 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 1 + - uid: 5367 + components: + - type: Transform + pos: 60.5,-33.5 + parent: 1 + - uid: 5368 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 1 + - uid: 5369 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 1 + - uid: 5370 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 1 + - uid: 5371 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 1 + - uid: 5372 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 1 + - uid: 5373 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 1 + - uid: 5374 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 1 + - uid: 5375 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 1 + - uid: 5376 + components: + - type: Transform + pos: 61.5,-33.5 + parent: 1 + - uid: 5377 + components: + - type: Transform + pos: 61.5,-34.5 + parent: 1 + - uid: 5378 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 1 + - uid: 5379 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 1 + - uid: 5380 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 1 + - uid: 5381 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 1 + - uid: 5382 + components: + - type: Transform + pos: 62.5,-30.5 + parent: 1 + - uid: 5383 + components: + - type: Transform + pos: 62.5,-31.5 + parent: 1 + - uid: 5384 + components: + - type: Transform + pos: 62.5,-32.5 + parent: 1 + - uid: 5385 + components: + - type: Transform + pos: 62.5,-33.5 + parent: 1 + - uid: 5386 + components: + - type: Transform + pos: 62.5,-34.5 + parent: 1 + - uid: 5387 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 1 + - uid: 5388 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 1 + - uid: 5389 + components: + - type: Transform + pos: 63.5,-28.5 + parent: 1 + - uid: 5390 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 1 + - uid: 5391 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 1 + - uid: 5392 + components: + - type: Transform + pos: 63.5,-31.5 + parent: 1 + - uid: 5393 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 1 + - uid: 5394 + components: + - type: Transform + pos: 63.5,-33.5 + parent: 1 + - uid: 5395 + components: + - type: Transform + pos: 63.5,-34.5 + parent: 1 + - uid: 5396 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 1 + - uid: 5397 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 1 + - uid: 5398 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 1 + - uid: 5399 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 1 + - uid: 5400 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 1 + - uid: 5401 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 1 + - uid: 5402 + components: + - type: Transform + pos: 64.5,-32.5 + parent: 1 + - uid: 5403 + components: + - type: Transform + pos: 64.5,-33.5 + parent: 1 + - uid: 5404 + components: + - type: Transform + pos: 64.5,-34.5 + parent: 1 + - uid: 5405 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 1 + - uid: 5406 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 1 + - uid: 5407 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 1 + - uid: 5408 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 1 + - uid: 5409 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 1 + - uid: 5410 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 1 + - uid: 5411 + components: + - type: Transform + pos: 65.5,-32.5 + parent: 1 + - uid: 5412 + components: + - type: Transform + pos: 65.5,-33.5 + parent: 1 + - uid: 5413 + components: + - type: Transform + pos: 65.5,-34.5 + parent: 1 + - uid: 5414 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 1 + - uid: 5415 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 1 + - uid: 5419 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 1 + - uid: 5420 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 1 + - uid: 5421 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 1 + - uid: 5422 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 1 + - uid: 5423 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 1 + - uid: 5428 + components: + - type: Transform + pos: 67.5,-31.5 + parent: 1 + - uid: 5429 + components: + - type: Transform + pos: 67.5,-32.5 + parent: 1 + - uid: 5430 + components: + - type: Transform + pos: 67.5,-33.5 + parent: 1 + - uid: 5431 + components: + - type: Transform + pos: 67.5,-34.5 + parent: 1 + - uid: 5432 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 1 + - uid: 5433 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 1 + - uid: 5434 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 1 + - uid: 5435 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 1 + - uid: 5436 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 1 + - uid: 5437 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 1 + - uid: 5438 + components: + - type: Transform + pos: 68.5,-32.5 + parent: 1 + - uid: 5439 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 1 + - uid: 5440 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 1 + - uid: 5441 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 1 + - uid: 5442 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 1 + - uid: 5443 + components: + - type: Transform + pos: 69.5,-28.5 + parent: 1 + - uid: 5444 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 1 + - uid: 5445 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 1 + - uid: 5446 + components: + - type: Transform + pos: 69.5,-31.5 + parent: 1 + - uid: 5447 + components: + - type: Transform + pos: 69.5,-32.5 + parent: 1 + - uid: 5448 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 1 + - uid: 5449 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 1 + - uid: 5450 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 + - uid: 5451 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 5452 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1 + - uid: 5453 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 1 + - uid: 5454 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1 + - uid: 5455 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 1 + - uid: 5456 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 + - uid: 5457 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 1 + - uid: 5458 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 1 + - uid: 5459 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 1 + - uid: 5460 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 1 + - uid: 5461 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 1 + - uid: 5462 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 1 + - uid: 5463 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 1 + - uid: 5464 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 5465 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 5466 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 5467 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 5468 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 5469 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 5470 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1 + - uid: 5471 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1 + - uid: 5472 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 1 + - uid: 5473 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 1 + - uid: 5474 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1 + - uid: 5475 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1 + - uid: 5476 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 1 + - uid: 5477 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 1 + - uid: 5478 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 1 + - uid: 5479 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 1 + - uid: 5480 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 1 + - uid: 5481 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 1 + - uid: 5482 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 1 + - uid: 5483 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 1 + - uid: 5484 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 1 + - uid: 5485 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 1 + - uid: 5486 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 1 + - uid: 5487 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 1 + - uid: 5488 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 1 + - uid: 5489 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 1 + - uid: 5490 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 1 + - uid: 5491 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 1 + - uid: 5492 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 1 + - uid: 5493 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 1 + - uid: 5494 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 1 + - uid: 5495 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 1 + - uid: 5496 + components: + - type: Transform + pos: 44.5,-35.5 + parent: 1 + - uid: 5497 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 1 + - uid: 5498 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 1 + - uid: 5499 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 1 + - uid: 5500 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 1 + - uid: 5501 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 1 + - uid: 5502 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 1 + - uid: 5503 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 1 + - uid: 5504 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 1 + - uid: 5505 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 1 + - uid: 5506 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 1 + - uid: 5507 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 1 + - uid: 5508 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 1 + - uid: 5509 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 1 + - uid: 5510 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 1 + - uid: 5511 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 1 + - uid: 5512 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 1 + - uid: 5513 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 1 + - uid: 5514 + components: + - type: Transform + pos: 53.5,-35.5 + parent: 1 + - uid: 5515 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 1 + - uid: 5516 + components: + - type: Transform + pos: 55.5,-35.5 + parent: 1 + - uid: 5517 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 1 + - uid: 5518 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 1 + - uid: 5519 + components: + - type: Transform + pos: 58.5,-35.5 + parent: 1 + - uid: 5520 + components: + - type: Transform + pos: 59.5,-35.5 + parent: 1 + - uid: 5521 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 1 + - uid: 5522 + components: + - type: Transform + pos: 61.5,-35.5 + parent: 1 + - uid: 5523 + components: + - type: Transform + pos: 62.5,-35.5 + parent: 1 + - uid: 5524 + components: + - type: Transform + pos: 63.5,-35.5 + parent: 1 + - uid: 5525 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 1 + - uid: 5526 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 1 + - uid: 5527 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 1 + - uid: 5528 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 1 + - uid: 5529 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 1 + - uid: 5530 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 1 + - uid: 5531 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 1 + - uid: 5532 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 1 + - uid: 5533 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 1 + - uid: 5534 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 1 + - uid: 5535 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 1 + - uid: 5536 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 1 + - uid: 5537 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 1 + - uid: 5538 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 1 + - uid: 5539 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1 + - uid: 5540 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 1 + - uid: 5541 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 1 + - uid: 5542 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1 + - uid: 5543 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1 + - uid: 5544 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 1 + - uid: 5545 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 1 + - uid: 5546 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1 + - uid: 5547 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 1 + - uid: 5548 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 1 + - uid: 5549 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 1 + - uid: 5550 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 1 + - uid: 5551 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 1 + - uid: 5552 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1 + - uid: 5553 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1 + - uid: 5554 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 1 + - uid: 5555 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1 + - uid: 5556 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 1 + - uid: 5557 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1 + - uid: 5558 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 1 + - uid: 5559 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 1 + - uid: 5560 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 1 + - uid: 5561 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 1 + - uid: 5562 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 1 + - uid: 5563 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1 + - uid: 5564 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1 + - uid: 5565 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1 + - uid: 5566 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1 + - uid: 5567 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1 + - uid: 5568 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1 + - uid: 5569 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 1 + - uid: 5570 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 1 + - uid: 5571 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 1 + - uid: 5572 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 1 + - uid: 5573 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 1 + - uid: 5574 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 1 + - uid: 5576 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1 + - uid: 5577 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1 + - uid: 5578 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1 + - uid: 5579 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1 + - uid: 5580 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 1 + - uid: 5581 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 1 + - uid: 5582 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1 + - uid: 5583 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 1 + - uid: 5584 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 1 + - uid: 5585 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 1 + - uid: 5586 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 1 + - uid: 5587 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 1 + - uid: 5588 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1 + - uid: 5589 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 1 + - uid: 5590 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 1 + - uid: 5591 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 1 + - uid: 5592 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1 + - uid: 5593 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 1 + - uid: 5594 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1 + - uid: 5595 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1 + - uid: 5596 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1 + - uid: 5597 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1 + - uid: 5598 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1 + - uid: 5599 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 1 + - uid: 5600 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 1 + - uid: 5601 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1 + - uid: 5602 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 1 + - uid: 5603 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 1 + - uid: 5604 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1 + - uid: 5605 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 1 + - uid: 5606 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 1 + - uid: 5607 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 1 + - uid: 5608 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 1 + - uid: 5609 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 1 + - uid: 5610 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 1 + - uid: 5611 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 1 + - uid: 5612 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 1 + - uid: 5613 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 1 + - uid: 5614 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 1 + - uid: 5615 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1 + - uid: 5616 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 1 + - uid: 5617 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 1 + - uid: 5618 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 1 + - uid: 5619 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 1 + - uid: 5620 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1 + - uid: 5621 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1 + - uid: 5622 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1 + - uid: 5623 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1 + - uid: 5624 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1 + - uid: 5625 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 1 + - uid: 5626 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1 + - uid: 5627 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1 + - uid: 5628 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 1 + - uid: 5629 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 1 + - uid: 5630 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 1 + - uid: 5631 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 1 + - uid: 5632 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 1 + - uid: 5633 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 1 + - uid: 5634 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 1 + - uid: 5635 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 1 + - uid: 5636 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 1 + - uid: 5637 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 1 + - uid: 5638 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 1 + - uid: 5639 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 1 + - uid: 5640 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1 + - uid: 5641 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 1 + - uid: 5642 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1 + - uid: 5643 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1 + - uid: 5644 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 1 + - uid: 5645 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1 + - uid: 5646 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 1 + - uid: 5647 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 1 + - uid: 5648 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 1 + - uid: 5649 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 1 + - uid: 5650 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 1 + - uid: 5651 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 1 + - uid: 5652 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 1 + - uid: 5653 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 1 + - uid: 5654 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 1 + - uid: 5655 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 1 + - uid: 5657 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 1 + - uid: 5658 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 1 + - uid: 5659 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 1 + - uid: 5660 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 1 + - uid: 5661 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 1 + - uid: 5662 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 1 + - uid: 5664 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 1 + - uid: 5665 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1 + - uid: 5666 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 1 + - uid: 5668 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 1 + - uid: 5669 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 1 + - uid: 5670 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 1 + - uid: 5671 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 1 + - uid: 5672 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 1 + - uid: 5674 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 1 + - uid: 5675 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1 + - uid: 5676 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 1 + - uid: 5677 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1 + - uid: 5679 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 1 + - uid: 5680 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 1 + - uid: 5681 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 1 + - uid: 5682 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 1 + - uid: 5683 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 1 + - uid: 5685 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 1 + - uid: 5686 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 1 + - uid: 5687 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 1 + - uid: 5688 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 1 + - uid: 5690 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 1 + - uid: 5691 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 1 + - uid: 5692 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 1 + - uid: 5693 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 1 + - uid: 5694 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 1 + - uid: 5696 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 1 + - uid: 5697 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 1 + - uid: 5698 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 1 + - uid: 5699 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 1 + - uid: 5702 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 1 + - uid: 5703 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 1 + - uid: 5704 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 1 + - uid: 5705 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 1 + - uid: 5707 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 1 + - uid: 5708 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 1 + - uid: 5709 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1 + - uid: 5710 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 1 + - uid: 5713 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 1 + - uid: 5714 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 1 + - uid: 5715 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 1 + - uid: 5716 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 1 + - uid: 5717 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 1 + - uid: 5718 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 1 + - uid: 5719 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 1 + - uid: 5720 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 1 + - uid: 5722 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 1 + - uid: 5724 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 1 + - uid: 5725 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 1 + - uid: 5726 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 1 + - uid: 5727 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 1 + - uid: 5728 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 1 + - uid: 5729 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 1 + - uid: 5730 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 1 + - uid: 5731 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1 + - uid: 5732 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 1 + - uid: 5734 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 1 + - uid: 5735 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 1 + - uid: 5736 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 1 + - uid: 5737 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 1 + - uid: 5738 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 1 + - uid: 5739 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 1 + - uid: 5740 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 1 + - uid: 5741 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 1 + - uid: 5742 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 1 + - uid: 5743 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 1 + - uid: 5745 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 1 + - uid: 5746 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 1 + - uid: 5747 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 1 + - uid: 5748 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 1 + - uid: 5749 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 1 + - uid: 5750 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 1 + - uid: 5751 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 1 + - uid: 5752 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 1 + - uid: 5753 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 1 + - uid: 5754 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 1 + - uid: 5755 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 1 + - uid: 5756 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 1 + - uid: 5757 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 1 + - uid: 5758 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 1 + - uid: 5759 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 1 + - uid: 5760 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 1 + - uid: 5761 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 1 + - uid: 5762 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 1 + - uid: 5763 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 1 + - uid: 5764 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 1 + - uid: 5765 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 1 + - uid: 5766 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 1 + - uid: 5767 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 1 + - uid: 5768 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 1 + - uid: 5769 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 1 + - uid: 5770 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 1 + - uid: 5771 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 1 + - uid: 5772 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 1 + - uid: 5773 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 1 + - uid: 5774 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 1 + - uid: 5775 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 1 + - uid: 5776 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 1 + - uid: 5777 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 1 + - uid: 5778 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 1 + - uid: 5779 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 1 + - uid: 5780 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 1 + - uid: 5781 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 1 + - uid: 5782 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 1 + - uid: 5783 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 1 + - uid: 5784 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 1 + - uid: 5785 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 1 + - uid: 5786 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1 + - uid: 5787 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 1 + - uid: 5788 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 1 + - uid: 5789 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 1 + - uid: 5790 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 1 + - uid: 5791 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 1 + - uid: 5792 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 1 + - uid: 5793 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 1 + - uid: 5794 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 1 + - uid: 5795 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 1 + - uid: 5796 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 1 + - uid: 5797 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 1 + - uid: 5798 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 1 + - uid: 5799 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 1 + - uid: 5800 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 1 + - uid: 5801 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 1 + - uid: 5802 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 1 + - uid: 5803 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 1 + - uid: 5804 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 1 + - uid: 5805 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 1 + - uid: 5806 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 1 + - uid: 5807 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 1 + - uid: 5808 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 1 + - uid: 5809 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 1 + - uid: 5810 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 1 + - uid: 5811 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 1 + - uid: 5812 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 1 + - uid: 5813 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 1 + - uid: 5814 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 1 + - uid: 5815 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 1 + - uid: 5816 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 1 + - uid: 5817 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 1 + - uid: 5818 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 1 + - uid: 5819 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 1 + - uid: 5820 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 1 + - uid: 5821 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 1 + - uid: 5822 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 1 + - uid: 5823 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 1 + - uid: 5826 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 1 + - uid: 5827 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 1 + - uid: 5828 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 1 + - uid: 5829 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 1 + - uid: 5830 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 1 + - uid: 5831 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 1 + - uid: 5832 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 1 + - uid: 5835 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 1 + - uid: 5836 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 1 + - uid: 5837 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 1 + - uid: 5838 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 1 + - uid: 5839 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 1 + - uid: 5840 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 1 + - uid: 5841 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 1 + - uid: 5842 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 1 + - uid: 5843 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 1 + - uid: 5844 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 1 + - uid: 5845 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 1 + - uid: 5846 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 1 + - uid: 5847 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 1 + - uid: 5848 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 1 + - uid: 5849 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 1 + - uid: 5850 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 1 + - uid: 5851 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 1 + - uid: 5852 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 1 + - uid: 5853 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 1 + - uid: 5854 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 1 + - uid: 5855 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 1 + - uid: 5856 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 1 + - uid: 5857 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 1 + - uid: 5858 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 1 + - uid: 5859 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 1 + - uid: 5860 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 1 + - uid: 5861 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 1 + - uid: 5862 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 1 + - uid: 5863 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 1 + - uid: 5864 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 1 + - uid: 5865 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 1 + - uid: 5866 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 1 + - uid: 5867 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 1 + - uid: 5868 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 1 + - uid: 5869 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 1 + - uid: 5870 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 1 + - uid: 5871 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 1 + - uid: 5872 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 1 + - uid: 5873 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 1 + - uid: 5874 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 1 + - uid: 5875 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 1 + - uid: 5876 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 1 + - uid: 5877 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 1 + - uid: 5878 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 1 + - uid: 5879 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 1 + - uid: 5880 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 1 + - uid: 5881 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 1 + - uid: 5882 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 1 + - uid: 5883 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 1 + - uid: 5884 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 1 + - uid: 5885 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 1 + - uid: 5886 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 1 + - uid: 5887 + components: + - type: Transform + pos: -43.5,-33.5 + parent: 1 + - uid: 5888 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 1 + - uid: 5889 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 1 + - uid: 5890 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 1 + - uid: 5891 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 1 + - uid: 5892 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 1 + - uid: 5893 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 1 + - uid: 5894 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 1 + - uid: 5895 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 1 + - uid: 5896 + components: + - type: Transform + pos: -44.5,-35.5 + parent: 1 + - uid: 5897 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 1 + - uid: 5898 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 1 + - uid: 5899 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 1 + - uid: 5900 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 1 + - uid: 5901 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 1 + - uid: 5902 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 1 + - uid: 5903 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 1 + - uid: 5904 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 1 + - uid: 5905 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 1 + - uid: 5906 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 1 + - uid: 5907 + components: + - type: Transform + pos: -45.5,-35.5 + parent: 1 + - uid: 5908 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 1 + - uid: 5909 + components: + - type: Transform + pos: -45.5,-33.5 + parent: 1 + - uid: 5910 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 1 + - uid: 5911 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 1 + - uid: 5912 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 1 + - uid: 5913 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 1 + - uid: 5914 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 1 + - uid: 5915 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 1 + - uid: 5916 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 1 + - uid: 5917 + components: + - type: Transform + pos: -53.5,-36.5 + parent: 1 + - uid: 5918 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 1 + - uid: 5919 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 1 + - uid: 5920 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 1 + - uid: 5921 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 1 + - uid: 5922 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 1 + - uid: 5923 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 1 + - uid: 5924 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 1 + - uid: 5925 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 1 + - uid: 5926 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 1 + - uid: 5927 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 1 + - uid: 5928 + components: + - type: Transform + pos: -47.5,-36.5 + parent: 1 + - uid: 5929 + components: + - type: Transform + pos: -47.5,-35.5 + parent: 1 + - uid: 5930 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 1 + - uid: 5931 + components: + - type: Transform + pos: -47.5,-33.5 + parent: 1 + - uid: 5932 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 1 + - uid: 5933 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 1 + - uid: 5934 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 1 + - uid: 5935 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 1 + - uid: 5936 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 1 + - uid: 5937 + components: + - type: Transform + pos: -47.5,-27.5 + parent: 1 + - uid: 5938 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 1 + - uid: 5939 + components: + - type: Transform + pos: -48.5,-36.5 + parent: 1 + - uid: 5940 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 1 + - uid: 5941 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 1 + - uid: 5942 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 1 + - uid: 5943 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 1 + - uid: 5944 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 1 + - uid: 5945 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 1 + - uid: 5946 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 1 + - uid: 5947 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 1 + - uid: 5948 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 1 + - uid: 5949 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 1 + - uid: 5950 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 1 + - uid: 5951 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 1 + - uid: 5952 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 1 + - uid: 5953 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 1 + - uid: 5954 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 1 + - uid: 5955 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 1 + - uid: 5956 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 1 + - uid: 5958 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 1 + - uid: 5959 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 1 + - uid: 5960 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 1 + - uid: 5961 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 1 + - uid: 5962 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 1 + - uid: 5963 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 1 + - uid: 5964 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 1 + - uid: 5965 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 1 + - uid: 5966 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 1 + - uid: 5969 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 1 + - uid: 5970 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 1 + - uid: 5971 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 1 + - uid: 5973 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 1 + - uid: 5974 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 1 + - uid: 5975 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 1 + - uid: 5976 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 1 + - uid: 5977 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 1 + - uid: 5980 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 1 + - uid: 5981 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 1 + - uid: 5982 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 1 + - uid: 5984 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 1 + - uid: 5985 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 1 + - uid: 5986 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 1 + - uid: 5987 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 1 + - uid: 5988 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 1 + - uid: 5989 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 1 + - uid: 5991 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 1 + - uid: 5992 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 1 + - uid: 5994 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 1 + - uid: 5995 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 1 + - uid: 5996 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 1 + - uid: 5997 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 1 + - uid: 5998 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 1 + - uid: 6000 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 1 + - uid: 6001 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 1 + - uid: 6002 + components: + - type: Transform + pos: -53.5,-27.5 + parent: 1 + - uid: 6003 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 1 + - uid: 6005 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 1 + - uid: 6006 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 1 + - uid: 6007 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 1 + - uid: 6008 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 1 + - uid: 6009 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 1 + - uid: 6011 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 1 + - uid: 6012 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 1 + - uid: 6013 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 1 + - uid: 6014 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 1 + - uid: 6016 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 1 + - uid: 6017 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 1 + - uid: 6018 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 1 + - uid: 6022 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 1 + - uid: 6023 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 1 + - uid: 6024 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 1 + - uid: 6025 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 1 + - uid: 6027 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 1 + - uid: 6028 + components: + - type: Transform + pos: -56.5,-34.5 + parent: 1 + - uid: 6029 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 1 + - uid: 6030 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 1 + - uid: 6031 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 1 + - uid: 6032 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 1 + - uid: 6033 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 1 + - uid: 6034 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 1 + - uid: 6035 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 1 + - uid: 6036 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 1 + - uid: 6038 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 1 + - uid: 6039 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 1 + - uid: 6040 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 1 + - uid: 6041 + components: + - type: Transform + pos: -57.5,-32.5 + parent: 1 + - uid: 6042 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 1 + - uid: 6043 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 1 + - uid: 6044 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 1 + - uid: 6045 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 1 + - uid: 6046 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 1 + - uid: 6047 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 1 + - uid: 6049 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 1 + - uid: 6050 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 1 + - uid: 6051 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 1 + - uid: 6052 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 1 + - uid: 6053 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 1 + - uid: 6054 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 1 + - uid: 6055 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 1 + - uid: 6056 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 1 + - uid: 6057 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 1 + - uid: 6058 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 1 + - uid: 6059 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 1 + - uid: 6060 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 1 + - uid: 6061 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 1 + - uid: 6062 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 1 + - uid: 6063 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 1 + - uid: 6064 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 1 + - uid: 6065 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 1 + - uid: 6067 + components: + - type: Transform + pos: -56.5,-24.5 + parent: 1 + - uid: 6068 + components: + - type: Transform + pos: -56.5,-25.5 + parent: 1 + - uid: 6069 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 1 + - uid: 6070 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 1 + - uid: 6071 + components: + - type: Transform + pos: -55.5,-25.5 + parent: 1 + - uid: 6073 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 1 + - uid: 6074 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 1 + - uid: 6077 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 1 + - uid: 6079 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 1 + - uid: 6080 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 1 + - uid: 6082 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 1 + - uid: 6083 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 1 + - uid: 6085 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 1 + - uid: 6086 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 1 + - uid: 6087 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 1 + - uid: 6088 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 1 + - uid: 6089 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 1 + - uid: 6090 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 1 + - uid: 6091 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 1 + - uid: 6092 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 1 + - uid: 6094 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 1 + - uid: 6095 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 1 + - uid: 6097 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 1 + - uid: 6100 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 1 + - uid: 6101 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 1 + - uid: 6102 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 1 + - uid: 6103 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 1 + - uid: 6104 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 1 + - uid: 6105 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 1 + - uid: 6106 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 1 + - uid: 6107 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 1 + - uid: 6108 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 1 + - uid: 6109 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 1 + - uid: 6110 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 1 + - uid: 6111 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 1 + - uid: 6112 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 1 + - uid: 6113 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 1 + - uid: 6114 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 1 + - uid: 6115 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 1 + - uid: 6116 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 1 + - uid: 6117 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 1 + - uid: 6136 + components: + - type: Transform + pos: 69.5,-18.5 + parent: 1 + - uid: 6138 + components: + - type: Transform + pos: 69.5,-17.5 + parent: 1 + - uid: 6139 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 1 + - uid: 6140 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 1 + - uid: 6141 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 1 + - uid: 6142 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 1 + - uid: 6143 + components: + - type: Transform + pos: 67.5,-21.5 + parent: 1 + - uid: 6144 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 1 + - uid: 6145 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 1 + - uid: 6146 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 1 + - uid: 6147 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 1 +- proto: WallRockBasaltIndestructible + entities: + - uid: 4727 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 4728 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 4729 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 4730 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 4731 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 4732 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 4733 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 4734 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 4735 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 4736 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 4737 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 4738 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 4739 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 4740 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 4741 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 4742 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 4743 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 4744 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 4745 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 4746 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 4747 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 4748 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 4749 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 4750 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 4751 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 4752 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 4753 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 4754 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 4755 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 4756 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 4757 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 4758 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 4759 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 4760 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 4761 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 4762 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 4763 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 4764 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 4765 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 4766 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 4767 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 4768 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 4769 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 4770 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 4771 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 4772 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 4773 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 4774 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 4775 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 4776 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 4777 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 4778 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 +- proto: WallRockBasaltLavalandCoal + entities: + - uid: 4828 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1 + - uid: 4847 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 1 + - uid: 4863 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1 + - uid: 4864 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - uid: 4865 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1 + - uid: 4866 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1 + - uid: 5028 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 1 + - uid: 5029 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 1 + - uid: 5037 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 1 + - uid: 5038 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 1 + - uid: 5050 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 1 + - uid: 5663 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 1 + - uid: 5673 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 1 + - uid: 5684 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 1 + - uid: 5695 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 1 + - uid: 5706 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 1 +- proto: WallRockBasaltLavalandDiamond + entities: + - uid: 4531 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 1 + - uid: 4535 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 1 +- proto: WallRockBasaltLavalandGibtonite + entities: + - uid: 3975 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 1 +- proto: WallRockBasaltLavalandPlasma + entities: + - uid: 3883 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 3884 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 3889 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 3908 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 4812 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 1 + - uid: 4815 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 + - uid: 4845 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 1 + - uid: 4850 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1 + - uid: 4960 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 4969 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 5135 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 1 + - uid: 5145 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 1 + - uid: 5327 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 1 + - uid: 5328 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 1 + - uid: 5329 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 1 + - uid: 5339 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 1 + - uid: 5825 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 1 + - uid: 5833 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 1 + - uid: 5834 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 1 + - uid: 6010 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 1 + - uid: 6019 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 1 + - uid: 6020 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 1 + - uid: 6021 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 1 +- proto: WallRockBasaltLavalandTin + entities: + - uid: 4780 + components: + - type: Transform + pos: 69.5,-22.5 + parent: 1 + - uid: 4838 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 1 + - uid: 4839 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 1 + - uid: 4855 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 1 + - uid: 4856 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 1 + - uid: 4857 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 1 + - uid: 4859 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 1 + - uid: 5077 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 1 + - uid: 5092 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 1 + - uid: 5093 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 1 + - uid: 5094 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 1 + - uid: 5104 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 1 + - uid: 5416 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 1 + - uid: 5417 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 1 + - uid: 5418 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 1 + - uid: 5424 + components: + - type: Transform + pos: 67.5,-27.5 + parent: 1 + - uid: 5425 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 1 + - uid: 5426 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 1 + - uid: 5427 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 1 + - uid: 5957 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 1 + - uid: 5967 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 1 + - uid: 5968 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 1 + - uid: 5978 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 1 + - uid: 5979 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 1 + - uid: 5990 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 1 + - uid: 5999 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 1 + - uid: 6134 + components: + - type: Transform + pos: 69.5,-20.5 + parent: 1 + - uid: 6135 + components: + - type: Transform + pos: 69.5,-19.5 + parent: 1 + - uid: 6137 + components: + - type: Transform + pos: 69.5,-21.5 + parent: 1 +- proto: WallRockBasaltLavalandUranium + entities: + - uid: 5071 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 5237 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 1 + - uid: 5575 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 1 + - uid: 5824 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 1 + - uid: 6093 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 1 + - uid: 6096 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 1 + - uid: 6098 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 1 + - uid: 6099 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 1 +- proto: WindowClockworkDirectional + entities: + - uid: 4683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 1 + - uid: 4685 + components: + - type: Transform + pos: 45.5,0.5 + parent: 1 + - uid: 4686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 1 + - uid: 4687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 1 + - uid: 4688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 1 + - uid: 4689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 1 + - uid: 4690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-3.5 + parent: 1 + - uid: 4691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 1 + - uid: 4692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 1 + - uid: 4693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 1 + - uid: 4694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 1 + - uid: 4695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 1 + - uid: 4696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + - uid: 4697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 1 + - uid: 4698 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 4699 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - uid: 4700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 1 + - uid: 4701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,4.5 + parent: 1 + - uid: 4702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 1 + - uid: 4703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 1 + - uid: 4704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 1 + - uid: 4705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 1 + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 1 + - uid: 4707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 1 + - uid: 4708 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/nesting.yml b/Resources/Maps/_Wega/Lavaland/nesting.yml new file mode 100644 index 00000000000..0ba2ec9c257 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/nesting.yml @@ -0,0 +1,1687 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:57:49 + entityCount: 292 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: ??? + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABkAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAZAAAAAAAAGQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 0: -1,-4 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 1: -1,-10 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 4: 4,-7 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 3: 10,-9 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 2: 11,-5 + 5: 1,1 + - node: + color: '#951710FF' + id: splatter + decals: + 6: 6.949478,-5.952427 + 7: -1.8187866,-10.158854 + 8: -2.0964508,-9.866741 + 9: 0.70939636,-9.282515 + 10: 2.404602,-5.4120183 + 11: 1.118576,0.0011954308 + 12: 12.047104,-8.965542 + 13: 4.719116,-7.2782373 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AmbrosiaVulgarisSeeds + entities: + - uid: 2 + components: + - type: Transform + pos: -1.4568939,1.9013808 + parent: 1 +- proto: Bola + entities: + - uid: 3 + components: + - type: Transform + pos: 12.660202,-10.486021 + parent: 1 +- proto: Bonfire + entities: + - uid: 4 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: Bucket + entities: + - uid: 5 + components: + - type: Transform + pos: 3.6058502,-9.786463 + parent: 1 +- proto: CabbageSeeds + entities: + - uid: 6 + components: + - type: Transform + pos: -1.794632,1.7196215 + parent: 1 +- proto: ChanterelleSeeds + entities: + - uid: 7 + components: + - type: Transform + pos: -1.586792,1.2457494 + parent: 1 +- proto: ClothingBeltUtility + entities: + - uid: 8 + components: + - type: Transform + pos: 12.627731,-9.804424 + parent: 1 +- proto: CrateEmergencyInternalsLarge + entities: + - uid: 9 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 +- proto: CrateEmergencyRadiation + entities: + - uid: 10 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 11 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: CrateMedicalSurgery + entities: + - uid: 13 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: EggSpider + entities: + - uid: 14 + components: + - type: Transform + pos: 9.4653015,0.028165758 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 10.809769,0.23264498 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 11.014374,2.2190132 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 17 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 +- proto: FlyAmanitaSeeds + entities: + - uid: 26 + components: + - type: Transform + pos: -1.6842194,1.0185505 + parent: 1 +- proto: hydroponicsSoil + entities: + - uid: 27 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 +- proto: HydroponicsToolHatchet + entities: + - uid: 30 + components: + - type: Transform + pos: 5.485489,-8.736141 + parent: 1 +- proto: Lantern + entities: + - uid: 31 + components: + - type: Transform + pos: 10.458389,-9.648631 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 7.455841,-0.5596758 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 11.541199,-0.5596758 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 11.516022,3.3806796 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 7.5280914,3.3806796 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 4.6271057,-9.590571 + parent: 1 +- proto: MaterialWoodPlank10 + entities: + - uid: 37 + components: + - type: Transform + pos: 2.942688,-8.166521 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.43067932,-1.502759 + parent: 1 +- proto: OperatingTable + entities: + - uid: 39 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: OreBox + entities: + - uid: 40 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 41 + components: + - type: Transform + pos: 4.4873505,-0.57503283 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.3885956,-8.41665 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 4.6232758,-10.547241 + parent: 1 +- proto: PlantBag + entities: + - uid: 44 + components: + - type: Transform + pos: -1.6907196,-0.73028225 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 45 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 +- proto: Shovel + entities: + - uid: 47 + components: + - type: Transform + pos: 2.5986328,-10.415107 + parent: 1 +- proto: SingularityGenerator + entities: + - uid: 48 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: SpaceHeater + entities: + - uid: 49 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: SpawnMobOreCrab + entities: + - uid: 50 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: SpearBone + entities: + - uid: 52 + components: + - type: Transform + pos: 10.503311,-8.555918 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 11.542511,-6.0152373 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 6.506378,-3.5872808 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -1.4595337,-6.651993 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 10.516846,-10.408487 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 11.406662,-10.408487 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 12.432877,-10.434452 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 12.517319,-9.538639 + parent: 1 +- proto: SteelcapSeeds + entities: + - uid: 60 + components: + - type: Transform + pos: -0.7944031,-1.7364491 + parent: 1 +- proto: TableWood + entities: + - uid: 61 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 +- proto: TechnologyDiskRare + entities: + - uid: 65 + components: + - type: Transform + pos: -1.4763794,2.5115724 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 66 + components: + - type: Transform + pos: 0.45562744,2.6284175 + parent: 1 +- proto: TowercapSeeds + entities: + - uid: 67 + components: + - type: Transform + pos: -1.3659668,1.1224129 + parent: 1 +- proto: VariantCubeBox + entities: + - uid: 68 + components: + - type: Transform + pos: 0.22387695,1.8173368 + parent: 1 +- proto: WallNecropolis + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 136 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 +- proto: WallWood + entities: + - uid: 266 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 +- proto: WarpPoint + entities: + - uid: 287 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - type: WarpPoint + location: Гнездо Пеплоходцев +- proto: WelderIndustrialAdvanced + entities: + - uid: 288 + components: + - type: Transform + pos: -0.71647644,1.7131304 + parent: 1 +- proto: WheatSeeds + entities: + - uid: 289 + components: + - type: Transform + pos: -0.62553406,2.4012184 + parent: 1 +- proto: WoodDoor + entities: + - uid: 290 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/penalservitude.yml b/Resources/Maps/_Wega/Lavaland/penalservitude.yml new file mode 100644 index 00000000000..4249ebb3143 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/penalservitude.yml @@ -0,0 +1,4114 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 10:21:41 + entityCount: 619 +maps: [] +grids: +- 293 +orphans: +- 293 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 39: FloorTechMaintDark + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 293 + components: + - type: MetaData + name: Каторга + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,1: + ind: -2,1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAoAAAAAAAAKAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAAACgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAACgAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAKAAAAAAAAAwAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAoAAAAAAAAKAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAAJAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAJAAAAAAAAAwAAAAAAAAkAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAMAAAAAAAAJAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAsAAAAAAAALAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAACcAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAnAAAAAAAABQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAAnAAAAAAAAJwAAAAAAAAUAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAAJwAAAAAAACcAAAAAAAAFAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAwAAAAAAACcAAAAAAAAnAAAAAAAABQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAA== + version: 7 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,2: + ind: -2,2 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 314: -27,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 335: -26,14 + 336: -27,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 319: -36,16 + 320: -34,16 + 321: -36,20 + 322: -34,20 + 325: -33,16 + 326: -33,17 + 327: -32,17 + 328: -31,17 + 329: -30,17 + 330: -32,18 + 331: -31,18 + 337: -25,13 + 338: -25,14 + 346: -30,18 + 347: -29,18 + 348: -28,18 + 349: -26,19 + 350: -27,19 + 353: -31,20 + 354: -30,21 + 355: -29,21 + 356: -29,22 + 363: -23,24 + 364: -22,24 + 365: -24,25 + 367: -34,25 + 368: -35,27 + 369: -35,28 + 370: -35,29 + 371: -36,29 + 380: -31,27 + 381: -32,28 + 382: -30,28 + 383: -30,27 + 393: -31,21 + 394: -28,21 + 400: -32,23 + 401: -29,24 + 402: -27,24 + 405: -27,27 + 406: -26,28 + 407: -25,29 + 408: -25,30 + 409: -28,30 + 410: -28,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 324: -33,20 + 361: -25,25 + 362: -24,24 + 374: -35,25 + 375: -34,26 + 376: -34,27 + 377: -34,29 + 390: -35,22 + 391: -31,22 + 392: -29,23 + 395: -30,22 + 396: -31,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 351: -28,19 + 378: -34,27 + 379: -34,28 + 386: -31,29 + 387: -32,27 + 388: -34,23 + 397: -30,24 + 398: -30,25 + 399: -32,24 + 403: -27,25 + 414: -28,27 + 415: -27,28 + 416: -25,28 + 417: -27,29 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 315: -28,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 339: -26,13 + 340: -27,14 + 341: -28,13 + 342: -28,14 + 343: -27,18 + 344: -29,20 + 345: -31,19 + 352: -29,19 + 357: -28,22 + 358: -28,24 + 359: -27,25 + 360: -29,25 + 366: -26,24 + 372: -36,27 + 373: -36,28 + 384: -31,28 + 385: -30,29 + 389: -34,22 + 404: -27,26 + 411: -28,28 + 412: -26,27 + 413: -25,27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 261: -26,28 + 262: -27,28 + 265: -23,25 + 266: -24,25 + 267: -25,25 + 280: -31,25 + 281: -30,25 + 282: -29,25 + 283: -28,25 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 299: -33,13 + 300: -32,13 + 301: -31,13 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 263: -27,29 + 264: -26,29 + 288: -28,18 + 289: -29,18 + 291: -32,16 + 292: -31,16 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 296: -33,14 + 297: -32,14 + 298: -31,14 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 253: -28,27 + 254: -28,28 + 255: -28,29 + 256: -28,30 + 274: -32,24 + 275: -32,23 + 276: -32,22 + 277: -32,20 + 278: -32,21 + 279: -32,19 + 293: -33,17 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 311: -36,27 + 312: -36,28 + 313: -36,29 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 257: -25,27 + 258: -25,28 + 259: -25,29 + 260: -25,30 + 284: -27,23 + 285: -27,22 + 286: -27,21 + 287: -27,20 + 290: -30,17 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 306: -34,25 + 307: -34,26 + 308: -34,27 + 309: -34,28 + 310: -34,29 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 316: -28,23 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 295: -32,18 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 302: -30,13 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 334: -30,18 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 305: -34,14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 303: -30,14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 304: -34,13 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 252: -38.74134,27.21891 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 269: -32,25 + 270: -33,18 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 272: -30,16 + 273: -27,18 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 271: -33,16 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 268: -27,25 + - node: + angle: 1.5707963267948966 rad + color: '#951710FF' + id: splatter + decals: + 317: -25.092667,15.858719 + 318: -22.926891,25.138525 + - type: GridAtmosphere + version: 2 + data: + tiles: + -8,3: + 0: 10096 + -9,3: + 0: 3264 + 1: 273 + -8,4: + 0: 65407 + -7,3: + 0: 12272 + -7,4: + 0: 64395 + -6,4: + 0: 4113 + 1: 52428 + -9,4: + 0: 3727 + -8,5: + 0: 49151 + -9,5: + 0: 58895 + -8,6: + 0: 29439 + -9,6: + 0: 30432 + -8,7: + 0: 21879 + -7,5: + 0: 15291 + -7,6: + 0: 62143 + -7,7: + 0: 4095 + -6,5: + 0: 272 + 1: 36044 + -6,6: + 0: 55 + 1: 136 + -5,4: + 1: 63472 + -5,5: + 1: 30719 + -10,3: + 1: 128 + -11,6: + 1: 32768 + -11,7: + 1: 136 + -10,6: + 1: 28672 + -10,7: + 1: 119 + -9,7: + 0: 119 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirCanister + entities: + - uid: 300 + components: + - type: Transform + pos: -24.5,14.5 + parent: 293 +- proto: Airlock + entities: + - uid: 307 + components: + - type: Transform + pos: -24.5,18.5 + parent: 293 + - uid: 308 + components: + - type: Transform + pos: -24.5,20.5 + parent: 293 + - uid: 309 + components: + - type: Transform + pos: -32.5,25.5 + parent: 293 + - uid: 310 + components: + - type: Transform + pos: -30.5,26.5 + parent: 293 + - uid: 311 + components: + - type: Transform + pos: -31.5,30.5 + parent: 293 + - uid: 312 + components: + - type: Transform + pos: -29.5,30.5 + parent: 293 + - uid: 313 + components: + - type: Transform + pos: -26.5,26.5 + parent: 293 +- proto: AirlockExternalGlass + entities: + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,16.5 + parent: 293 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,20.5 + parent: 293 + - uid: 319 + components: + - type: Transform + pos: -25.5,24.5 + parent: 293 + - uid: 320 + components: + - type: Transform + pos: -21.5,24.5 + parent: 293 +- proto: AirlockExternalGlassPenalServitudeShuttleLavaland + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,20.5 + parent: 293 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,16.5 + parent: 293 +- proto: AirlockGlass + entities: + - uid: 326 + components: + - type: Transform + pos: -32.5,23.5 + parent: 293 +- proto: AirlockMaintLocked + entities: + - uid: 332 + components: + - type: Transform + pos: -26.5,15.5 + parent: 293 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 336 + components: + - type: Transform + pos: -32.5,20.5 + parent: 293 + - uid: 337 + components: + - type: Transform + pos: -30.5,15.5 + parent: 293 + - uid: 338 + components: + - type: Transform + pos: -28.5,16.5 + parent: 293 +- proto: AmbrosiaDeusSeeds + entities: + - uid: 341 + components: + - type: Transform + pos: -24.595549,22.593916 + parent: 293 +- proto: APCBasic + entities: + - uid: 347 + components: + - type: Transform + pos: -26.5,17.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: Ash + entities: + - uid: 349 + components: + - type: Transform + pos: -40.455093,29.439175 + parent: 293 + - uid: 350 + components: + - type: Transform + pos: -39.149593,28.517395 + parent: 293 + - uid: 351 + components: + - type: Transform + pos: -37.92853,29.4197 + parent: 293 +- proto: AtmosDeviceFanTiny + entities: + - uid: 356 + components: + - type: Transform + pos: -35.5,20.5 + parent: 293 + - uid: 357 + components: + - type: Transform + pos: -35.5,16.5 + parent: 293 + - uid: 358 + components: + - type: Transform + pos: -21.5,24.5 + parent: 293 +- proto: AtmosFixBlockerMarker + entities: + - uid: 14 + components: + - type: Transform + pos: -35.5,12.5 + parent: 293 + - uid: 15 + components: + - type: Transform + pos: -35.5,14.5 + parent: 293 + - uid: 16 + components: + - type: Transform + pos: -38.5,27.5 + parent: 293 + - uid: 17 + components: + - type: Transform + pos: -40.5,27.5 + parent: 293 + - uid: 18 + components: + - type: Transform + pos: -38.5,28.5 + parent: 293 + - uid: 19 + components: + - type: Transform + pos: -38.5,29.5 + parent: 293 + - uid: 20 + components: + - type: Transform + pos: -35.5,13.5 + parent: 293 + - uid: 21 + components: + - type: Transform + pos: -39.5,29.5 + parent: 293 + - uid: 22 + components: + - type: Transform + pos: -39.5,28.5 + parent: 293 + - uid: 23 + components: + - type: Transform + pos: -39.5,27.5 + parent: 293 + - uid: 24 + components: + - type: Transform + pos: -37.5,27.5 + parent: 293 + - uid: 25 + components: + - type: Transform + pos: -37.5,29.5 + parent: 293 + - uid: 26 + components: + - type: Transform + pos: -20.5,25.5 + parent: 293 + - uid: 27 + components: + - type: Transform + pos: -20.5,23.5 + parent: 293 + - uid: 30 + components: + - type: Transform + pos: -36.5,13.5 + parent: 293 + - uid: 31 + components: + - type: Transform + pos: -40.5,29.5 + parent: 293 + - uid: 33 + components: + - type: Transform + pos: -37.5,28.5 + parent: 293 + - uid: 34 + components: + - type: Transform + pos: -40.5,28.5 + parent: 293 + - uid: 35 + components: + - type: Transform + pos: -20.5,24.5 + parent: 293 + - uid: 36 + components: + - type: Transform + pos: -21.5,19.5 + parent: 293 + - uid: 37 + components: + - type: Transform + pos: -16.5,20.5 + parent: 293 + - uid: 38 + components: + - type: Transform + pos: -16.5,21.5 + parent: 293 + - uid: 39 + components: + - type: Transform + pos: -20.5,16.5 + parent: 293 + - uid: 40 + components: + - type: Transform + pos: -16.5,17.5 + parent: 293 + - uid: 42 + components: + - type: Transform + pos: -21.5,21.5 + parent: 293 + - uid: 43 + components: + - type: Transform + pos: -21.5,17.5 + parent: 293 + - uid: 44 + components: + - type: Transform + pos: -17.5,23.5 + parent: 293 + - uid: 45 + components: + - type: Transform + pos: -17.5,22.5 + parent: 293 + - uid: 46 + components: + - type: Transform + pos: -18.5,18.5 + parent: 293 + - uid: 47 + components: + - type: Transform + pos: -18.5,17.5 + parent: 293 + - uid: 48 + components: + - type: Transform + pos: -20.5,17.5 + parent: 293 + - uid: 49 + components: + - type: Transform + pos: -19.5,17.5 + parent: 293 + - uid: 50 + components: + - type: Transform + pos: -19.5,18.5 + parent: 293 + - uid: 51 + components: + - type: Transform + pos: -19.5,20.5 + parent: 293 + - uid: 52 + components: + - type: Transform + pos: -19.5,19.5 + parent: 293 + - uid: 53 + components: + - type: Transform + pos: -18.5,19.5 + parent: 293 + - uid: 54 + components: + - type: Transform + pos: -18.5,20.5 + parent: 293 + - uid: 55 + components: + - type: Transform + pos: -18.5,21.5 + parent: 293 + - uid: 56 + components: + - type: Transform + pos: -17.5,21.5 + parent: 293 + - uid: 57 + components: + - type: Transform + pos: -17.5,20.5 + parent: 293 + - uid: 58 + components: + - type: Transform + pos: -17.5,19.5 + parent: 293 + - uid: 59 + components: + - type: Transform + pos: -18.5,23.5 + parent: 293 + - uid: 60 + components: + - type: Transform + pos: -18.5,22.5 + parent: 293 + - uid: 69 + components: + - type: Transform + pos: -20.5,22.5 + parent: 293 + - uid: 70 + components: + - type: Transform + pos: -17.5,18.5 + parent: 293 + - uid: 71 + components: + - type: Transform + pos: -17.5,17.5 + parent: 293 + - uid: 72 + components: + - type: Transform + pos: -16.5,19.5 + parent: 293 + - uid: 73 + components: + - type: Transform + pos: -21.5,16.5 + parent: 293 + - uid: 74 + components: + - type: Transform + pos: -21.5,20.5 + parent: 293 + - uid: 75 + components: + - type: Transform + pos: -21.5,22.5 + parent: 293 + - uid: 76 + components: + - type: Transform + pos: -21.5,18.5 + parent: 293 + - uid: 97 + components: + - type: Transform + pos: -19.5,23.5 + parent: 293 + - uid: 98 + components: + - type: Transform + pos: -20.5,21.5 + parent: 293 + - uid: 99 + components: + - type: Transform + pos: -20.5,19.5 + parent: 293 + - uid: 100 + components: + - type: Transform + pos: -19.5,21.5 + parent: 293 + - uid: 101 + components: + - type: Transform + pos: -20.5,20.5 + parent: 293 + - uid: 102 + components: + - type: Transform + pos: -20.5,18.5 + parent: 293 + - uid: 103 + components: + - type: Transform + pos: -19.5,22.5 + parent: 293 +- proto: BaseComputer + entities: + - uid: 1182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 293 +- proto: Bed + entities: + - uid: 1186 + components: + - type: Transform + pos: -23.5,16.5 + parent: 293 +- proto: BedsheetSpawner + entities: + - uid: 1189 + components: + - type: Transform + pos: -23.5,16.5 + parent: 293 +- proto: CableApcExtension + entities: + - uid: 1390 + components: + - type: Transform + pos: -26.5,17.5 + parent: 293 + - uid: 1391 + components: + - type: Transform + pos: -26.5,18.5 + parent: 293 + - uid: 1392 + components: + - type: Transform + pos: -26.5,19.5 + parent: 293 + - uid: 1393 + components: + - type: Transform + pos: -26.5,20.5 + parent: 293 + - uid: 1394 + components: + - type: Transform + pos: -26.5,21.5 + parent: 293 + - uid: 1395 + components: + - type: Transform + pos: -26.5,22.5 + parent: 293 + - uid: 1396 + components: + - type: Transform + pos: -26.5,23.5 + parent: 293 + - uid: 1397 + components: + - type: Transform + pos: -26.5,24.5 + parent: 293 + - uid: 1398 + components: + - type: Transform + pos: -26.5,25.5 + parent: 293 + - uid: 1399 + components: + - type: Transform + pos: -26.5,26.5 + parent: 293 + - uid: 1400 + components: + - type: Transform + pos: -26.5,27.5 + parent: 293 + - uid: 1401 + components: + - type: Transform + pos: -26.5,28.5 + parent: 293 + - uid: 1402 + components: + - type: Transform + pos: -26.5,29.5 + parent: 293 + - uid: 1403 + components: + - type: Transform + pos: -26.5,30.5 + parent: 293 + - uid: 1404 + components: + - type: Transform + pos: -25.5,24.5 + parent: 293 + - uid: 1405 + components: + - type: Transform + pos: -24.5,24.5 + parent: 293 + - uid: 1406 + components: + - type: Transform + pos: -23.5,24.5 + parent: 293 + - uid: 1407 + components: + - type: Transform + pos: -22.5,24.5 + parent: 293 + - uid: 1408 + components: + - type: Transform + pos: -27.5,25.5 + parent: 293 + - uid: 1409 + components: + - type: Transform + pos: -28.5,25.5 + parent: 293 + - uid: 1410 + components: + - type: Transform + pos: -29.5,25.5 + parent: 293 + - uid: 1411 + components: + - type: Transform + pos: -30.5,25.5 + parent: 293 + - uid: 1412 + components: + - type: Transform + pos: -31.5,25.5 + parent: 293 + - uid: 1413 + components: + - type: Transform + pos: -32.5,25.5 + parent: 293 + - uid: 1414 + components: + - type: Transform + pos: -33.5,25.5 + parent: 293 + - uid: 1415 + components: + - type: Transform + pos: -34.5,25.5 + parent: 293 + - uid: 1416 + components: + - type: Transform + pos: -34.5,26.5 + parent: 293 + - uid: 1417 + components: + - type: Transform + pos: -34.5,27.5 + parent: 293 + - uid: 1418 + components: + - type: Transform + pos: -34.5,28.5 + parent: 293 + - uid: 1419 + components: + - type: Transform + pos: -34.5,29.5 + parent: 293 + - uid: 1420 + components: + - type: Transform + pos: -30.5,26.5 + parent: 293 + - uid: 1421 + components: + - type: Transform + pos: -30.5,27.5 + parent: 293 + - uid: 1422 + components: + - type: Transform + pos: -30.5,28.5 + parent: 293 + - uid: 1423 + components: + - type: Transform + pos: -30.5,29.5 + parent: 293 + - uid: 1424 + components: + - type: Transform + pos: -31.5,29.5 + parent: 293 + - uid: 1425 + components: + - type: Transform + pos: -31.5,30.5 + parent: 293 + - uid: 1426 + components: + - type: Transform + pos: -31.5,31.5 + parent: 293 + - uid: 1427 + components: + - type: Transform + pos: -29.5,29.5 + parent: 293 + - uid: 1428 + components: + - type: Transform + pos: -29.5,30.5 + parent: 293 + - uid: 1429 + components: + - type: Transform + pos: -29.5,31.5 + parent: 293 + - uid: 1430 + components: + - type: Transform + pos: -28.5,14.5 + parent: 293 + - uid: 1431 + components: + - type: Transform + pos: -29.5,14.5 + parent: 293 + - uid: 1432 + components: + - type: Transform + pos: -30.5,14.5 + parent: 293 + - uid: 1433 + components: + - type: Transform + pos: -31.5,14.5 + parent: 293 + - uid: 1434 + components: + - type: Transform + pos: -32.5,14.5 + parent: 293 + - uid: 1435 + components: + - type: Transform + pos: -33.5,14.5 + parent: 293 + - uid: 1436 + components: + - type: Transform + pos: -32.5,13.5 + parent: 293 + - uid: 1437 + components: + - type: Transform + pos: -30.5,15.5 + parent: 293 + - uid: 1438 + components: + - type: Transform + pos: -30.5,16.5 + parent: 293 + - uid: 1439 + components: + - type: Transform + pos: -30.5,17.5 + parent: 293 + - uid: 1440 + components: + - type: Transform + pos: -30.5,18.5 + parent: 293 + - uid: 1441 + components: + - type: Transform + pos: -30.5,19.5 + parent: 293 + - uid: 1442 + components: + - type: Transform + pos: -30.5,20.5 + parent: 293 + - uid: 1443 + components: + - type: Transform + pos: -30.5,21.5 + parent: 293 + - uid: 1444 + components: + - type: Transform + pos: -30.5,22.5 + parent: 293 + - uid: 1445 + components: + - type: Transform + pos: -30.5,23.5 + parent: 293 + - uid: 1446 + components: + - type: Transform + pos: -31.5,20.5 + parent: 293 + - uid: 1447 + components: + - type: Transform + pos: -32.5,20.5 + parent: 293 + - uid: 1448 + components: + - type: Transform + pos: -33.5,20.5 + parent: 293 + - uid: 1449 + components: + - type: Transform + pos: -34.5,20.5 + parent: 293 + - uid: 1450 + components: + - type: Transform + pos: -31.5,16.5 + parent: 293 + - uid: 1451 + components: + - type: Transform + pos: -32.5,16.5 + parent: 293 + - uid: 1452 + components: + - type: Transform + pos: -33.5,16.5 + parent: 293 + - uid: 1453 + components: + - type: Transform + pos: -34.5,16.5 + parent: 293 + - uid: 1454 + components: + - type: Transform + pos: -31.5,18.5 + parent: 293 + - uid: 1455 + components: + - type: Transform + pos: -32.5,18.5 + parent: 293 + - uid: 1456 + components: + - type: Transform + pos: -25.5,19.5 + parent: 293 + - uid: 1457 + components: + - type: Transform + pos: -24.5,19.5 + parent: 293 + - uid: 1458 + components: + - type: Transform + pos: -23.5,19.5 + parent: 293 + - uid: 1459 + components: + - type: Transform + pos: -24.5,18.5 + parent: 293 + - uid: 1460 + components: + - type: Transform + pos: -24.5,17.5 + parent: 293 + - uid: 1461 + components: + - type: Transform + pos: -24.5,16.5 + parent: 293 + - uid: 1462 + components: + - type: Transform + pos: -23.5,16.5 + parent: 293 + - uid: 1463 + components: + - type: Transform + pos: -24.5,20.5 + parent: 293 + - uid: 1464 + components: + - type: Transform + pos: -24.5,21.5 + parent: 293 + - uid: 1465 + components: + - type: Transform + pos: -24.5,22.5 + parent: 293 + - uid: 1466 + components: + - type: Transform + pos: -23.5,22.5 + parent: 293 +- proto: CableHV + entities: + - uid: 1475 + components: + - type: Transform + pos: -24.5,13.5 + parent: 293 + - uid: 1476 + components: + - type: Transform + pos: -25.5,13.5 + parent: 293 + - uid: 1477 + components: + - type: Transform + pos: -26.5,13.5 + parent: 293 + - uid: 1478 + components: + - type: Transform + pos: -27.5,13.5 + parent: 293 + - uid: 1479 + components: + - type: Transform + pos: -27.5,14.5 + parent: 293 + - uid: 1480 + components: + - type: Transform + pos: -26.5,14.5 + parent: 293 +- proto: CableMV + entities: + - uid: 6 + components: + - type: Transform + pos: -27.5,13.5 + parent: 293 + - uid: 7 + components: + - type: Transform + pos: -26.5,13.5 + parent: 293 + - uid: 1562 + components: + - type: Transform + pos: -26.5,14.5 + parent: 293 + - uid: 1563 + components: + - type: Transform + pos: -26.5,15.5 + parent: 293 + - uid: 1564 + components: + - type: Transform + pos: -26.5,16.5 + parent: 293 + - uid: 1565 + components: + - type: Transform + pos: -26.5,17.5 + parent: 293 + - uid: 1566 + components: + - type: Transform + pos: -27.5,16.5 + parent: 293 + - uid: 1567 + components: + - type: Transform + pos: -28.5,16.5 + parent: 293 + - uid: 1568 + components: + - type: Transform + pos: -29.5,16.5 + parent: 293 + - uid: 1569 + components: + - type: Transform + pos: -30.5,16.5 + parent: 293 + - uid: 1570 + components: + - type: Transform + pos: -30.5,15.5 + parent: 293 + - uid: 1571 + components: + - type: Transform + pos: -30.5,14.5 + parent: 293 + - uid: 1572 + components: + - type: Transform + pos: -29.5,14.5 + parent: 293 + - uid: 1573 + components: + - type: Transform + pos: -28.5,14.5 + parent: 293 +- proto: CableTerminal + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 293 +- proto: Catwalk + entities: + - uid: 1582 + components: + - type: Transform + pos: -35.5,12.5 + parent: 293 + - uid: 1583 + components: + - type: Transform + pos: -35.5,13.5 + parent: 293 + - uid: 1584 + components: + - type: Transform + pos: -35.5,14.5 + parent: 293 + - uid: 1585 + components: + - type: Transform + pos: -36.5,13.5 + parent: 293 +- proto: Chair + entities: + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,18.5 + parent: 293 + - uid: 1594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 293 + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 293 + - uid: 1596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 293 + - uid: 1597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 293 + - uid: 1598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 293 + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,28.5 + parent: 293 + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,29.5 + parent: 293 +- proto: CigaretteSpent + entities: + - uid: 61 + components: + - type: Transform + pos: -34.19209,29.171917 + parent: 293 + - uid: 63 + components: + - type: Transform + pos: -27.181389,25.516901 + parent: 293 + - uid: 1603 + components: + - type: Transform + pos: -31.751762,20.308224 + parent: 293 + - uid: 1604 + components: + - type: Transform + pos: -25.759043,28.854946 + parent: 293 + - uid: 1605 + components: + - type: Transform + pos: -31.180819,27.868069 + parent: 293 + - uid: 1606 + components: + - type: Transform + pos: -31.619232,27.420162 + parent: 293 + - uid: 1607 + components: + - type: Transform + pos: -31.64683,14.307899 + parent: 293 +- proto: CigPackBlack + entities: + - uid: 4 + components: + - type: Transform + pos: -35.590546,29.586472 + parent: 293 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 95 + components: + - type: Transform + pos: -24.401104,22.246695 + parent: 293 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 1651 + components: + - type: Transform + pos: -27.481966,27.556566 + parent: 293 + - uid: 1652 + components: + - type: Transform + pos: -27.46248,28.598436 + parent: 293 + - uid: 1653 + components: + - type: Transform + pos: -27.442995,29.562408 + parent: 293 + - uid: 1654 + components: + - type: Transform + pos: -27.452738,30.53612 + parent: 293 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 1655 + components: + - type: Transform + pos: -27.452738,27.595516 + parent: 293 + - uid: 1656 + components: + - type: Transform + pos: -27.433252,28.725018 + parent: 293 + - uid: 1657 + components: + - type: Transform + pos: -27.472223,29.72794 + parent: 293 + - uid: 1658 + components: + - type: Transform + pos: -27.50145,30.691914 + parent: 293 +- proto: ClothingMaskBandSkull + entities: + - uid: 10 + components: + - type: Transform + pos: -31.413483,31.444141 + parent: 293 +- proto: ClothingMaskBreath + entities: + - uid: 1 + components: + - type: Transform + pos: -27.449984,27.461962 + parent: 293 + - uid: 28 + components: + - type: Transform + pos: -27.436094,30.42724 + parent: 293 + - uid: 29 + components: + - type: Transform + pos: -27.463873,28.468906 + parent: 293 + - uid: 32 + components: + - type: Transform + pos: -27.449984,29.37863 + parent: 293 +- proto: ClothingMaskClown + entities: + - uid: 1659 + components: + - type: Transform + pos: -39.2901,27.384428 + parent: 293 +- proto: ClothingOuterVestHazard + entities: + - uid: 1742 + components: + - type: Transform + pos: -27.481966,27.54683 + parent: 293 + - uid: 1743 + components: + - type: Transform + pos: -27.491707,28.559488 + parent: 293 + - uid: 1744 + components: + - type: Transform + pos: -27.481966,29.533197 + parent: 293 + - uid: 1745 + components: + - type: Transform + pos: -27.481966,30.53612 + parent: 293 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 1746 + components: + - type: Transform + pos: -39.435375,29.354786 + parent: 293 +- proto: ClownIDCard + entities: + - uid: 1747 + components: + - type: Transform + pos: -38.374302,28.247786 + parent: 293 +- proto: Cobweb1 + entities: + - uid: 1748 + components: + - type: Transform + pos: -34.5,23.5 + parent: 293 + - uid: 1749 + components: + - type: Transform + pos: -31.5,31.5 + parent: 293 + - uid: 1750 + components: + - type: Transform + pos: -33.5,14.5 + parent: 293 +- proto: Cobweb2 + entities: + - uid: 1751 + components: + - type: Transform + pos: -33.5,29.5 + parent: 293 + - uid: 1752 + components: + - type: Transform + pos: -23.5,17.5 + parent: 293 + - uid: 1753 + components: + - type: Transform + pos: -23.5,22.5 + parent: 293 + - uid: 1754 + components: + - type: Transform + pos: -24.5,30.5 + parent: 293 + - uid: 1755 + components: + - type: Transform + pos: -29.5,31.5 + parent: 293 + - uid: 1756 + components: + - type: Transform + pos: -24.5,14.5 + parent: 293 +- proto: ComputerCriminalRecords + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 293 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 293 +- proto: CrateGenericSteel + entities: + - uid: 1776 + components: + - type: Transform + pos: -21.5,21.5 + parent: 293 + - uid: 1777 + components: + - type: Transform + pos: -21.5,20.5 + parent: 293 + - uid: 1778 + components: + - type: Transform + pos: -21.5,19.5 + parent: 293 +- proto: DefaultStationBeaconSecurityPenalServitude + entities: + - uid: 213 + components: + - type: Transform + pos: -29.5,21.5 + parent: 293 +- proto: DiscountDanLighter + entities: + - uid: 9 + components: + - type: Transform + pos: -35.340546,29.440638 + parent: 293 +- proto: FoodPlateSmall + entities: + - uid: 2450 + components: + - type: Transform + pos: -35.486378,27.628138 + parent: 293 +- proto: FoodPlateSmallPlastic + entities: + - uid: 2451 + components: + - type: Transform + pos: -23.497843,22.614876 + parent: 293 +- proto: Fork + entities: + - uid: 2453 + components: + - type: Transform + pos: -35.28499,28.260082 + parent: 293 +- proto: GasMixerFlipped + entities: + - uid: 2457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 293 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + targetPressure: 300 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 2459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 2467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,30.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,24.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2473 + components: + - type: Transform + pos: -29.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 2594 + components: + - type: Transform + pos: -26.5,28.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2595 + components: + - type: Transform + pos: -26.5,26.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,27.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,24.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,22.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,21.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,20.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,15.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,16.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,18.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,19.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,28.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,26.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,21.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeTJunction + entities: + - uid: 2636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,27.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2639 + components: + - type: Transform + pos: -31.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,20.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2643 + components: + - type: Transform + pos: -31.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,29.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,30.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPressurePump + entities: + - uid: 2649 + components: + - type: Transform + pos: -26.5,29.5 + parent: 293 + - type: GasPressurePump + targetPressure: 300 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentPump + entities: + - uid: 2657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,19.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2660 + components: + - type: Transform + pos: -30.5,28.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,27.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentScrubber + entities: + - uid: 2669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,20.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,28.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 2676 + components: + - type: Transform + pos: -24.5,13.5 + parent: 293 +- proto: Grille + entities: + - uid: 2744 + components: + - type: Transform + pos: -33.5,12.5 + parent: 293 + - uid: 2745 + components: + - type: Transform + pos: -32.5,12.5 + parent: 293 + - uid: 2746 + components: + - type: Transform + pos: -31.5,12.5 + parent: 293 + - uid: 2747 + components: + - type: Transform + pos: -30.5,12.5 + parent: 293 + - uid: 2748 + components: + - type: Transform + pos: -29.5,12.5 + parent: 293 + - uid: 2749 + components: + - type: Transform + pos: -34.5,13.5 + parent: 293 + - uid: 2750 + components: + - type: Transform + pos: -32.5,22.5 + parent: 293 + - uid: 2751 + components: + - type: Transform + pos: -29.5,23.5 + parent: 293 + - uid: 2752 + components: + - type: Transform + pos: -25.5,25.5 + parent: 293 + - uid: 2753 + components: + - type: Transform + pos: -21.5,25.5 + parent: 293 + - uid: 2754 + components: + - type: Transform + pos: -36.5,27.5 + parent: 293 + - uid: 2755 + components: + - type: Transform + pos: -36.5,28.5 + parent: 293 + - uid: 2756 + components: + - type: Transform + pos: -36.5,29.5 + parent: 293 +- proto: HospitalCurtainsOpen + entities: + - uid: 2757 + components: + - type: Transform + pos: -29.5,28.5 + parent: 293 + - uid: 2758 + components: + - type: Transform + pos: -29.5,27.5 + parent: 293 +- proto: IntercomSupply + entities: + - uid: 62 + components: + - type: Transform + pos: -29.5,26.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: Lantern + entities: + - uid: 2 + components: + - type: Transform + pos: -27.470818,30.56613 + parent: 293 + - uid: 8 + components: + - type: Transform + pos: -27.449984,27.573074 + parent: 293 + - uid: 78 + components: + - type: Transform + pos: -27.463873,29.538351 + parent: 293 + - uid: 212 + components: + - type: Transform + pos: -27.463873,28.67724 + parent: 293 +- proto: LiquidOxygenCanister + entities: + - uid: 79 + components: + - type: Transform + pos: -24.5,28.5 + parent: 293 +- proto: MaterialCloth + entities: + - uid: 66 + components: + - type: Transform + pos: -23.48894,19.598234 + parent: 293 +- proto: Mattress + entities: + - uid: 2765 + components: + - type: Transform + pos: -23.5,21.5 + parent: 293 +- proto: MedkitFilled + entities: + - uid: 77 + components: + - type: Transform + pos: -33.595425,22.53672 + parent: 293 +- proto: Mirror + entities: + - uid: 2769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: NitrogenCanister + entities: + - uid: 2772 + components: + - type: Transform + anchored: True + pos: -24.5,29.5 + parent: 293 + - type: Physics + bodyType: Static +- proto: Ointment + entities: + - uid: 68 + components: + - type: Transform + pos: -33.28061,22.583017 + parent: 293 +- proto: OreBox + entities: + - uid: 41 + components: + - type: Transform + pos: -26.5,23.5 + parent: 293 + - uid: 2778 + components: + - type: Transform + pos: -21.5,22.5 + parent: 293 + - uid: 2779 + components: + - type: Transform + pos: -16.5,21.5 + parent: 293 + - uid: 2780 + components: + - type: Transform + pos: -16.5,20.5 + parent: 293 + - uid: 2781 + components: + - type: Transform + pos: -16.5,19.5 + parent: 293 +- proto: OreProcessor + entities: + - uid: 2783 + components: + - type: Transform + pos: -26.5,22.5 + parent: 293 +- proto: OxygenCanister + entities: + - uid: 2787 + components: + - type: Transform + anchored: True + pos: -24.5,30.5 + parent: 293 + - type: Physics + bodyType: Static +- proto: PaperBin10 + entities: + - uid: 2788 + components: + - type: Transform + pos: -29.5,14.5 + parent: 293 +- proto: PaperBin20 + entities: + - uid: 2790 + components: + - type: Transform + pos: -26.5,20.5 + parent: 293 +- proto: PenalServitudeLavalandShuttleConsole + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 293 +- proto: Pickaxe + entities: + - uid: 2794 + components: + - type: Transform + pos: -27.46248,27.527355 + parent: 293 + - uid: 2795 + components: + - type: Transform + pos: -27.433252,28.52054 + parent: 293 + - uid: 2796 + components: + - type: Transform + pos: -27.413767,29.503986 + parent: 293 + - uid: 2797 + components: + - type: Transform + pos: -27.452738,30.487434 + parent: 293 +- proto: PoweredSmallLight + entities: + - uid: 2849 + components: + - type: Transform + pos: -25.5,14.5 + parent: 293 + - uid: 2850 + components: + - type: Transform + pos: -32.5,14.5 + parent: 293 + - uid: 2851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,16.5 + parent: 293 + - uid: 2852 + components: + - type: Transform + pos: -34.5,16.5 + parent: 293 + - uid: 2853 + components: + - type: Transform + pos: -34.5,20.5 + parent: 293 + - uid: 2854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,21.5 + parent: 293 + - uid: 2855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 293 + - uid: 2856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,25.5 + parent: 293 + - uid: 2857 + components: + - type: Transform + pos: -33.5,29.5 + parent: 293 + - uid: 2858 + components: + - type: Transform + pos: -30.5,29.5 + parent: 293 + - uid: 2859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,28.5 + parent: 293 + - uid: 2860 + components: + - type: Transform + pos: -27.5,25.5 + parent: 293 + - uid: 2861 + components: + - type: Transform + pos: -23.5,25.5 + parent: 293 + - uid: 2862 + components: + - type: Transform + pos: -33.5,23.5 + parent: 293 + - uid: 2863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,21.5 + parent: 293 + - uid: 2864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,22.5 + parent: 293 + - uid: 2865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,17.5 + parent: 293 + - uid: 2866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,18.5 + parent: 293 + - uid: 2867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,23.5 + parent: 293 +- proto: PuddleVomit + entities: + - uid: 2868 + components: + - type: Transform + pos: -31.5,27.5 + parent: 293 +- proto: Rack + entities: + - uid: 2869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 293 + - uid: 2870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,28.5 + parent: 293 + - uid: 2871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,29.5 + parent: 293 + - uid: 2872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 293 +- proto: RandomSoap + entities: + - uid: 2882 + components: + - type: Transform + pos: -30.5,29.5 + parent: 293 +- proto: RandomSpawner100 + entities: + - uid: 2883 + components: + - type: Transform + pos: -37.5,27.5 + parent: 293 + - uid: 2884 + components: + - type: Transform + pos: -33.5,29.5 + parent: 293 +- proto: RandomVendingDrinks + entities: + - uid: 2886 + components: + - type: Transform + pos: -34.5,25.5 + parent: 293 +- proto: ReinforcedWindow + entities: + - uid: 81 + components: + - type: Transform + pos: -29.5,23.5 + parent: 293 + - uid: 82 + components: + - type: Transform + pos: -30.5,12.5 + parent: 293 + - uid: 83 + components: + - type: Transform + pos: -29.5,12.5 + parent: 293 + - uid: 84 + components: + - type: Transform + pos: -34.5,13.5 + parent: 293 + - uid: 85 + components: + - type: Transform + pos: -32.5,12.5 + parent: 293 + - uid: 86 + components: + - type: Transform + pos: -25.5,25.5 + parent: 293 + - uid: 87 + components: + - type: Transform + pos: -31.5,12.5 + parent: 293 + - uid: 88 + components: + - type: Transform + pos: -33.5,12.5 + parent: 293 + - uid: 89 + components: + - type: Transform + pos: -36.5,27.5 + parent: 293 + - uid: 90 + components: + - type: Transform + pos: -21.5,25.5 + parent: 293 + - uid: 91 + components: + - type: Transform + pos: -36.5,28.5 + parent: 293 + - uid: 92 + components: + - type: Transform + pos: -36.5,29.5 + parent: 293 + - uid: 93 + components: + - type: Transform + pos: -32.5,22.5 + parent: 293 +- proto: Screen + entities: + - uid: 2975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: SignalButton + entities: + - uid: 2982 + components: + - type: Transform + pos: -34.5,21.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 318: + - - Pressed + - DoorBolt + 317: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} +- proto: SinkWide + entities: + - uid: 2988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,27.5 + parent: 293 +- proto: SMESBasic + entities: + - uid: 2990 + components: + - type: Transform + pos: -27.5,14.5 + parent: 293 +- proto: SubstationBasic + entities: + - uid: 5 + components: + - type: Transform + pos: -27.5,13.5 + parent: 293 +- proto: Table + entities: + - uid: 3019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 293 + - uid: 3020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 293 + - uid: 3021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 293 + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 293 + - uid: 3024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,27.5 + parent: 293 + - uid: 3025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,28.5 + parent: 293 + - uid: 3026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,29.5 + parent: 293 + - uid: 3027 + components: + - type: Transform + pos: -26.5,20.5 + parent: 293 +- proto: TableReinforced + entities: + - uid: 3036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 293 + - uid: 3037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 293 +- proto: ToiletDirtyWater + entities: + - uid: 3040 + components: + - type: Transform + pos: -31.5,31.5 + parent: 293 +- proto: ToiletEmpty + entities: + - uid: 3041 + components: + - type: Transform + pos: -29.5,31.5 + parent: 293 +- proto: ToyFigurineMime + entities: + - uid: 3044 + components: + - type: Transform + pos: -23.587875,17.639355 + parent: 293 +- proto: ToyRubberDuck + entities: + - uid: 3045 + components: + - type: Transform + pos: -29.539967,27.420244 + parent: 293 +- proto: VendingMachineSalvage + entities: + - uid: 3053 + components: + - type: Transform + pos: -27.5,22.5 + parent: 293 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} +- proto: VendingMachineSustenance + entities: + - uid: 80 + components: + - type: Transform + pos: -34.5,26.5 + parent: 293 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 3055 + components: + - type: Transform + pos: -24.5,27.5 + parent: 293 +- proto: VendingMachineWallMedical + entities: + - uid: 96 + components: + - type: Transform + pos: -33.5,24.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: WallReinforced + entities: + - uid: 104 + components: + - type: Transform + pos: -28.5,14.5 + parent: 293 + - uid: 105 + components: + - type: Transform + pos: -28.5,13.5 + parent: 293 + - uid: 106 + components: + - type: Transform + pos: -28.5,12.5 + parent: 293 + - uid: 107 + components: + - type: Transform + pos: -27.5,12.5 + parent: 293 + - uid: 108 + components: + - type: Transform + pos: -24.5,12.5 + parent: 293 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,15.5 + parent: 293 + - uid: 110 + components: + - type: Transform + pos: -22.5,16.5 + parent: 293 + - uid: 111 + components: + - type: Transform + pos: -23.5,18.5 + parent: 293 + - uid: 112 + components: + - type: Transform + pos: -25.5,17.5 + parent: 293 + - uid: 113 + components: + - type: Transform + pos: -26.5,17.5 + parent: 293 + - uid: 114 + components: + - type: Transform + pos: -27.5,17.5 + parent: 293 + - uid: 115 + components: + - type: Transform + pos: -28.5,17.5 + parent: 293 + - uid: 116 + components: + - type: Transform + pos: -23.5,20.5 + parent: 293 + - uid: 117 + components: + - type: Transform + pos: -25.5,23.5 + parent: 293 + - uid: 118 + components: + - type: Transform + pos: -24.5,23.5 + parent: 293 + - uid: 119 + components: + - type: Transform + pos: -23.5,23.5 + parent: 293 + - uid: 120 + components: + - type: Transform + pos: -22.5,23.5 + parent: 293 + - uid: 121 + components: + - type: Transform + pos: -34.5,12.5 + parent: 293 + - uid: 122 + components: + - type: Transform + pos: -21.5,23.5 + parent: 293 + - uid: 123 + components: + - type: Transform + pos: -25.5,26.5 + parent: 293 + - uid: 124 + components: + - type: Transform + pos: -24.5,26.5 + parent: 293 + - uid: 125 + components: + - type: Transform + pos: -22.5,26.5 + parent: 293 + - uid: 126 + components: + - type: Transform + pos: -21.5,26.5 + parent: 293 + - uid: 127 + components: + - type: Transform + pos: -34.5,14.5 + parent: 293 + - uid: 128 + components: + - type: Transform + pos: -34.5,15.5 + parent: 293 + - uid: 129 + components: + - type: Transform + pos: -33.5,15.5 + parent: 293 + - uid: 130 + components: + - type: Transform + pos: -32.5,15.5 + parent: 293 + - uid: 131 + components: + - type: Transform + pos: -31.5,15.5 + parent: 293 + - uid: 132 + components: + - type: Transform + pos: -35.5,15.5 + parent: 293 + - uid: 133 + components: + - type: Transform + pos: -33.5,17.5 + parent: 293 + - uid: 134 + components: + - type: Transform + pos: -34.5,17.5 + parent: 293 + - uid: 135 + components: + - type: Transform + pos: -35.5,17.5 + parent: 293 + - uid: 136 + components: + - type: Transform + pos: -35.5,18.5 + parent: 293 + - uid: 137 + components: + - type: Transform + pos: -35.5,19.5 + parent: 293 + - uid: 138 + components: + - type: Transform + pos: -34.5,19.5 + parent: 293 + - uid: 139 + components: + - type: Transform + pos: -33.5,19.5 + parent: 293 + - uid: 140 + components: + - type: Transform + pos: -32.5,19.5 + parent: 293 + - uid: 141 + components: + - type: Transform + pos: -35.5,21.5 + parent: 293 + - uid: 142 + components: + - type: Transform + pos: -34.5,21.5 + parent: 293 + - uid: 143 + components: + - type: Transform + pos: -33.5,21.5 + parent: 293 + - uid: 144 + components: + - type: Transform + pos: -35.5,23.5 + parent: 293 + - uid: 145 + components: + - type: Transform + pos: -33.5,24.5 + parent: 293 + - uid: 146 + components: + - type: Transform + pos: -32.5,30.5 + parent: 293 + - uid: 147 + components: + - type: Transform + pos: -29.5,26.5 + parent: 293 + - uid: 148 + components: + - type: Transform + pos: -23.5,28.5 + parent: 293 + - uid: 149 + components: + - type: Transform + pos: -23.5,31.5 + parent: 293 + - uid: 150 + components: + - type: Transform + pos: -24.5,31.5 + parent: 293 + - uid: 151 + components: + - type: Transform + pos: -27.5,31.5 + parent: 293 + - uid: 152 + components: + - type: Transform + pos: -28.5,30.5 + parent: 293 + - uid: 153 + components: + - type: Transform + pos: -28.5,29.5 + parent: 293 + - uid: 154 + components: + - type: Transform + pos: -28.5,28.5 + parent: 293 + - uid: 155 + components: + - type: Transform + pos: -28.5,27.5 + parent: 293 + - uid: 203 + components: + - type: Transform + pos: -30.5,30.5 + parent: 293 +- proto: WallReinforcedRust + entities: + - uid: 156 + components: + - type: Transform + pos: -30.5,31.5 + parent: 293 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 293 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 293 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,12.5 + parent: 293 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 293 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 293 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 293 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 293 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 293 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 293 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 293 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,15.5 + parent: 293 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 293 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,16.5 + parent: 293 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,18.5 + parent: 293 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 293 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 293 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 293 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,21.5 + parent: 293 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,22.5 + parent: 293 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 293 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,21.5 + parent: 293 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 293 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 293 + - uid: 180 + components: + - type: Transform + pos: -35.5,25.5 + parent: 293 + - uid: 181 + components: + - type: Transform + pos: -32.5,21.5 + parent: 293 + - uid: 182 + components: + - type: Transform + pos: -35.5,22.5 + parent: 293 + - uid: 183 + components: + - type: Transform + pos: -35.5,24.5 + parent: 293 + - uid: 184 + components: + - type: Transform + pos: -34.5,24.5 + parent: 293 + - uid: 185 + components: + - type: Transform + pos: -32.5,24.5 + parent: 293 + - uid: 186 + components: + - type: Transform + pos: -35.5,26.5 + parent: 293 + - uid: 187 + components: + - type: Transform + pos: -36.5,26.5 + parent: 293 + - uid: 188 + components: + - type: Transform + pos: -36.5,30.5 + parent: 293 + - uid: 189 + components: + - type: Transform + pos: -35.5,30.5 + parent: 293 + - uid: 190 + components: + - type: Transform + pos: -34.5,30.5 + parent: 293 + - uid: 191 + components: + - type: Transform + pos: -33.5,30.5 + parent: 293 + - uid: 192 + components: + - type: Transform + pos: -32.5,29.5 + parent: 293 + - uid: 193 + components: + - type: Transform + pos: -32.5,28.5 + parent: 293 + - uid: 194 + components: + - type: Transform + pos: -32.5,27.5 + parent: 293 + - uid: 195 + components: + - type: Transform + pos: -32.5,26.5 + parent: 293 + - uid: 196 + components: + - type: Transform + pos: -31.5,26.5 + parent: 293 + - uid: 197 + components: + - type: Transform + pos: -32.5,31.5 + parent: 293 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 293 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,26.5 + parent: 293 + - uid: 200 + components: + - type: Transform + pos: -32.5,32.5 + parent: 293 + - uid: 201 + components: + - type: Transform + pos: -31.5,32.5 + parent: 293 + - uid: 202 + components: + - type: Transform + pos: -30.5,32.5 + parent: 293 + - uid: 204 + components: + - type: Transform + pos: -28.5,31.5 + parent: 293 + - uid: 205 + components: + - type: Transform + pos: -28.5,32.5 + parent: 293 + - uid: 206 + components: + - type: Transform + pos: -29.5,32.5 + parent: 293 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,27.5 + parent: 293 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,29.5 + parent: 293 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,30.5 + parent: 293 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 293 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,31.5 + parent: 293 +- proto: WallRockBasalt + entities: + - uid: 3205 + components: + - type: Transform + pos: -20.5,26.5 + parent: 293 + - uid: 3206 + components: + - type: Transform + pos: -19.5,26.5 + parent: 293 + - uid: 3207 + components: + - type: Transform + pos: -19.5,25.5 + parent: 293 + - uid: 3208 + components: + - type: Transform + pos: -19.5,24.5 + parent: 293 + - uid: 3209 + components: + - type: Transform + pos: -18.5,26.5 + parent: 293 + - uid: 3210 + components: + - type: Transform + pos: -18.5,25.5 + parent: 293 + - uid: 3211 + components: + - type: Transform + pos: -18.5,24.5 + parent: 293 + - uid: 3212 + components: + - type: Transform + pos: -17.5,26.5 + parent: 293 + - uid: 3213 + components: + - type: Transform + pos: -17.5,25.5 + parent: 293 + - uid: 3214 + components: + - type: Transform + pos: -17.5,24.5 + parent: 293 + - uid: 3215 + components: + - type: Transform + pos: -16.5,26.5 + parent: 293 + - uid: 3216 + components: + - type: Transform + pos: -16.5,25.5 + parent: 293 + - uid: 3217 + components: + - type: Transform + pos: -16.5,24.5 + parent: 293 + - uid: 3218 + components: + - type: Transform + pos: -15.5,26.5 + parent: 293 + - uid: 3219 + components: + - type: Transform + pos: -15.5,25.5 + parent: 293 + - uid: 3220 + components: + - type: Transform + pos: -15.5,24.5 + parent: 293 + - uid: 3221 + components: + - type: Transform + pos: -16.5,23.5 + parent: 293 + - uid: 3222 + components: + - type: Transform + pos: -16.5,22.5 + parent: 293 + - uid: 3223 + components: + - type: Transform + pos: -15.5,23.5 + parent: 293 + - uid: 3224 + components: + - type: Transform + pos: -15.5,22.5 + parent: 293 + - uid: 3225 + components: + - type: Transform + pos: -15.5,21.5 + parent: 293 + - uid: 3226 + components: + - type: Transform + pos: -15.5,20.5 + parent: 293 + - uid: 3227 + components: + - type: Transform + pos: -15.5,19.5 + parent: 293 + - uid: 3228 + components: + - type: Transform + pos: -15.5,18.5 + parent: 293 + - uid: 3229 + components: + - type: Transform + pos: -16.5,18.5 + parent: 293 + - uid: 3230 + components: + - type: Transform + pos: -22.5,27.5 + parent: 293 + - uid: 3231 + components: + - type: Transform + pos: -22.5,28.5 + parent: 293 + - uid: 3232 + components: + - type: Transform + pos: -22.5,29.5 + parent: 293 + - uid: 3233 + components: + - type: Transform + pos: -22.5,30.5 + parent: 293 + - uid: 3234 + components: + - type: Transform + pos: -22.5,31.5 + parent: 293 + - uid: 3235 + components: + - type: Transform + pos: -22.5,32.5 + parent: 293 + - uid: 3237 + components: + - type: Transform + pos: -21.5,27.5 + parent: 293 + - uid: 3238 + components: + - type: Transform + pos: -21.5,28.5 + parent: 293 + - uid: 3239 + components: + - type: Transform + pos: -21.5,29.5 + parent: 293 + - uid: 3240 + components: + - type: Transform + pos: -21.5,30.5 + parent: 293 + - uid: 3241 + components: + - type: Transform + pos: -21.5,31.5 + parent: 293 + - uid: 3242 + components: + - type: Transform + pos: -21.5,32.5 + parent: 293 + - uid: 3244 + components: + - type: Transform + pos: -20.5,27.5 + parent: 293 + - uid: 3245 + components: + - type: Transform + pos: -20.5,28.5 + parent: 293 + - uid: 3246 + components: + - type: Transform + pos: -20.5,29.5 + parent: 293 + - uid: 3247 + components: + - type: Transform + pos: -20.5,30.5 + parent: 293 + - uid: 3248 + components: + - type: Transform + pos: -20.5,31.5 + parent: 293 + - uid: 3249 + components: + - type: Transform + pos: -20.5,32.5 + parent: 293 + - uid: 3251 + components: + - type: Transform + pos: -19.5,27.5 + parent: 293 + - uid: 3252 + components: + - type: Transform + pos: -19.5,28.5 + parent: 293 + - uid: 3253 + components: + - type: Transform + pos: -19.5,29.5 + parent: 293 + - uid: 3258 + components: + - type: Transform + pos: -18.5,27.5 + parent: 293 + - uid: 3259 + components: + - type: Transform + pos: -18.5,28.5 + parent: 293 + - uid: 3260 + components: + - type: Transform + pos: -18.5,29.5 + parent: 293 + - uid: 3265 + components: + - type: Transform + pos: -17.5,27.5 + parent: 293 + - uid: 3266 + components: + - type: Transform + pos: -17.5,28.5 + parent: 293 + - uid: 3267 + components: + - type: Transform + pos: -17.5,29.5 + parent: 293 + - uid: 3272 + components: + - type: Transform + pos: -16.5,27.5 + parent: 293 + - uid: 3273 + components: + - type: Transform + pos: -16.5,28.5 + parent: 293 + - uid: 3274 + components: + - type: Transform + pos: -16.5,29.5 + parent: 293 + - uid: 3279 + components: + - type: Transform + pos: -15.5,27.5 + parent: 293 + - uid: 3280 + components: + - type: Transform + pos: -15.5,28.5 + parent: 293 + - uid: 3286 + components: + - type: Transform + pos: -27.5,32.5 + parent: 293 + - uid: 3287 + components: + - type: Transform + pos: -27.5,33.5 + parent: 293 + - uid: 3288 + components: + - type: Transform + pos: -26.5,32.5 + parent: 293 + - uid: 3289 + components: + - type: Transform + pos: -26.5,33.5 + parent: 293 + - uid: 3290 + components: + - type: Transform + pos: -25.5,32.5 + parent: 293 + - uid: 3291 + components: + - type: Transform + pos: -25.5,33.5 + parent: 293 + - uid: 3292 + components: + - type: Transform + pos: -24.5,32.5 + parent: 293 + - uid: 3294 + components: + - type: Transform + pos: -23.5,32.5 + parent: 293 + - uid: 3296 + components: + - type: Transform + pos: -32.5,33.5 + parent: 293 + - uid: 3297 + components: + - type: Transform + pos: -31.5,33.5 + parent: 293 + - uid: 3298 + components: + - type: Transform + pos: -30.5,33.5 + parent: 293 + - uid: 3299 + components: + - type: Transform + pos: -29.5,33.5 + parent: 293 + - uid: 3300 + components: + - type: Transform + pos: -28.5,33.5 + parent: 293 + - uid: 3301 + components: + - type: Transform + pos: -14.5,18.5 + parent: 293 + - uid: 3302 + components: + - type: Transform + pos: -13.5,19.5 + parent: 293 + - uid: 3303 + components: + - type: Transform + pos: -14.5,19.5 + parent: 293 + - uid: 3304 + components: + - type: Transform + pos: -13.5,20.5 + parent: 293 + - uid: 3306 + components: + - type: Transform + pos: -14.5,20.5 + parent: 293 + - uid: 3307 + components: + - type: Transform + pos: -13.5,21.5 + parent: 293 + - uid: 3308 + components: + - type: Transform + pos: -14.5,21.5 + parent: 293 + - uid: 3309 + components: + - type: Transform + pos: -14.5,22.5 + parent: 293 + - uid: 3310 + components: + - type: Transform + pos: -14.5,23.5 + parent: 293 + - uid: 3311 + components: + - type: Transform + pos: -14.5,24.5 + parent: 293 + - uid: 3312 + components: + - type: Transform + pos: -14.5,25.5 + parent: 293 + - uid: 3313 + components: + - type: Transform + pos: -14.5,26.5 + parent: 293 + - uid: 3314 + components: + - type: Transform + pos: -13.5,22.5 + parent: 293 + - uid: 3315 + components: + - type: Transform + pos: -13.5,23.5 + parent: 293 + - uid: 3316 + components: + - type: Transform + pos: -13.5,24.5 + parent: 293 + - uid: 3450 + components: + - type: Transform + pos: -33.5,34.5 + parent: 293 + - uid: 3451 + components: + - type: Transform + pos: -32.5,34.5 + parent: 293 + - uid: 3452 + components: + - type: Transform + pos: -31.5,34.5 + parent: 293 + - uid: 3469 + components: + - type: Transform + pos: -14.5,27.5 + parent: 293 + - uid: 3470 + components: + - type: Transform + pos: -14.5,28.5 + parent: 293 +- proto: WashingMachine + entities: + - uid: 65 + components: + - type: Transform + pos: -34.5,22.5 + parent: 293 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Construction + containers: + - machine_parts + - machine_board + - entity_storage +- proto: WeaponCapacitorRecharger + entities: + - uid: 3866 + components: + - type: Transform + pos: -31.5,13.5 + parent: 293 +- proto: Wrench + entities: + - uid: 3884 + components: + - type: Transform + pos: -29.501362,31.437155 + parent: 293 +... diff --git a/Resources/Maps/_Wega/Lavaland/preserved_terrarium.yml b/Resources/Maps/_Wega/Lavaland/preserved_terrarium.yml new file mode 100644 index 00000000000..552c0bcaec7 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/preserved_terrarium.yml @@ -0,0 +1,1458 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:08:53 + entityCount: 226 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 2: Space + 3: FloorBasalt + 0: FloorFreezer + 1: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -2.2124596,1.828125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 62719 + 0,-1: + 0: 65535 + -1,0: + 0: 32904 + 0,1: + 0: 15 + 1,0: + 0: 61695 + 1,1: + 0: 15 + 1,-1: + 0: 65535 + 2,0: + 0: 5141 + 2,-1: + 0: 8177 + 2,1: + 0: 4 + -1,-1: + 0: 49147 + -1,-2: + 0: 34816 + 0,-2: + 0: 65292 + 1,-2: + 0: 65280 + 2,-2: + 0: 20800 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirCanister + entities: + - uid: 226 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 89 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 92: + - - DoorStatus + - DoorBolt + 91: + - - DoorStatus + - DoorBolt + - uid: 90 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 92: + - - DoorStatus + - DoorBolt + 91: + - - DoorStatus + - DoorBolt + - uid: 91 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 90: + - - DoorStatus + - DoorBolt + 89: + - - DoorStatus + - DoorBolt + - uid: 92 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 89: + - - DoorStatus + - DoorBolt + 90: + - - DoorStatus + - DoorBolt +- proto: AirlockHydroponics + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 154 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: Biofabricator + entities: + - uid: 122 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: Bucket + entities: + - uid: 137 + components: + - type: Transform + pos: 5.6785603,1.604964 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 7.870857,1.6834512 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 158 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 22 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: CableMV + entities: + - uid: 23 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 220 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 +- proto: ClothingBackpackWaterTank + entities: + - uid: 144 + components: + - type: Transform + pos: 7.5524035,-5.446327 + parent: 1 +- proto: ClothingBeltPlantFilled + entities: + - uid: 213 + components: + - type: Transform + pos: 3.0792236,4.589468 + parent: 1 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 211 + components: + - type: Transform + pos: 4.3292236,4.651968 + parent: 1 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 128 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 140 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CryogenicSleepUnit + entities: + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 +- proto: DisposalBend + entities: + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 62 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 147 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 121 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 21 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 109 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 126 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: LockerBotanistFilled + entities: + - uid: 210 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: LockerBotanistLoot + entities: + - uid: 129 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: PackPaperRollingFilters + entities: + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.38597775,4.679373 + parent: 1 +- proto: PlantBag + entities: + - uid: 135 + components: + - type: Transform + pos: 5.3973103,1.698714 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 7.4129353,1.589339 + parent: 1 +- proto: Poweredlight + entities: + - uid: 97 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 +- proto: SeedExtractor + entities: + - uid: 120 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 +- proto: SmartFridge + entities: + - uid: 108 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 124 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: SpawnMobBee + entities: + - uid: 221 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: SpawnMobButterfly + entities: + - uid: 224 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 153 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 125 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: TableWood + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 +- proto: TechnologyDisk + entities: + - uid: 216 + components: + - type: Transform + pos: 8.588779,1.6050167 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 1.3883138,4.5268917 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 2.1539388,4.5268917 + parent: 1 +- proto: Thruster + entities: + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 143 + components: + - type: Transform + pos: 8.505528,-5.352577 + parent: 1 +- proto: ToyFigurineBotanist + entities: + - uid: 212 + components: + - type: Transform + pos: 3.7510986,4.651968 + parent: 1 +- proto: VendingMachineHydrobe + entities: + - uid: 127 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 +- proto: VendingMachineNutri + entities: + - uid: 141 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 107 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 142 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: WeaponSprayNozzle + entities: + - uid: 145 + components: + - type: Transform + pos: 7.8961535,-5.258827 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/ritual.yml b/Resources/Maps/_Wega/Lavaland/ritual.yml new file mode 100644 index 00000000000..8d76f1de709 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/ritual.yml @@ -0,0 +1,806 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 19:52:03 + entityCount: 111 +maps: [] +grids: +- 8203 +orphans: +- 8203 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 8203 + components: + - type: MetaData + name: "" + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAQAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAQAAAAAAAAAAAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAABAAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAABAAAAAAAAAiAAAAAAAAIgAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAiAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACIAAAAAAAAQAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAABAAAAAAAAAiAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACIAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIgAAAAAAACIAAAAAAAAQAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAQAAAAAAAAEAAAAAAAACIAAAAAAAAiAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 0: 1,5 + 1: 2,6 + 2: 12,6 + 3: 13,5 + 4: 12,-4 + 5: 11,-5 + 6: 2,-4 + 7: 3,-5 + 8: 9,1 + 9: 8,-2 + 10: 5,-1 + 11: 6,2 + 12: 5,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 26: 5,1 + 27: 6,-2 + 28: 9,-1 + 29: 8,2 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + flags: Hide + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: BloodCultStructurePylon + entities: + - uid: 1 + components: + - type: Transform + pos: 12.5,5.5 + parent: 8203 + - type: Physics + bodyType: Static + - uid: 2 + components: + - type: Transform + pos: 2.5,5.5 + parent: 8203 + - type: Physics + bodyType: Static + - uid: 3 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 8203 + - type: Physics + bodyType: Static + - uid: 15 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 8203 + - type: Physics + bodyType: Static +- proto: BloodRuneRitualDimensionalRending + entities: + - uid: 4 + components: + - type: Transform + pos: 7.5,0.5 + parent: 8203 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - type: Sprite + color: "#880000" + missingComponents: + - BloodRitualDimensionalRending + - NavMapBeacon +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 8204 + components: + - type: Transform + pos: 9.490631,-0.5386188 + parent: 8203 + - uid: 8205 + components: + - type: Transform + pos: 6.443756,-1.4526813 + parent: 8203 + - uid: 8206 + components: + - type: Transform + pos: 5.506256,1.4301312 + parent: 8203 +- proto: ClothingOuterRobesCult + entities: + - uid: 8207 + components: + - type: Transform + pos: 9.490631,-0.42143133 + parent: 8203 + - uid: 8208 + components: + - type: Transform + pos: 6.443756,-1.3589313 + parent: 8203 + - uid: 8209 + components: + - type: Transform + pos: 5.506256,1.6176312 + parent: 8203 +- proto: ClothingShoesCult + entities: + - uid: 8210 + components: + - type: Transform + pos: 9.443756,-0.5151813 + parent: 8203 + - uid: 8211 + components: + - type: Transform + pos: 6.4671936,-1.4761188 + parent: 8203 + - uid: 8212 + components: + - type: Transform + pos: 5.412506,1.5238812 + parent: 8203 +- proto: FloorLavaEntity + entities: + - uid: 8218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 8203 + - uid: 8219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 8203 + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 8203 + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 8203 + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 8203 + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 8203 + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 8203 + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 8203 + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 8203 + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 8203 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 8203 + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 8203 + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 8203 + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 8203 + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 8203 + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 8203 + - uid: 8234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 8203 + - uid: 8235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 8203 + - uid: 8236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 8203 + - uid: 8237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 8203 + - uid: 8238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 8203 + - uid: 8239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 8203 + - uid: 8240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 8203 + - uid: 8241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 8203 + - uid: 8242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 8203 + - uid: 8243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 8203 + - uid: 8244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 8203 + - uid: 8245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 8203 + - uid: 8246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 8203 + - uid: 8247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 8203 + - uid: 8248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 8203 + - uid: 8249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 8203 + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 8203 + - uid: 8251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 8203 + - uid: 8252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 8203 + - uid: 8253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 8203 + - uid: 8254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 8203 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 8203 + - uid: 8256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 8203 + - uid: 8257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 8203 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 8203 + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 8203 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 8203 + - uid: 8261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 8203 + - uid: 8262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 8203 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 8203 + - uid: 8264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 8203 + - uid: 8265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 8203 + - uid: 8266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 8203 + - uid: 8267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 8203 + - uid: 8268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 8203 + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 8203 + - uid: 8270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 8203 + - uid: 8271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 8203 + - uid: 8272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 8203 + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 8203 + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 8203 + - uid: 8275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 8203 + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 8203 + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 8203 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 8203 + - uid: 8279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 8203 + - uid: 8280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 8203 + - uid: 8281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 8203 + - uid: 8282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 8203 + - uid: 8283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 8203 + - uid: 8284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 8203 + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 8203 + - uid: 8286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 8203 +- proto: PuddleBlood + entities: + - uid: 8 + components: + - type: Transform + pos: 2.5,0.5 + parent: 8203 + - uid: 9 + components: + - type: Transform + pos: 6.5,2.5 + parent: 8203 + - uid: 10 + components: + - type: Transform + pos: 6.5,3.5 + parent: 8203 + - uid: 11 + components: + - type: Transform + pos: 7.5,5.5 + parent: 8203 + - uid: 12 + components: + - type: Transform + pos: 9.5,3.5 + parent: 8203 + - uid: 13 + components: + - type: Transform + pos: 12.5,0.5 + parent: 8203 + - uid: 14 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 8203 +- proto: WallCult + entities: + - uid: 8289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 8203 + - uid: 8290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 8203 + - uid: 8291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 8203 + - uid: 8292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 8203 + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 8203 + - uid: 8294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 8203 + - uid: 8295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 8203 + - uid: 8296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 8203 + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 8203 + - uid: 8298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 8203 + - uid: 8299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 8203 + - uid: 8300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 8203 + - uid: 8301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 8203 + - uid: 8302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 8203 + - uid: 8303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 8203 + - uid: 8304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 8203 +- proto: WarpPoint + entities: + - uid: 8305 + components: + - type: Transform + pos: 7.5,0.5 + parent: 8203 + - type: WarpPoint + location: Ритуал +- proto: WeaponBloodBlade + entities: + - uid: 5 + components: + - type: Transform + pos: 8.458984,2.4128418 + parent: 8203 + - uid: 6 + components: + - type: Transform + pos: 5.510254,-0.49456787 + parent: 8203 +- proto: WeaponBloodDagger + entities: + - uid: 7 + components: + - type: Transform + pos: 7.512207,0.5323181 + parent: 8203 +... diff --git a/Resources/Maps/_Wega/Lavaland/shelter.yml b/Resources/Maps/_Wega/Lavaland/shelter.yml new file mode 100644 index 00000000000..477fd935f8a --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/shelter.yml @@ -0,0 +1,270 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 20:16:38 + entityCount: 25 +maps: [] +grids: +- 7919 +orphans: +- 7919 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 7919 + components: + - type: MetaData + name: "" + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAwAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 0: -1.9839964,-2.8868396 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1: -1.9954643,-0.6083584 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4: 2.70638,1.991447 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 2: 2.7648354,-2.0251064 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 3: 0.23665142,-2.1419518 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + flags: Hide + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 7920 + components: + - type: Transform + pos: 1.5,0.5 + parent: 7919 +- proto: WallPlastitanium + entities: + - uid: 7921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 7919 + - uid: 7922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 7919 + - uid: 7923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 7919 + - uid: 7924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 7919 + - uid: 7925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 7919 + - uid: 7926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 7919 + - uid: 7927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 7919 +- proto: WallRockBasalt + entities: + - uid: 7928 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 7919 + - uid: 7929 + components: + - type: Transform + pos: -0.5,1.5 + parent: 7919 + - uid: 7930 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 7919 + - uid: 7931 + components: + - type: Transform + pos: 0.5,2.5 + parent: 7919 + - uid: 7932 + components: + - type: Transform + pos: 1.5,2.5 + parent: 7919 + - uid: 7933 + components: + - type: Transform + pos: 2.5,2.5 + parent: 7919 + - uid: 7934 + components: + - type: Transform + pos: 3.5,3.5 + parent: 7919 + - uid: 7935 + components: + - type: Transform + pos: 2.5,3.5 + parent: 7919 + - uid: 7936 + components: + - type: Transform + pos: 1.5,3.5 + parent: 7919 + - uid: 7937 + components: + - type: Transform + pos: 0.5,3.5 + parent: 7919 + - uid: 7938 + components: + - type: Transform + pos: 1.5,4.5 + parent: 7919 + - uid: 7939 + components: + - type: Transform + pos: 2.5,4.5 + parent: 7919 + - uid: 7940 + components: + - type: Transform + pos: 3.5,4.5 + parent: 7919 + - uid: 7941 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 7919 + - uid: 7942 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 7919 + - uid: 7943 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 7919 +... diff --git a/Resources/Maps/_Wega/Lavaland/spidernest.yml b/Resources/Maps/_Wega/Lavaland/spidernest.yml new file mode 100644 index 00000000000..99468191e82 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/spidernest.yml @@ -0,0 +1,3685 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 21:01:49 + entityCount: 703 +maps: [] +grids: +- 9507 +orphans: +- 9507 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 9507 + components: + - type: MetaData + name: Логово + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAOAAAAAAAAIAAAAAAAAA4AAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAA4AAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: IAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAAA4AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAA4AAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAOAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAA4AAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADgAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAOAAAAAAAAEAAAAAAAAA== + version: 7 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: EAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 0: -7.9819336,-7.7088246 + 1: -11.092285,6.783554 + 2: -11.136108,8.317147 + 3: -11.033813,9.836134 + 4: -5.763855,6.81001 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 9508 + components: + - type: Transform + pos: -5.643799,7.762785 + parent: 9507 +- proto: ClothingHeadHelmetBone + entities: + - uid: 9509 + components: + - type: Transform + pos: -9.462891,-8.325345 + parent: 9507 +- proto: ClothingOuterRobesCult + entities: + - uid: 9510 + components: + - type: Transform + pos: -5.643799,7.42727 + parent: 9507 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 9511 + components: + - type: Transform + pos: -5.461975,0.43354213 + parent: 9507 +- proto: EggSpider + entities: + - uid: 9512 + components: + - type: Transform + pos: -3.4676514,-6.579159 + parent: 9507 + - uid: 9513 + components: + - type: Transform + pos: 3.4494019,-8.682372 + parent: 9507 + - uid: 9514 + components: + - type: Transform + pos: 7.4608765,1.5987824 + parent: 9507 + - uid: 9515 + components: + - type: Transform + pos: 0.4732666,-1.5987551 + parent: 9507 + - uid: 9516 + components: + - type: Transform + pos: -7.5214844,4.549954 + parent: 9507 + - uid: 9517 + components: + - type: Transform + pos: 11.36908,9.395201 + parent: 9507 +- proto: FloorLavaEntity + entities: + - uid: 9518 + components: + - type: Transform + pos: -17.5,2.5 + parent: 9507 + - uid: 9519 + components: + - type: Transform + pos: -17.5,4.5 + parent: 9507 + - uid: 9520 + components: + - type: Transform + pos: -16.5,5.5 + parent: 9507 + - uid: 9521 + components: + - type: Transform + pos: -16.5,4.5 + parent: 9507 + - uid: 9522 + components: + - type: Transform + pos: -16.5,3.5 + parent: 9507 + - uid: 9523 + components: + - type: Transform + pos: -16.5,2.5 + parent: 9507 + - uid: 9524 + components: + - type: Transform + pos: -16.5,1.5 + parent: 9507 + - uid: 9525 + components: + - type: Transform + pos: -15.5,5.5 + parent: 9507 + - uid: 9526 + components: + - type: Transform + pos: -15.5,4.5 + parent: 9507 + - uid: 9527 + components: + - type: Transform + pos: -15.5,3.5 + parent: 9507 + - uid: 9528 + components: + - type: Transform + pos: -15.5,2.5 + parent: 9507 + - uid: 9529 + components: + - type: Transform + pos: -15.5,1.5 + parent: 9507 + - uid: 9530 + components: + - type: Transform + pos: -14.5,2.5 + parent: 9507 + - uid: 9531 + components: + - type: Transform + pos: -15.5,6.5 + parent: 9507 + - uid: 9532 + components: + - type: Transform + pos: -15.5,7.5 + parent: 9507 + - uid: 9533 + components: + - type: Transform + pos: -14.5,6.5 + parent: 9507 + - uid: 9534 + components: + - type: Transform + pos: -14.5,7.5 + parent: 9507 + - uid: 9535 + components: + - type: Transform + pos: -13.5,6.5 + parent: 9507 + - uid: 9536 + components: + - type: Transform + pos: -13.5,5.5 + parent: 9507 + - uid: 9537 + components: + - type: Transform + pos: -13.5,4.5 + parent: 9507 + - uid: 9538 + components: + - type: Transform + pos: -13.5,3.5 + parent: 9507 + - uid: 9539 + components: + - type: Transform + pos: -12.5,4.5 + parent: 9507 + - uid: 9540 + components: + - type: Transform + pos: -14.5,8.5 + parent: 9507 + - uid: 9541 + components: + - type: Transform + pos: -13.5,8.5 + parent: 9507 + - uid: 9542 + components: + - type: Transform + pos: -15.5,13.5 + parent: 9507 + - uid: 9543 + components: + - type: Transform + pos: -15.5,12.5 + parent: 9507 + - uid: 9544 + components: + - type: Transform + pos: -14.5,12.5 + parent: 9507 + - uid: 9545 + components: + - type: Transform + pos: -14.5,13.5 + parent: 9507 + - uid: 9546 + components: + - type: Transform + pos: -13.5,12.5 + parent: 9507 + - uid: 9547 + components: + - type: Transform + pos: -13.5,11.5 + parent: 9507 + - uid: 9548 + components: + - type: Transform + pos: -14.5,11.5 + parent: 9507 + - uid: 9549 + components: + - type: Transform + pos: -14.5,9.5 + parent: 9507 + - uid: 9550 + components: + - type: Transform + pos: -14.5,10.5 + parent: 9507 + - uid: 9551 + components: + - type: Transform + pos: -15.5,9.5 + parent: 9507 + - uid: 9552 + components: + - type: Transform + pos: -15.5,10.5 + parent: 9507 + - uid: 9553 + components: + - type: Transform + pos: -12.5,13.5 + parent: 9507 + - uid: 9554 + components: + - type: Transform + pos: -12.5,14.5 + parent: 9507 + - uid: 9555 + components: + - type: Transform + pos: -12.5,15.5 + parent: 9507 + - uid: 9556 + components: + - type: Transform + pos: -13.5,15.5 + parent: 9507 + - uid: 9557 + components: + - type: Transform + pos: -14.5,15.5 + parent: 9507 + - uid: 9558 + components: + - type: Transform + pos: -14.5,14.5 + parent: 9507 + - uid: 9559 + components: + - type: Transform + pos: -13.5,16.5 + parent: 9507 + - uid: 9560 + components: + - type: Transform + pos: -1.5,15.5 + parent: 9507 + - uid: 9561 + components: + - type: Transform + pos: -11.5,14.5 + parent: 9507 + - uid: 9562 + components: + - type: Transform + pos: -11.5,15.5 + parent: 9507 + - uid: 9563 + components: + - type: Transform + pos: -11.5,16.5 + parent: 9507 + - uid: 9564 + components: + - type: Transform + pos: -10.5,14.5 + parent: 9507 + - uid: 9565 + components: + - type: Transform + pos: -10.5,15.5 + parent: 9507 + - uid: 9566 + components: + - type: Transform + pos: -10.5,16.5 + parent: 9507 + - uid: 9567 + components: + - type: Transform + pos: -9.5,17.5 + parent: 9507 + - uid: 9568 + components: + - type: Transform + pos: -9.5,16.5 + parent: 9507 + - uid: 9569 + components: + - type: Transform + pos: -9.5,15.5 + parent: 9507 + - uid: 9570 + components: + - type: Transform + pos: -8.5,16.5 + parent: 9507 + - uid: 9571 + components: + - type: Transform + pos: -8.5,15.5 + parent: 9507 + - uid: 9572 + components: + - type: Transform + pos: -7.5,16.5 + parent: 9507 + - uid: 9573 + components: + - type: Transform + pos: -7.5,15.5 + parent: 9507 + - uid: 9574 + components: + - type: Transform + pos: -6.5,16.5 + parent: 9507 + - uid: 9575 + components: + - type: Transform + pos: -6.5,15.5 + parent: 9507 + - uid: 9576 + components: + - type: Transform + pos: -5.5,16.5 + parent: 9507 + - uid: 9577 + components: + - type: Transform + pos: -5.5,15.5 + parent: 9507 + - uid: 9578 + components: + - type: Transform + pos: -4.5,16.5 + parent: 9507 + - uid: 9579 + components: + - type: Transform + pos: -4.5,15.5 + parent: 9507 + - uid: 9580 + components: + - type: Transform + pos: -3.5,16.5 + parent: 9507 + - uid: 9581 + components: + - type: Transform + pos: -3.5,15.5 + parent: 9507 + - uid: 9582 + components: + - type: Transform + pos: -7.5,17.5 + parent: 9507 + - uid: 9583 + components: + - type: Transform + pos: -6.5,17.5 + parent: 9507 + - uid: 9584 + components: + - type: Transform + pos: -5.5,17.5 + parent: 9507 + - uid: 9585 + components: + - type: Transform + pos: -4.5,17.5 + parent: 9507 + - uid: 9586 + components: + - type: Transform + pos: -6.5,14.5 + parent: 9507 + - uid: 9587 + components: + - type: Transform + pos: -3.5,14.5 + parent: 9507 + - uid: 9588 + components: + - type: Transform + pos: -2.5,13.5 + parent: 9507 + - uid: 9589 + components: + - type: Transform + pos: -2.5,14.5 + parent: 9507 + - uid: 9590 + components: + - type: Transform + pos: -2.5,15.5 + parent: 9507 + - uid: 9591 + components: + - type: Transform + pos: -0.5,17.5 + parent: 9507 + - uid: 9592 + components: + - type: Transform + pos: 0.5,16.5 + parent: 9507 + - uid: 9593 + components: + - type: Transform + pos: -0.5,16.5 + parent: 9507 + - uid: 9594 + components: + - type: Transform + pos: -1.5,16.5 + parent: 9507 + - uid: 9595 + components: + - type: Transform + pos: 3.5,17.5 + parent: 9507 + - uid: 9596 + components: + - type: Transform + pos: 4.5,17.5 + parent: 9507 + - uid: 9597 + components: + - type: Transform + pos: 2.5,17.5 + parent: 9507 + - uid: 9598 + components: + - type: Transform + pos: 1.5,17.5 + parent: 9507 + - uid: 9599 + components: + - type: Transform + pos: -1.5,12.5 + parent: 9507 + - uid: 9600 + components: + - type: Transform + pos: -0.5,15.5 + parent: 9507 + - uid: 9601 + components: + - type: Transform + pos: 1.5,16.5 + parent: 9507 + - uid: 9602 + components: + - type: Transform + pos: 2.5,15.5 + parent: 9507 + - uid: 9603 + components: + - type: Transform + pos: 2.5,16.5 + parent: 9507 + - uid: 9604 + components: + - type: Transform + pos: -1.5,14.5 + parent: 9507 + - uid: 9605 + components: + - type: Transform + pos: -1.5,13.5 + parent: 9507 + - uid: 9606 + components: + - type: Transform + pos: -0.5,13.5 + parent: 9507 + - uid: 9607 + components: + - type: Transform + pos: 2.5,14.5 + parent: 9507 + - uid: 9608 + components: + - type: Transform + pos: 1.5,14.5 + parent: 9507 + - uid: 9609 + components: + - type: Transform + pos: 0.5,13.5 + parent: 9507 + - uid: 9610 + components: + - type: Transform + pos: 5.5,14.5 + parent: 9507 + - uid: 9611 + components: + - type: Transform + pos: 3.5,15.5 + parent: 9507 + - uid: 9612 + components: + - type: Transform + pos: 3.5,14.5 + parent: 9507 + - uid: 9613 + components: + - type: Transform + pos: 4.5,14.5 + parent: 9507 + - uid: 9614 + components: + - type: Transform + pos: 4.5,13.5 + parent: 9507 + - uid: 9615 + components: + - type: Transform + pos: 5.5,15.5 + parent: 9507 + - uid: 9616 + components: + - type: Transform + pos: 6.5,15.5 + parent: 9507 + - uid: 9617 + components: + - type: Transform + pos: 13.5,14.5 + parent: 9507 + - uid: 9618 + components: + - type: Transform + pos: 7.5,15.5 + parent: 9507 + - uid: 9619 + components: + - type: Transform + pos: 8.5,15.5 + parent: 9507 + - uid: 9620 + components: + - type: Transform + pos: 9.5,15.5 + parent: 9507 + - uid: 9621 + components: + - type: Transform + pos: 10.5,15.5 + parent: 9507 + - uid: 9622 + components: + - type: Transform + pos: 11.5,15.5 + parent: 9507 + - uid: 9623 + components: + - type: Transform + pos: 12.5,15.5 + parent: 9507 + - uid: 9624 + components: + - type: Transform + pos: 12.5,16.5 + parent: 9507 + - uid: 9625 + components: + - type: Transform + pos: 8.5,16.5 + parent: 9507 + - uid: 9626 + components: + - type: Transform + pos: 7.5,16.5 + parent: 9507 + - uid: 9627 + components: + - type: Transform + pos: 8.5,17.5 + parent: 9507 + - uid: 9628 + components: + - type: Transform + pos: 9.5,17.5 + parent: 9507 + - uid: 9629 + components: + - type: Transform + pos: 10.5,17.5 + parent: 9507 + - uid: 9630 + components: + - type: Transform + pos: 13.5,15.5 + parent: 9507 + - uid: 9631 + components: + - type: Transform + pos: 13.5,16.5 + parent: 9507 + - uid: 9632 + components: + - type: Transform + pos: 14.5,14.5 + parent: 9507 + - uid: 9633 + components: + - type: Transform + pos: 14.5,15.5 + parent: 9507 + - uid: 9634 + components: + - type: Transform + pos: 14.5,16.5 + parent: 9507 + - uid: 9635 + components: + - type: Transform + pos: 14.5,12.5 + parent: 9507 + - uid: 9636 + components: + - type: Transform + pos: 15.5,15.5 + parent: 9507 + - uid: 9637 + components: + - type: Transform + pos: 13.5,13.5 + parent: 9507 + - uid: 9638 + components: + - type: Transform + pos: 13.5,12.5 + parent: 9507 + - uid: 9639 + components: + - type: Transform + pos: 12.5,14.5 + parent: 9507 + - uid: 9640 + components: + - type: Transform + pos: 14.5,13.5 + parent: 9507 + - uid: 9641 + components: + - type: Transform + pos: 15.5,12.5 + parent: 9507 + - uid: 9642 + components: + - type: Transform + pos: 12.5,10.5 + parent: 9507 + - uid: 9643 + components: + - type: Transform + pos: 13.5,10.5 + parent: 9507 + - uid: 9644 + components: + - type: Transform + pos: 13.5,9.5 + parent: 9507 + - uid: 9645 + components: + - type: Transform + pos: 13.5,8.5 + parent: 9507 + - uid: 9646 + components: + - type: Transform + pos: 13.5,7.5 + parent: 9507 + - uid: 9647 + components: + - type: Transform + pos: 14.5,10.5 + parent: 9507 + - uid: 9648 + components: + - type: Transform + pos: 14.5,9.5 + parent: 9507 + - uid: 9649 + components: + - type: Transform + pos: 14.5,8.5 + parent: 9507 + - uid: 9650 + components: + - type: Transform + pos: 14.5,7.5 + parent: 9507 + - uid: 9651 + components: + - type: Transform + pos: 15.5,7.5 + parent: 9507 + - uid: 9652 + components: + - type: Transform + pos: 15.5,8.5 + parent: 9507 + - uid: 9653 + components: + - type: Transform + pos: 12.5,7.5 + parent: 9507 + - uid: 9654 + components: + - type: Transform + pos: 15.5,10.5 + parent: 9507 + - uid: 9655 + components: + - type: Transform + pos: 12.5,4.5 + parent: 9507 + - uid: 9656 + components: + - type: Transform + pos: 13.5,4.5 + parent: 9507 + - uid: 9657 + components: + - type: Transform + pos: 13.5,5.5 + parent: 9507 + - uid: 9658 + components: + - type: Transform + pos: 14.5,5.5 + parent: 9507 + - uid: 9659 + components: + - type: Transform + pos: 14.5,6.5 + parent: 9507 + - uid: 9660 + components: + - type: Transform + pos: 12.5,3.5 + parent: 9507 + - uid: 9661 + components: + - type: Transform + pos: 12.5,2.5 + parent: 9507 + - uid: 9662 + components: + - type: Transform + pos: 13.5,3.5 + parent: 9507 + - uid: 9663 + components: + - type: Transform + pos: 13.5,2.5 + parent: 9507 + - uid: 9664 + components: + - type: Transform + pos: 14.5,3.5 + parent: 9507 + - uid: 9665 + components: + - type: Transform + pos: 14.5,2.5 + parent: 9507 + - uid: 9666 + components: + - type: Transform + pos: 13.5,1.5 + parent: 9507 + - uid: 9667 + components: + - type: Transform + pos: 11.5,3.5 + parent: 9507 + - uid: 9668 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 9507 + - uid: 9669 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 9507 + - uid: 9670 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 9507 + - uid: 9671 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 9507 + - uid: 9672 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 9507 + - uid: 9673 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 9507 + - uid: 9674 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 9507 + - uid: 9675 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 9507 + - uid: 9676 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 9507 + - uid: 9677 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 9507 + - uid: 9678 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 9507 + - uid: 9679 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 9507 + - uid: 9680 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 9507 + - uid: 9681 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 9507 + - uid: 9682 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 9507 + - uid: 9683 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 9507 + - uid: 9684 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 9507 + - uid: 9685 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 9507 + - uid: 9686 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 9507 + - uid: 9687 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 9507 + - uid: 9688 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 9507 + - uid: 9689 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 9507 + - uid: 9690 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 9507 + - uid: 9691 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 9507 + - uid: 9692 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 9507 + - uid: 9693 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 9507 + - uid: 9694 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 9507 + - uid: 9695 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 9507 + - uid: 9696 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 9507 + - uid: 9697 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 9507 + - uid: 9698 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 9507 + - uid: 9699 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 9507 + - uid: 9700 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 9507 + - uid: 9701 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 9507 + - uid: 9702 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 9507 + - uid: 9703 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 9507 + - uid: 9704 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 9507 + - uid: 9705 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 9507 + - uid: 9706 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 9507 + - uid: 9707 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 9507 + - uid: 9708 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 9507 + - uid: 9709 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 9507 + - uid: 9710 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 9507 + - uid: 9711 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 9507 + - uid: 9712 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 9507 + - uid: 9713 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 9507 + - uid: 9714 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 9507 + - uid: 9715 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 9507 + - uid: 9716 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 9507 + - uid: 9717 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 9507 + - uid: 9718 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 9507 + - uid: 9719 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 9507 + - uid: 9720 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 9507 + - uid: 9721 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 9507 + - uid: 9722 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 9507 + - uid: 9723 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 9507 + - uid: 9724 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 9507 + - uid: 9725 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 9507 + - uid: 9726 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 9507 + - uid: 9727 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 9507 + - uid: 9728 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 9507 + - uid: 9729 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 9507 + - uid: 9730 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 9507 + - uid: 9731 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 9507 + - uid: 9732 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 9507 + - uid: 9733 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 9507 + - uid: 9734 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 9507 + - uid: 9735 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 9507 + - uid: 9736 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 9507 + - uid: 9737 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 9507 + - uid: 9738 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 9507 + - uid: 9739 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 9507 + - uid: 9740 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 9507 + - uid: 9741 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 9507 + - uid: 9742 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 9507 + - uid: 9743 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 9507 + - uid: 9744 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 9507 + - uid: 9745 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 9507 + - uid: 9746 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 9507 + - uid: 9747 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 9507 + - uid: 9748 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 9507 + - uid: 9749 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 9507 + - uid: 9750 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 9507 + - uid: 9751 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 9507 + - uid: 9752 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 9507 + - uid: 9753 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 9507 + - uid: 9754 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 9507 + - uid: 9755 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 9507 + - uid: 9756 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 9507 + - uid: 9757 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 9507 + - uid: 9758 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 9507 + - uid: 9759 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 9507 + - uid: 9760 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 9507 + - uid: 9761 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 9507 + - uid: 9762 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 9507 + - uid: 9763 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 9507 + - uid: 9764 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 9507 + - uid: 9765 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 9507 + - uid: 9766 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 9507 + - uid: 9767 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 9507 + - uid: 9768 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 9507 + - uid: 9769 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 9507 + - uid: 9770 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 9507 + - uid: 9771 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 9507 + - uid: 9772 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 9507 + - uid: 9773 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 9507 + - uid: 9774 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 9507 + - uid: 9775 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 9507 + - uid: 9776 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 9507 + - uid: 9777 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 9507 + - uid: 9778 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 9507 + - uid: 9779 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 9507 + - uid: 9780 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 9507 +- proto: FoodMeatSpider + entities: + - uid: 9781 + components: + - type: Transform + pos: -9.601929,6.500789 + parent: 9507 + - uid: 9782 + components: + - type: Transform + pos: -9.368103,6.340127 + parent: 9507 + - uid: 9783 + components: + - type: Transform + pos: -9.6604,6.1210423 + parent: 9507 +- proto: GasCanisterBrokenBase + entities: + - uid: 9784 + components: + - type: Transform + pos: -10.5,11.5 + parent: 9507 +- proto: MedkitFilled + entities: + - uid: 9785 + components: + - type: Transform + pos: 5.4660034,3.3951771 + parent: 9507 +- proto: MedkitToxinFilled + entities: + - uid: 9786 + components: + - type: Transform + pos: 0.635437,5.356369 + parent: 9507 + - uid: 9787 + components: + - type: Transform + pos: 6.4350586,-8.678315 + parent: 9507 +- proto: Musket + entities: + - uid: 9788 + components: + - type: Transform + pos: 8.416992,-8.5468645 + parent: 9507 +- proto: SpearBone + entities: + - uid: 9789 + components: + - type: Transform + pos: 7.562439,10.413603 + parent: 9507 + - uid: 9790 + components: + - type: Transform + pos: 8.614624,9.493447 + parent: 9507 + - uid: 9791 + components: + - type: Transform + pos: -9.469421,-7.5139203 + parent: 9507 +- proto: SpiderWeb + entities: + - uid: 9792 + components: + - type: Transform + pos: -1.5,0.5 + parent: 9507 + - uid: 9793 + components: + - type: Transform + pos: -0.5,0.5 + parent: 9507 + - uid: 9794 + components: + - type: Transform + pos: 0.5,1.5 + parent: 9507 + - uid: 9795 + components: + - type: Transform + pos: -0.5,1.5 + parent: 9507 + - uid: 9796 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 9507 + - uid: 9797 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 9507 + - uid: 9798 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 9507 + - uid: 9799 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 9507 + - uid: 9800 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 9507 + - uid: 9801 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 9507 + - uid: 9802 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 9507 + - uid: 9803 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 9507 + - uid: 9804 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 9507 + - uid: 9805 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 9507 + - uid: 9806 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 9507 + - uid: 9807 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 9507 + - uid: 9808 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 9507 + - uid: 9809 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 9507 + - uid: 9810 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 9507 + - uid: 9811 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 9507 + - uid: 9812 + components: + - type: Transform + pos: -5.5,0.5 + parent: 9507 + - uid: 9813 + components: + - type: Transform + pos: -6.5,0.5 + parent: 9507 + - uid: 9814 + components: + - type: Transform + pos: -6.5,1.5 + parent: 9507 + - uid: 9815 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 9507 + - uid: 9816 + components: + - type: Transform + pos: -2.5,1.5 + parent: 9507 + - uid: 9817 + components: + - type: Transform + pos: -2.5,2.5 + parent: 9507 + - uid: 9818 + components: + - type: Transform + pos: -3.5,2.5 + parent: 9507 + - uid: 9819 + components: + - type: Transform + pos: -4.5,2.5 + parent: 9507 + - uid: 9820 + components: + - type: Transform + pos: -4.5,3.5 + parent: 9507 + - uid: 9821 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 9507 + - uid: 9822 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 9507 + - uid: 9823 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 9507 + - uid: 9824 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 9507 + - uid: 9825 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 9507 + - uid: 9826 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 9507 + - uid: 9827 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 9507 + - uid: 9828 + components: + - type: Transform + pos: -11.5,0.5 + parent: 9507 + - uid: 9829 + components: + - type: Transform + pos: -10.5,0.5 + parent: 9507 + - uid: 9830 + components: + - type: Transform + pos: -10.5,1.5 + parent: 9507 + - uid: 9831 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 9507 + - uid: 9832 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 9507 + - uid: 9833 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 9507 + - uid: 9834 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 9507 + - uid: 9835 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 9507 + - uid: 9836 + components: + - type: Transform + pos: -8.5,2.5 + parent: 9507 + - uid: 9837 + components: + - type: Transform + pos: -10.5,3.5 + parent: 9507 + - uid: 9838 + components: + - type: Transform + pos: -6.5,4.5 + parent: 9507 + - uid: 9839 + components: + - type: Transform + pos: -7.5,4.5 + parent: 9507 + - uid: 9840 + components: + - type: Transform + pos: -4.5,9.5 + parent: 9507 + - uid: 9841 + components: + - type: Transform + pos: -5.5,7.5 + parent: 9507 + - uid: 9842 + components: + - type: Transform + pos: -6.5,7.5 + parent: 9507 + - uid: 9843 + components: + - type: Transform + pos: -7.5,7.5 + parent: 9507 + - uid: 9844 + components: + - type: Transform + pos: -6.5,8.5 + parent: 9507 + - uid: 9845 + components: + - type: Transform + pos: -6.5,6.5 + parent: 9507 + - uid: 9846 + components: + - type: Transform + pos: -8.5,7.5 + parent: 9507 + - uid: 9847 + components: + - type: Transform + pos: -9.5,6.5 + parent: 9507 + - uid: 9848 + components: + - type: Transform + pos: -9.5,7.5 + parent: 9507 + - uid: 9849 + components: + - type: Transform + pos: -9.5,8.5 + parent: 9507 + - uid: 9850 + components: + - type: Transform + pos: -9.5,9.5 + parent: 9507 + - uid: 9851 + components: + - type: Transform + pos: -9.5,10.5 + parent: 9507 + - uid: 9852 + components: + - type: Transform + pos: -9.5,11.5 + parent: 9507 + - uid: 9853 + components: + - type: Transform + pos: -10.5,10.5 + parent: 9507 + - uid: 9854 + components: + - type: Transform + pos: -10.5,11.5 + parent: 9507 + - uid: 9855 + components: + - type: Transform + pos: -10.5,8.5 + parent: 9507 + - uid: 9856 + components: + - type: Transform + pos: -10.5,7.5 + parent: 9507 + - uid: 9857 + components: + - type: Transform + pos: 2.5,9.5 + parent: 9507 + - uid: 9858 + components: + - type: Transform + pos: 0.5,11.5 + parent: 9507 + - uid: 9859 + components: + - type: Transform + pos: 0.5,9.5 + parent: 9507 + - uid: 9860 + components: + - type: Transform + pos: -0.5,9.5 + parent: 9507 + - uid: 9861 + components: + - type: Transform + pos: -1.5,8.5 + parent: 9507 + - uid: 9862 + components: + - type: Transform + pos: -2.5,10.5 + parent: 9507 + - uid: 9863 + components: + - type: Transform + pos: 1.5,11.5 + parent: 9507 + - uid: 9864 + components: + - type: Transform + pos: 1.5,10.5 + parent: 9507 + - uid: 9865 + components: + - type: Transform + pos: 4.5,11.5 + parent: 9507 + - uid: 9866 + components: + - type: Transform + pos: 3.5,11.5 + parent: 9507 + - uid: 9867 + components: + - type: Transform + pos: 5.5,9.5 + parent: 9507 + - uid: 9868 + components: + - type: Transform + pos: 6.5,9.5 + parent: 9507 + - uid: 9869 + components: + - type: Transform + pos: 7.5,8.5 + parent: 9507 + - uid: 9870 + components: + - type: Transform + pos: 6.5,8.5 + parent: 9507 + - uid: 9871 + components: + - type: Transform + pos: 6.5,7.5 + parent: 9507 + - uid: 9872 + components: + - type: Transform + pos: 8.5,2.5 + parent: 9507 + - uid: 9873 + components: + - type: Transform + pos: 7.5,12.5 + parent: 9507 + - uid: 9874 + components: + - type: Transform + pos: 8.5,13.5 + parent: 9507 + - uid: 9875 + components: + - type: Transform + pos: 10.5,13.5 + parent: 9507 + - uid: 9876 + components: + - type: Transform + pos: 9.5,12.5 + parent: 9507 + - uid: 9877 + components: + - type: Transform + pos: 10.5,12.5 + parent: 9507 + - uid: 9878 + components: + - type: Transform + pos: 11.5,12.5 + parent: 9507 + - uid: 9879 + components: + - type: Transform + pos: 10.5,7.5 + parent: 9507 + - uid: 9880 + components: + - type: Transform + pos: 10.5,8.5 + parent: 9507 + - uid: 9881 + components: + - type: Transform + pos: 10.5,9.5 + parent: 9507 + - uid: 9882 + components: + - type: Transform + pos: 11.5,9.5 + parent: 9507 + - uid: 9883 + components: + - type: Transform + pos: 4.5,5.5 + parent: 9507 + - uid: 9884 + components: + - type: Transform + pos: 4.5,6.5 + parent: 9507 + - uid: 9885 + components: + - type: Transform + pos: 5.5,6.5 + parent: 9507 + - uid: 9886 + components: + - type: Transform + pos: 8.5,3.5 + parent: 9507 + - uid: 9887 + components: + - type: Transform + pos: 9.5,3.5 + parent: 9507 + - uid: 9888 + components: + - type: Transform + pos: 9.5,4.5 + parent: 9507 + - uid: 9889 + components: + - type: Transform + pos: 5.5,2.5 + parent: 9507 + - uid: 9890 + components: + - type: Transform + pos: 5.5,3.5 + parent: 9507 + - uid: 9891 + components: + - type: Transform + pos: 6.5,3.5 + parent: 9507 + - uid: 9892 + components: + - type: Transform + pos: 3.5,0.5 + parent: 9507 + - uid: 9893 + components: + - type: Transform + pos: 2.5,1.5 + parent: 9507 + - uid: 9894 + components: + - type: Transform + pos: 3.5,1.5 + parent: 9507 + - uid: 9895 + components: + - type: Transform + pos: 4.5,1.5 + parent: 9507 + - uid: 9896 + components: + - type: Transform + pos: 4.5,2.5 + parent: 9507 + - uid: 9897 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 9507 + - uid: 9898 + components: + - type: Transform + pos: 0.5,2.5 + parent: 9507 + - uid: 9899 + components: + - type: Transform + pos: 0.5,3.5 + parent: 9507 + - uid: 9900 + components: + - type: Transform + pos: 1.5,4.5 + parent: 9507 + - uid: 9901 + components: + - type: Transform + pos: 1.5,5.5 + parent: 9507 + - uid: 9902 + components: + - type: Transform + pos: 1.5,6.5 + parent: 9507 + - uid: 9903 + components: + - type: Transform + pos: 1.5,7.5 + parent: 9507 + - uid: 9904 + components: + - type: Transform + pos: 2.5,6.5 + parent: 9507 + - uid: 9905 + components: + - type: Transform + pos: 0.5,6.5 + parent: 9507 + - uid: 9906 + components: + - type: Transform + pos: -2.5,4.5 + parent: 9507 + - uid: 9907 + components: + - type: Transform + pos: -2.5,5.5 + parent: 9507 + - uid: 9908 + components: + - type: Transform + pos: -1.5,4.5 + parent: 9507 + - uid: 9909 + components: + - type: Transform + pos: -1.5,5.5 + parent: 9507 + - uid: 9910 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 9507 + - uid: 9911 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 9507 + - uid: 9912 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 9507 + - uid: 9913 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 9507 + - uid: 9914 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 9507 + - uid: 9915 + components: + - type: Transform + pos: 6.5,0.5 + parent: 9507 + - uid: 9916 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 9507 + - uid: 9917 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 9507 + - uid: 9918 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 9507 + - uid: 9919 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 9507 + - uid: 9920 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 9507 + - uid: 9921 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 9507 + - uid: 9922 + components: + - type: Transform + pos: 7.5,0.5 + parent: 9507 + - uid: 9923 + components: + - type: Transform + pos: 7.5,1.5 + parent: 9507 + - uid: 9924 + components: + - type: Transform + pos: 9.5,0.5 + parent: 9507 + - uid: 9925 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 9507 + - uid: 9926 + components: + - type: Transform + pos: 10.5,0.5 + parent: 9507 + - uid: 9927 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 9507 + - uid: 9928 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 9507 + - uid: 9929 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 9507 + - uid: 9930 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 9507 + - uid: 9931 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 9507 + - uid: 9932 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 9507 + - uid: 9933 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 9507 + - uid: 9934 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 9507 + - uid: 9935 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 9507 + - uid: 9936 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 9507 + - uid: 9937 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 9507 + - uid: 9938 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 9507 + - uid: 9939 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 9507 + - uid: 9940 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 9507 + - uid: 9941 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 9507 + - uid: 9942 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 9507 + - uid: 9943 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 9507 + - uid: 9944 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 9507 + - uid: 9945 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 9507 + - uid: 9946 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 9507 + - uid: 9947 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 9507 + - uid: 9948 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 9507 + - uid: 9949 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 9507 + - uid: 9950 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 9507 + - uid: 9951 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 9507 + - uid: 9952 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 9507 + - uid: 9953 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 9507 + - uid: 9954 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 9507 + - uid: 9955 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 9507 + - uid: 9956 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 9507 + - uid: 9957 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 9507 + - uid: 9958 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 9507 +- proto: TableReinforced + entities: + - uid: 9959 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 9507 + - uid: 9960 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 9507 +- proto: Torch + entities: + - uid: 9961 + components: + - type: Transform + pos: -6.414551,10.515025 + parent: 9507 +- proto: WallRockSand + entities: + - uid: 9962 + components: + - type: Transform + pos: -13.5,7.5 + parent: 9507 + - uid: 9963 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 9507 + - uid: 9964 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 9507 + - uid: 9965 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 9507 + - uid: 9966 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 9507 + - uid: 9967 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 9507 + - uid: 9968 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 9507 + - uid: 9969 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 9507 + - uid: 9970 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 9507 + - uid: 9971 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 9507 + - uid: 9972 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 9507 + - uid: 9973 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 9507 + - uid: 9974 + components: + - type: Transform + pos: -12.5,7.5 + parent: 9507 + - uid: 9975 + components: + - type: Transform + pos: -12.5,6.5 + parent: 9507 + - uid: 9976 + components: + - type: Transform + pos: -12.5,5.5 + parent: 9507 + - uid: 9977 + components: + - type: Transform + pos: -11.5,5.5 + parent: 9507 + - uid: 9978 + components: + - type: Transform + pos: -11.5,4.5 + parent: 9507 + - uid: 9979 + components: + - type: Transform + pos: -14.5,5.5 + parent: 9507 + - uid: 9980 + components: + - type: Transform + pos: -12.5,3.5 + parent: 9507 + - uid: 9981 + components: + - type: Transform + pos: -12.5,2.5 + parent: 9507 + - uid: 9982 + components: + - type: Transform + pos: -12.5,1.5 + parent: 9507 + - uid: 9983 + components: + - type: Transform + pos: -11.5,3.5 + parent: 9507 + - uid: 9984 + components: + - type: Transform + pos: -11.5,2.5 + parent: 9507 + - uid: 9985 + components: + - type: Transform + pos: -11.5,1.5 + parent: 9507 + - uid: 9986 + components: + - type: Transform + pos: -10.5,2.5 + parent: 9507 + - uid: 9987 + components: + - type: Transform + pos: -12.5,0.5 + parent: 9507 + - uid: 9988 + components: + - type: Transform + pos: -14.5,0.5 + parent: 9507 + - uid: 9989 + components: + - type: Transform + pos: -14.5,1.5 + parent: 9507 + - uid: 9990 + components: + - type: Transform + pos: -13.5,0.5 + parent: 9507 + - uid: 9991 + components: + - type: Transform + pos: -13.5,1.5 + parent: 9507 + - uid: 9992 + components: + - type: Transform + pos: -15.5,0.5 + parent: 9507 + - uid: 9993 + components: + - type: Transform + pos: -12.5,8.5 + parent: 9507 + - uid: 9994 + components: + - type: Transform + pos: -13.5,10.5 + parent: 9507 + - uid: 9995 + components: + - type: Transform + pos: -13.5,9.5 + parent: 9507 + - uid: 9996 + components: + - type: Transform + pos: -12.5,10.5 + parent: 9507 + - uid: 9997 + components: + - type: Transform + pos: -12.5,9.5 + parent: 9507 + - uid: 9998 + components: + - type: Transform + pos: -12.5,11.5 + parent: 9507 + - uid: 9999 + components: + - type: Transform + pos: -12.5,12.5 + parent: 9507 + - uid: 10000 + components: + - type: Transform + pos: -11.5,12.5 + parent: 9507 + - uid: 10001 + components: + - type: Transform + pos: -11.5,13.5 + parent: 9507 + - uid: 10002 + components: + - type: Transform + pos: -13.5,14.5 + parent: 9507 + - uid: 10003 + components: + - type: Transform + pos: -4.5,10.5 + parent: 9507 + - uid: 10004 + components: + - type: Transform + pos: -5.5,11.5 + parent: 9507 + - uid: 10005 + components: + - type: Transform + pos: -4.5,12.5 + parent: 9507 + - uid: 10006 + components: + - type: Transform + pos: -5.5,8.5 + parent: 9507 + - uid: 10007 + components: + - type: Transform + pos: -10.5,13.5 + parent: 9507 + - uid: 10008 + components: + - type: Transform + pos: -9.5,13.5 + parent: 9507 + - uid: 10009 + components: + - type: Transform + pos: -8.5,13.5 + parent: 9507 + - uid: 10010 + components: + - type: Transform + pos: -7.5,13.5 + parent: 9507 + - uid: 10011 + components: + - type: Transform + pos: -6.5,13.5 + parent: 9507 + - uid: 10012 + components: + - type: Transform + pos: -5.5,13.5 + parent: 9507 + - uid: 10013 + components: + - type: Transform + pos: -4.5,13.5 + parent: 9507 + - uid: 10014 + components: + - type: Transform + pos: -3.5,10.5 + parent: 9507 + - uid: 10015 + components: + - type: Transform + pos: -3.5,11.5 + parent: 9507 + - uid: 10016 + components: + - type: Transform + pos: -3.5,12.5 + parent: 9507 + - uid: 10017 + components: + - type: Transform + pos: -3.5,13.5 + parent: 9507 + - uid: 10018 + components: + - type: Transform + pos: -2.5,11.5 + parent: 9507 + - uid: 10019 + components: + - type: Transform + pos: -2.5,12.5 + parent: 9507 + - uid: 10020 + components: + - type: Transform + pos: -5.5,14.5 + parent: 9507 + - uid: 10021 + components: + - type: Transform + pos: -4.5,14.5 + parent: 9507 + - uid: 10022 + components: + - type: Transform + pos: -7.5,14.5 + parent: 9507 + - uid: 10023 + components: + - type: Transform + pos: -8.5,14.5 + parent: 9507 + - uid: 10024 + components: + - type: Transform + pos: -9.5,14.5 + parent: 9507 + - uid: 10025 + components: + - type: Transform + pos: 2.5,10.5 + parent: 9507 + - uid: 10026 + components: + - type: Transform + pos: 0.5,15.5 + parent: 9507 + - uid: 10027 + components: + - type: Transform + pos: 3.5,13.5 + parent: 9507 + - uid: 10028 + components: + - type: Transform + pos: 1.5,13.5 + parent: 9507 + - uid: 10029 + components: + - type: Transform + pos: 2.5,13.5 + parent: 9507 + - uid: 10030 + components: + - type: Transform + pos: 0.5,10.5 + parent: 9507 + - uid: 10031 + components: + - type: Transform + pos: -0.5,10.5 + parent: 9507 + - uid: 10032 + components: + - type: Transform + pos: -0.5,11.5 + parent: 9507 + - uid: 10033 + components: + - type: Transform + pos: -0.5,12.5 + parent: 9507 + - uid: 10034 + components: + - type: Transform + pos: 0.5,12.5 + parent: 9507 + - uid: 10035 + components: + - type: Transform + pos: 1.5,12.5 + parent: 9507 + - uid: 10036 + components: + - type: Transform + pos: 3.5,10.5 + parent: 9507 + - uid: 10037 + components: + - type: Transform + pos: 4.5,10.5 + parent: 9507 + - uid: 10038 + components: + - type: Transform + pos: 2.5,12.5 + parent: 9507 + - uid: 10039 + components: + - type: Transform + pos: 3.5,12.5 + parent: 9507 + - uid: 10040 + components: + - type: Transform + pos: 4.5,12.5 + parent: 9507 + - uid: 10041 + components: + - type: Transform + pos: 5.5,12.5 + parent: 9507 + - uid: 10042 + components: + - type: Transform + pos: 5.5,13.5 + parent: 9507 + - uid: 10043 + components: + - type: Transform + pos: 6.5,12.5 + parent: 9507 + - uid: 10044 + components: + - type: Transform + pos: 7.5,13.5 + parent: 9507 + - uid: 10045 + components: + - type: Transform + pos: 6.5,14.5 + parent: 9507 + - uid: 10046 + components: + - type: Transform + pos: 7.5,14.5 + parent: 9507 + - uid: 10047 + components: + - type: Transform + pos: 8.5,14.5 + parent: 9507 + - uid: 10048 + components: + - type: Transform + pos: 9.5,13.5 + parent: 9507 + - uid: 10049 + components: + - type: Transform + pos: 12.5,11.5 + parent: 9507 + - uid: 10050 + components: + - type: Transform + pos: 12.5,12.5 + parent: 9507 + - uid: 10051 + components: + - type: Transform + pos: 12.5,13.5 + parent: 9507 + - uid: 10052 + components: + - type: Transform + pos: 11.5,13.5 + parent: 9507 + - uid: 10053 + components: + - type: Transform + pos: 11.5,14.5 + parent: 9507 + - uid: 10054 + components: + - type: Transform + pos: 13.5,6.5 + parent: 9507 + - uid: 10055 + components: + - type: Transform + pos: 14.5,11.5 + parent: 9507 + - uid: 10056 + components: + - type: Transform + pos: 15.5,11.5 + parent: 9507 + - uid: 10057 + components: + - type: Transform + pos: 11.5,10.5 + parent: 9507 + - uid: 10058 + components: + - type: Transform + pos: 10.5,1.5 + parent: 9507 + - uid: 10059 + components: + - type: Transform + pos: 9.5,2.5 + parent: 9507 + - uid: 10060 + components: + - type: Transform + pos: 10.5,2.5 + parent: 9507 + - uid: 10061 + components: + - type: Transform + pos: 11.5,2.5 + parent: 9507 + - uid: 10062 + components: + - type: Transform + pos: 10.5,3.5 + parent: 9507 + - uid: 10063 + components: + - type: Transform + pos: 10.5,4.5 + parent: 9507 + - uid: 10064 + components: + - type: Transform + pos: 10.5,5.5 + parent: 9507 + - uid: 10065 + components: + - type: Transform + pos: 11.5,4.5 + parent: 9507 + - uid: 10066 + components: + - type: Transform + pos: 11.5,5.5 + parent: 9507 + - uid: 10067 + components: + - type: Transform + pos: 11.5,6.5 + parent: 9507 + - uid: 10068 + components: + - type: Transform + pos: 11.5,7.5 + parent: 9507 + - uid: 10069 + components: + - type: Transform + pos: 9.5,6.5 + parent: 9507 + - uid: 10070 + components: + - type: Transform + pos: 7.5,6.5 + parent: 9507 + - uid: 10071 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 9507 + - uid: 10072 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 9507 + - uid: 10073 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 9507 + - uid: 10074 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 9507 + - uid: 10075 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 9507 + - uid: 10076 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 9507 + - uid: 10077 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 9507 + - uid: 10078 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 9507 + - uid: 10079 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 9507 + - uid: 10080 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 9507 + - uid: 10081 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 9507 + - uid: 10082 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 9507 + - uid: 10083 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 9507 + - uid: 10084 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 9507 + - uid: 10085 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 9507 + - uid: 10086 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 9507 + - uid: 10087 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 9507 + - uid: 10088 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 9507 + - uid: 10089 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 9507 + - uid: 10090 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 9507 + - uid: 10091 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 9507 + - uid: 10092 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 9507 + - uid: 10093 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 9507 + - uid: 10094 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 9507 + - uid: 10095 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 9507 + - uid: 10096 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 9507 + - uid: 10097 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 9507 + - uid: 10098 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 9507 + - uid: 10099 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 9507 + - uid: 10100 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 9507 + - uid: 10101 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 9507 + - uid: 10102 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 9507 + - uid: 10103 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 9507 + - uid: 10104 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 9507 + - uid: 10105 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 9507 + - uid: 10106 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 9507 + - uid: 10107 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 9507 + - uid: 10108 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 9507 + - uid: 10109 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 9507 + - uid: 10110 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 9507 + - uid: 10111 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 9507 + - uid: 10112 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 9507 + - uid: 10113 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 9507 + - uid: 10114 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 9507 + - uid: 10115 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 9507 + - uid: 10116 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 9507 + - uid: 10117 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 9507 + - uid: 10118 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 9507 + - uid: 10119 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 9507 + - uid: 10120 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 9507 + - uid: 10121 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 9507 + - uid: 10122 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 9507 + - uid: 10123 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 9507 + - uid: 10124 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 9507 + - uid: 10125 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 9507 + - uid: 10126 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 9507 + - uid: 10127 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 9507 + - uid: 10128 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 9507 + - uid: 10129 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 9507 + - uid: 10130 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 9507 + - uid: 10131 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 9507 + - uid: 10132 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 9507 + - uid: 10133 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 9507 + - uid: 10134 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 9507 + - uid: 10135 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 9507 + - uid: 10136 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 9507 + - uid: 10137 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 9507 + - uid: 10138 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 9507 + - uid: 10139 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 9507 + - uid: 10140 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 9507 + - uid: 10141 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 9507 + - uid: 10142 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 9507 +- proto: WallSandstone + entities: + - uid: 10143 + components: + - type: Transform + pos: -4.5,1.5 + parent: 9507 + - uid: 10144 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 9507 + - uid: 10145 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 9507 + - uid: 10146 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 9507 + - uid: 10147 + components: + - type: Transform + pos: -10.5,12.5 + parent: 9507 + - uid: 10148 + components: + - type: Transform + pos: -9.5,5.5 + parent: 9507 + - uid: 10149 + components: + - type: Transform + pos: -7.5,5.5 + parent: 9507 + - uid: 10150 + components: + - type: Transform + pos: -6.5,5.5 + parent: 9507 + - uid: 10151 + components: + - type: Transform + pos: -10.5,9.5 + parent: 9507 + - uid: 10152 + components: + - type: Transform + pos: -8.5,6.5 + parent: 9507 + - uid: 10153 + components: + - type: Transform + pos: -10.5,6.5 + parent: 9507 + - uid: 10154 + components: + - type: Transform + pos: -11.5,6.5 + parent: 9507 + - uid: 10155 + components: + - type: Transform + pos: -11.5,7.5 + parent: 9507 + - uid: 10156 + components: + - type: Transform + pos: -11.5,8.5 + parent: 9507 + - uid: 10157 + components: + - type: Transform + pos: -11.5,9.5 + parent: 9507 + - uid: 10158 + components: + - type: Transform + pos: -11.5,10.5 + parent: 9507 + - uid: 10159 + components: + - type: Transform + pos: -11.5,11.5 + parent: 9507 + - uid: 10160 + components: + - type: Transform + pos: -7.5,6.5 + parent: 9507 + - uid: 10161 + components: + - type: Transform + pos: -9.5,12.5 + parent: 9507 + - uid: 10162 + components: + - type: Transform + pos: -8.5,12.5 + parent: 9507 + - uid: 10163 + components: + - type: Transform + pos: -7.5,12.5 + parent: 9507 + - uid: 10164 + components: + - type: Transform + pos: -6.5,12.5 + parent: 9507 + - uid: 10165 + components: + - type: Transform + pos: -5.5,12.5 + parent: 9507 + - uid: 10166 + components: + - type: Transform + pos: -4.5,11.5 + parent: 9507 + - uid: 10167 + components: + - type: Transform + pos: -5.5,6.5 + parent: 9507 + - uid: 10168 + components: + - type: Transform + pos: -4.5,7.5 + parent: 9507 + - uid: 10169 + components: + - type: Transform + pos: -4.5,8.5 + parent: 9507 + - uid: 10170 + components: + - type: Transform + pos: -1.5,11.5 + parent: 9507 + - uid: 10171 + components: + - type: Transform + pos: 9.5,14.5 + parent: 9507 + - uid: 10172 + components: + - type: Transform + pos: 5.5,10.5 + parent: 9507 + - uid: 10173 + components: + - type: Transform + pos: 5.5,11.5 + parent: 9507 + - uid: 10174 + components: + - type: Transform + pos: 6.5,13.5 + parent: 9507 + - uid: 10175 + components: + - type: Transform + pos: 10.5,14.5 + parent: 9507 + - uid: 10176 + components: + - type: Transform + pos: 11.5,11.5 + parent: 9507 + - uid: 10177 + components: + - type: Transform + pos: 11.5,8.5 + parent: 9507 + - uid: 10178 + components: + - type: Transform + pos: 12.5,9.5 + parent: 9507 + - uid: 10179 + components: + - type: Transform + pos: 10.5,6.5 + parent: 9507 + - uid: 10180 + components: + - type: Transform + pos: 7.5,7.5 + parent: 9507 + - uid: 10181 + components: + - type: Transform + pos: 5.5,5.5 + parent: 9507 + - uid: 10182 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 9507 + - uid: 10183 + components: + - type: Transform + pos: 0.5,4.5 + parent: 9507 + - uid: 10184 + components: + - type: Transform + pos: 2.5,7.5 + parent: 9507 + - uid: 10185 + components: + - type: Transform + pos: -2.5,6.5 + parent: 9507 + - uid: 10186 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 9507 + - uid: 10187 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 9507 + - uid: 10188 + components: + - type: Transform + pos: 9.5,1.5 + parent: 9507 + - uid: 10189 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 9507 + - uid: 10190 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 9507 + - uid: 10191 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 9507 + - uid: 10192 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 9507 + - uid: 10193 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 9507 + - uid: 10194 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 9507 + - uid: 10195 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 9507 + - uid: 10196 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 9507 + - uid: 10197 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 9507 + - uid: 10198 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 9507 + - uid: 10199 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 9507 + - uid: 10200 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 9507 + - uid: 10201 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 9507 + - uid: 10202 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 9507 + - uid: 10203 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 9507 + - uid: 10204 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 9507 + - uid: 10205 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 9507 + - uid: 10206 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 9507 + - uid: 10207 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 9507 + - uid: 10208 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 9507 +- proto: WebBed + entities: + - uid: 10210 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 9507 +... diff --git a/Resources/Maps/_Wega/Lavaland/temple.yml b/Resources/Maps/_Wega/Lavaland/temple.yml new file mode 100644 index 00000000000..8e882538631 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/temple.yml @@ -0,0 +1,2630 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/15/2026 19:57:08 + entityCount: 447 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 4: Space + 3: FloorBasalt + 0: FloorDarkHerringbone + 2: FloorDarkPavement + 1: FloorDarkPavementVertical +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.48958334,-0.45833334 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: BAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + -1,1: + 0: 65535 + 0,2: + 0: 65535 + -1,2: + 0: 61439 + 0,3: + 0: 61443 + -1,3: + 0: 61704 + 0,4: + 0: 3270 + 1,0: + 0: 39321 + 1,1: + 0: 39321 + 1,2: + 0: 35225 + 1,3: + 0: 32712 + 1,-1: + 0: 39321 + 1,4: + 0: 803 + 2,0: + 0: 28945 + 2,1: + 0: 311 + 2,2: + 0: 4369 + -3,1: + 0: 136 + -2,1: + 0: 9011 + -3,2: + 0: 2048 + -2,2: + 0: 13107 + -2,0: + 0: 13090 + -2,3: + 0: 52851 + -2,-1: + 0: 13107 + -1,-1: + 0: 65535 + -1,4: + 0: 19 + 0,-4: + 0: 4095 + 0,-5: + 0: 65399 + -1,-4: + 0: 8191 + 0,-3: + 0: 65522 + -1,-3: + 0: 61160 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + 1,-4: + 0: 63283 + 1,-2: + 0: 39321 + 1,-5: + 0: 4096 + 1,-3: + 0: 35020 + 2,-3: + 0: 4096 + 2,-2: + 0: 4113 + 2,-1: + 0: 307 + -3,-3: + 0: 32768 + -2,-3: + 0: 13158 + -3,-1: + 0: 2176 + -2,-2: + 0: 12851 + -2,-4: + 0: 52360 + -1,-5: + 0: 65228 + -1,-6: + 0: 32768 + 0,-6: + 0: 12288 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AltarSatana + entities: + - uid: 236 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: BibleNecronomicon + entities: + - uid: 414 + components: + - type: Transform + pos: 0.59757555,10.729841 + parent: 1 +- proto: BloodCultStructurePylon + entities: + - uid: 333 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 334 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 335 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 336 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 337 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 338 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 339 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 340 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BookNarsieLegend + entities: + - uid: 355 + components: + - type: Transform + pos: 0.41655996,10.628419 + parent: 1 +- proto: CandleBlackInfinite + entities: + - uid: 341 + components: + - type: Transform + pos: -0.78010845,10.796236 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 1.771975,10.785819 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -1.806636,3.7896378 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 2.7937238,3.7583878 + parent: 1 +- proto: CandleRedInfinite + entities: + - uid: 356 + components: + - type: Transform + pos: -1.1704627,-1.1665791 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 2.1732874,-1.1769958 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -1.2746294,-7.2024183 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 2.2357874,-7.181585 + parent: 1 +- proto: Carpet + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 +- proto: ChairCursed + entities: + - uid: 184 + components: + - type: Transform + pos: 0.5281794,6.482944 + parent: 1 +- proto: ChurchBell + entities: + - uid: 233 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 353 + components: + - type: Transform + pos: -0.28010848,10.79443 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 1.3553083,10.815263 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -1.4555374,-7.7590814 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 2.534046,-7.7382483 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -1.4659541,-9.061165 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 2.565296,-9.081999 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -1.4555374,-10.102832 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 2.5548792,-10.123665 + parent: 1 +- proto: ClothingMaskJackal + entities: + - uid: 401 + components: + - type: Transform + pos: -0.70903397,10.395655 + parent: 1 +- proto: ClothingMaskRaven + entities: + - uid: 402 + components: + - type: Transform + pos: 1.7492994,10.374822 + parent: 1 +- proto: ClothingOuterRobesCult + entities: + - uid: 349 + components: + - type: Transform + pos: -0.28010848,10.596513 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 1.3448917,10.60693 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -1.4659541,-9.248665 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 2.5757127,-9.269499 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 2.534046,-7.9361644 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -1.4451207,-7.9257483 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -1.4451207,-10.311165 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 2.5548792,-10.321582 + parent: 1 +- proto: ClothingShoesCult + entities: + - uid: 351 + components: + - type: Transform + pos: -0.30094174,10.315263 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 1.3136417,10.35693 + parent: 1 +- proto: CombatKnife + entities: + - uid: 406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.4833775,-1.4382012 + parent: 1 +- proto: DrinkJarWhat + entities: + - uid: 415 + components: + - type: Transform + pos: 3.7225757,-7.3019304 + parent: 1 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 416 + components: + - type: Transform + pos: -2.7253413,-7.2810974 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 97 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 +- proto: FoodBreadJellySlice + entities: + - uid: 412 + components: + - type: Transform + pos: -1.7440716,-7.3519263 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.7871785,-7.3623433 + parent: 1 +- proto: FoodCakeBrain + entities: + - uid: 410 + components: + - type: Transform + pos: -2.0253217,-1.3147343 + parent: 1 +- proto: FoodJellyAmanita + entities: + - uid: 411 + components: + - type: Transform + pos: 2.9538453,-1.3147343 + parent: 1 +- proto: FoodSoupTomatoBlood + entities: + - uid: 367 + components: + - type: Transform + pos: 2.4641972,3.6333878 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -1.4316361,3.6125546 + parent: 1 +- proto: GoldRing + entities: + - uid: 447 + components: + - type: Transform + pos: -1.1354166,10.444935 + parent: 1 +- proto: GoldRingDiamond + entities: + - uid: 446 + components: + - type: Transform + pos: 2.3958333,10.444935 + parent: 1 +- proto: IngotGold1 + entities: + - uid: 449 + components: + - type: Transform + pos: 2.3020833,10.663685 + parent: 1 + - type: Stack + count: 5 + - uid: 450 + components: + - type: Transform + pos: -1.5416666,10.642852 + parent: 1 + - type: Stack + count: 5 +- proto: IngotSilver1 + entities: + - uid: 441 + components: + - type: Transform + pos: -1.28125,10.517852 + parent: 1 + - type: Stack + count: 5 + - uid: 448 + components: + - type: Transform + pos: 2.625,10.569935 + parent: 1 + - type: Stack + count: 5 +- proto: KitchenKnife + entities: + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4020393,-1.4902844 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 403 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: LootSpawnerMaterialsSurplus + entities: + - uid: 451 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 +- proto: Machete + entities: + - uid: 404 + components: + - type: Transform + pos: -1.5354606,-1.3923677 + parent: 1 +- proto: MiningWindow + entities: + - uid: 246 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 +- proto: OrganHumanHeart + entities: + - uid: 348 + components: + - type: Transform + pos: 0.8969749,10.398597 + parent: 1 +- proto: RailingCorner + entities: + - uid: 238 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 +- proto: SilverDoor + entities: + - uid: 360 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: SilverRing + entities: + - uid: 445 + components: + - type: Transform + pos: 2.0833333,10.736602 + parent: 1 +- proto: SilverRingDiamond + entities: + - uid: 444 + components: + - type: Transform + pos: -1.4791666,10.559518 + parent: 1 +- proto: StairStageDark + entities: + - uid: 175 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 +- proto: SurvivalKnife + entities: + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.3291228,-7.4671426 + parent: 1 +- proto: TableStone + entities: + - uid: 235 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 +- proto: ThrowingKnife + entities: + - uid: 405 + components: + - type: Transform + pos: 2.3603725,-1.5069512 + parent: 1 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.2542107,-7.5088096 + parent: 1 +- proto: TreasureCoinDiamond + entities: + - uid: 452 + components: + - type: Transform + pos: 0.40063152,10.722128 + parent: 1 +- proto: TreasureCoinGold + entities: + - uid: 430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3541666,-1.5263778 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.7604167,-1.6201278 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -2.5208335,-1.297211 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 2.4583333,-1.2867944 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.4270833,-1.2242944 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 3.7291667,-1.4117944 + parent: 1 +- proto: TreasureCoinSilver + entities: + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4895834,-1.2763778 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.2604167,-1.484711 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.75,-1.203461 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.6666667,3.6904576 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.28125,3.7008743 + parent: 1 +- proto: WallBasaltCobblebrick + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 366 + components: + - type: MetaData + name: blood cooler + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: SolutionContainerManager + solutions: + tank: + temperature: 293.15 + canReact: True + maxVol: 500 + name: null + reagents: + - data: [] + ReagentId: Blood + Quantity: 500 +- proto: WeaponBloodDagger + entities: + - uid: 347 + components: + - type: Transform + pos: 0.5503667,10.579231 + parent: 1 +- proto: WoodenBench + entities: + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/winterreserve.yml b/Resources/Maps/_Wega/Lavaland/winterreserve.yml new file mode 100644 index 00000000000..3894010ea9c --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/winterreserve.yml @@ -0,0 +1,5541 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 14:16:04 + entityCount: 962 +maps: [] +grids: +- 10579 +orphans: +- 10579 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 10579 + components: + - type: MetaData + name: Зимний Заповедник + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: JQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABEAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAARAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAoAAAAAAAAKAAAAAAAAFgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAMAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAACgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAKAAAAAAAAFgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABYAAAAAAAAJAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAJAAAAAAAACQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAACQAAAAAAAAkAAAAAAAAWAAAAAAAAFgAAAAAAAAoAAAAAAAAWAAAAAAAAFgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAkAAAAAAAAJAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAlAAAAAAAAJQAAAAAAAAMAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAJQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAwAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJQAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAlAAAAAAAAJQAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACUAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAJQAAAAAAACUAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAlAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACUAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJQAAAAAAACUAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAlAAAAAAAAJQAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAACUAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAACYAAAAAAAAmAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAAwAAAAAAAAMAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAJQAAAAAAAAMAAAAAAAAGAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAASAAAAAAAAEgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAASAAAAAAAAEgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAMAAAAAAAADAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAAwAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAmAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAAwAAAAAAACYAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABEAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAARAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAASAAAAAAAAAwAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAARAAAAAAAAEgAAAAAAABIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAEQAAAAAAABIAAAAAAAADAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA8AAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJQAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAABEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: EgAAAAAAABEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAARAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 0: -4.095978,11.772482 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 3: -4.19841,-5.4021115 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 1: -3.058403,7.8581686 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 6: 12.369408,-0.7743938 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 7: 12.787224,10.721489 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 4: -0.37641907,-0.35049057 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 2: -6.9456635,0.9363307 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 5: 13.59021,-7.209751 + - node: + color: '#A723239B' + id: HalfTileOverlayGreyscale + decals: + 44: 8,9 + - node: + color: '#A723239B' + id: HalfTileOverlayGreyscale270 + decals: + 42: 9,10 + - node: + color: '#A723239B' + id: HalfTileOverlayGreyscale90 + decals: + 43: 7,10 + - node: + color: '#A723239B' + id: QuarterTileOverlayGreyscale + decals: + 46: 9,9 + - node: + color: '#A723239B' + id: QuarterTileOverlayGreyscale90 + decals: + 45: 7,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 40: 6,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 41: 10,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 36: 6,9 + 37: 6,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 33: 7,8 + 34: 8,8 + 35: 9,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 38: 10,9 + 39: 10,10 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 23: 12.096397,-7.8615212 + 27: -4.9188156,-5.3910794 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 8: 12.93071,5.069086 + 24: 9.452347,3.0025005 + 30: -9.179939,7.171431 + - node: + color: '#FFFFFFFF' + id: bushsnowa3 + decals: + 10: 12.784569,4.6309166 + 11: 11.828331,0.50051534 + 28: -7.1236267,-3.1317313 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 12: 12.851295,0.70499384 + 31: -4.9711685,8.997137 + - node: + color: '#FFFFFFFF' + id: bushsnowb2 + decals: + 9: 13.179138,4.7915783 + 22: 11.336479,-8.650227 + 25: 10.388191,-6.369658 + 26: -5.5033646,-6.8516445 + 32: -2.7790985,7.127614 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 29: -1.7311478,0.07507849 + - node: + color: '#FFFFFFFF' + id: grasssnow03 + decals: + 19: -2.0444717,1.0707941 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 14: 13.508911,-4.8936863 + - node: + color: '#FFFFFFFF' + id: grasssnow07 + decals: + 15: 10.513092,-9.027084 + 16: -7.008484,-9.071813 + 21: -3.9512177,10.237146 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 17: -4.3049393,-7.9033604 + - node: + color: '#FFFFFFFF' + id: grasssnow09 + decals: + 18: -6.0001373,-5.1282873 + - node: + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 13: 11.404526,-1.0085845 + 20: -8.9637375,5.0539975 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + 1: 30464 + 0,-1: + 0: 65535 + -1,0: + 0: 30591 + 0,1: + 1: 4080 + 0,2: + 1: 3003 + 0,3: + 1: 255 + -1,3: + 1: 140 + 0: 1 + 1,0: + 0: 15 + 1: 65376 + 1,2: + 1: 4095 + 1,3: + 1: 127 + 1,-1: + 0: 65535 + 1,1: + 1: 61166 + 2,0: + 0: 61167 + 2,1: + 1: 65280 + 0: 14 + 2,2: + 1: 4095 + 2,3: + 1: 31 + 2,-1: + 0: 65535 + 3,0: + 0: 30583 + 1: 8 + 3,1: + 0: 61159 + 3,-1: + 0: 30583 + 3,2: + 0: 9966 + 4,0: + 1: 13107 + 4,1: + 0: 4368 + -3,0: + 1: 52430 + -3,-1: + 1: 52416 + -3,1: + 0: 34944 + -2,0: + 1: 1 + 0: 61166 + -2,1: + 0: 65534 + -2,2: + 0: 52991 + -2,-1: + 0: 61164 + -1,1: + 0: 30583 + -1,2: + 0: 6007 + -1,-1: + 0: 65535 + 0,-4: + 1: 63488 + 0,-3: + 1: 143 + 0: 65280 + -1,-3: + 0: 65399 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + 1,-4: + 1: 61696 + 1,-3: + 1: 31 + 0: 65280 + 1,-2: + 0: 65535 + 2,-3: + 0: 65518 + 2,-2: + 0: 65535 + 2,-4: + 2: 1024 + 3,-3: + 0: 63280 + 3,-2: + 0: 65535 + 4,-2: + 0: 4368 + 4,-1: + 1: 13104 + -3,-2: + 1: 34944 + -2,-3: + 0: 65216 + -2,-2: + 1: 4880 + 0: 52428 + -1,-4: + 2: 512 + uniqueMixes: + - volume: 2500 + temperature: 235 + moles: + Oxygen: 27.225372 + Nitrogen: 102.419266 + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockFreezer + entities: + - uid: 10580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 10579 + - uid: 10581 + components: + - type: Transform + pos: 15.5,0.5 + parent: 10579 +- proto: AirlockGlass + entities: + - uid: 10582 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 10579 + - uid: 10583 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 10579 + - uid: 10584 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 10579 + - uid: 10585 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 10579 + - uid: 10586 + components: + - type: Transform + pos: 6.5,1.5 + parent: 10579 + - uid: 10587 + components: + - type: Transform + pos: 5.5,1.5 + parent: 10579 +- proto: AirlockHatch + entities: + - uid: 10588 + components: + - type: Transform + pos: -10.5,0.5 + parent: 10579 + - uid: 10589 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 10579 + - uid: 10590 + components: + - type: Transform + pos: 7.5,12.5 + parent: 10579 +- proto: AlwaysPoweredWallLight + entities: + - uid: 10591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 10579 + - uid: 10592 + components: + - type: Transform + pos: 2.5,3.5 + parent: 10579 + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 10579 + - uid: 10594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 10579 + - uid: 10595 + components: + - type: Transform + pos: 10.5,10.5 + parent: 10579 + - uid: 10596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 10579 + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 10579 + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 10579 + - uid: 10599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 10579 + - uid: 10600 + components: + - type: Transform + pos: -5.5,11.5 + parent: 10579 + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 10579 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 10579 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 10579 + - uid: 10604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 10579 + - uid: 10605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 10579 + - uid: 10606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 10579 + - uid: 10607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 10579 + - uid: 10608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 10579 +- proto: APCBasic + entities: + - uid: 1 + components: + - type: Transform + pos: 4.5,14.5 + parent: 10579 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 10609 + components: + - type: Transform + pos: -7.5,0.5 + parent: 10579 + - uid: 10610 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 10579 + - uid: 10611 + components: + - type: Transform + pos: 15.5,0.5 + parent: 10579 + - uid: 10612 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 10579 + - uid: 10613 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 10579 + - uid: 10614 + components: + - type: Transform + pos: 5.5,1.5 + parent: 10579 + - uid: 10615 + components: + - type: Transform + pos: 6.5,1.5 + parent: 10579 +- proto: AtmosFixBlockerMarker + entities: + - uid: 10705 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 10579 + - uid: 10728 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 10579 +- proto: AtmosFixFreezerMarker + entities: + - uid: 10736 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 10579 + - uid: 10737 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 10579 + - uid: 10738 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 10579 + - uid: 10739 + components: + - type: Transform + pos: -6.5,0.5 + parent: 10579 + - uid: 10740 + components: + - type: Transform + pos: -6.5,1.5 + parent: 10579 + - uid: 10741 + components: + - type: Transform + pos: -6.5,2.5 + parent: 10579 + - uid: 10742 + components: + - type: Transform + pos: -6.5,3.5 + parent: 10579 + - uid: 10743 + components: + - type: Transform + pos: -6.5,4.5 + parent: 10579 + - uid: 10744 + components: + - type: Transform + pos: -6.5,5.5 + parent: 10579 + - uid: 10745 + components: + - type: Transform + pos: -6.5,6.5 + parent: 10579 + - uid: 10746 + components: + - type: Transform + pos: -6.5,7.5 + parent: 10579 + - uid: 10747 + components: + - type: Transform + pos: -6.5,8.5 + parent: 10579 + - uid: 10748 + components: + - type: Transform + pos: -6.5,9.5 + parent: 10579 + - uid: 10749 + components: + - type: Transform + pos: -6.5,10.5 + parent: 10579 + - uid: 10750 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 10579 + - uid: 10751 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 10579 + - uid: 10752 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 10579 + - uid: 10753 + components: + - type: Transform + pos: -5.5,0.5 + parent: 10579 + - uid: 10754 + components: + - type: Transform + pos: -5.5,1.5 + parent: 10579 + - uid: 10755 + components: + - type: Transform + pos: -5.5,2.5 + parent: 10579 + - uid: 10756 + components: + - type: Transform + pos: -5.5,3.5 + parent: 10579 + - uid: 10757 + components: + - type: Transform + pos: -5.5,4.5 + parent: 10579 + - uid: 10758 + components: + - type: Transform + pos: -5.5,5.5 + parent: 10579 + - uid: 10759 + components: + - type: Transform + pos: -5.5,6.5 + parent: 10579 + - uid: 10760 + components: + - type: Transform + pos: -5.5,7.5 + parent: 10579 + - uid: 10761 + components: + - type: Transform + pos: -5.5,8.5 + parent: 10579 + - uid: 10762 + components: + - type: Transform + pos: -5.5,9.5 + parent: 10579 + - uid: 10763 + components: + - type: Transform + pos: -5.5,10.5 + parent: 10579 + - uid: 10764 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 10579 + - uid: 10765 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 10579 + - uid: 10766 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 10579 + - uid: 10767 + components: + - type: Transform + pos: -4.5,0.5 + parent: 10579 + - uid: 10768 + components: + - type: Transform + pos: -4.5,1.5 + parent: 10579 + - uid: 10769 + components: + - type: Transform + pos: -4.5,2.5 + parent: 10579 + - uid: 10770 + components: + - type: Transform + pos: -4.5,3.5 + parent: 10579 + - uid: 10771 + components: + - type: Transform + pos: -4.5,4.5 + parent: 10579 + - uid: 10772 + components: + - type: Transform + pos: -4.5,5.5 + parent: 10579 + - uid: 10773 + components: + - type: Transform + pos: -4.5,6.5 + parent: 10579 + - uid: 10774 + components: + - type: Transform + pos: -4.5,7.5 + parent: 10579 + - uid: 10775 + components: + - type: Transform + pos: -4.5,8.5 + parent: 10579 + - uid: 10776 + components: + - type: Transform + pos: -4.5,9.5 + parent: 10579 + - uid: 10777 + components: + - type: Transform + pos: -4.5,10.5 + parent: 10579 + - uid: 10778 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 10579 + - uid: 10779 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 10579 + - uid: 10780 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 10579 + - uid: 10781 + components: + - type: Transform + pos: -3.5,0.5 + parent: 10579 + - uid: 10782 + components: + - type: Transform + pos: -3.5,1.5 + parent: 10579 + - uid: 10783 + components: + - type: Transform + pos: -3.5,2.5 + parent: 10579 + - uid: 10784 + components: + - type: Transform + pos: -3.5,3.5 + parent: 10579 + - uid: 10785 + components: + - type: Transform + pos: -3.5,4.5 + parent: 10579 + - uid: 10786 + components: + - type: Transform + pos: -3.5,5.5 + parent: 10579 + - uid: 10787 + components: + - type: Transform + pos: -3.5,6.5 + parent: 10579 + - uid: 10788 + components: + - type: Transform + pos: -3.5,7.5 + parent: 10579 + - uid: 10789 + components: + - type: Transform + pos: -3.5,8.5 + parent: 10579 + - uid: 10790 + components: + - type: Transform + pos: -3.5,9.5 + parent: 10579 + - uid: 10791 + components: + - type: Transform + pos: -3.5,10.5 + parent: 10579 + - uid: 10792 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 10579 + - uid: 10793 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 10579 + - uid: 10794 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 10579 + - uid: 10795 + components: + - type: Transform + pos: -2.5,0.5 + parent: 10579 + - uid: 10796 + components: + - type: Transform + pos: -2.5,1.5 + parent: 10579 + - uid: 10797 + components: + - type: Transform + pos: -2.5,2.5 + parent: 10579 + - uid: 10798 + components: + - type: Transform + pos: -2.5,3.5 + parent: 10579 + - uid: 10799 + components: + - type: Transform + pos: -2.5,4.5 + parent: 10579 + - uid: 10800 + components: + - type: Transform + pos: -2.5,5.5 + parent: 10579 + - uid: 10801 + components: + - type: Transform + pos: -2.5,6.5 + parent: 10579 + - uid: 10802 + components: + - type: Transform + pos: -2.5,7.5 + parent: 10579 + - uid: 10803 + components: + - type: Transform + pos: -2.5,8.5 + parent: 10579 + - uid: 10804 + components: + - type: Transform + pos: -2.5,9.5 + parent: 10579 + - uid: 10805 + components: + - type: Transform + pos: -2.5,10.5 + parent: 10579 + - uid: 10806 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 10579 + - uid: 10807 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 10579 + - uid: 10808 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 10579 + - uid: 10809 + components: + - type: Transform + pos: -1.5,0.5 + parent: 10579 + - uid: 10810 + components: + - type: Transform + pos: -1.5,1.5 + parent: 10579 + - uid: 10811 + components: + - type: Transform + pos: -1.5,2.5 + parent: 10579 + - uid: 10812 + components: + - type: Transform + pos: -1.5,3.5 + parent: 10579 + - uid: 10813 + components: + - type: Transform + pos: -1.5,4.5 + parent: 10579 + - uid: 10814 + components: + - type: Transform + pos: -1.5,5.5 + parent: 10579 + - uid: 10815 + components: + - type: Transform + pos: -1.5,6.5 + parent: 10579 + - uid: 10816 + components: + - type: Transform + pos: -1.5,7.5 + parent: 10579 + - uid: 10817 + components: + - type: Transform + pos: -1.5,8.5 + parent: 10579 + - uid: 10818 + components: + - type: Transform + pos: -1.5,9.5 + parent: 10579 + - uid: 10819 + components: + - type: Transform + pos: -1.5,10.5 + parent: 10579 + - uid: 10820 + components: + - type: Transform + pos: -5.5,11.5 + parent: 10579 + - uid: 10821 + components: + - type: Transform + pos: -4.5,11.5 + parent: 10579 + - uid: 10822 + components: + - type: Transform + pos: -3.5,11.5 + parent: 10579 + - uid: 10823 + components: + - type: Transform + pos: -3.5,12.5 + parent: 10579 + - uid: 10824 + components: + - type: Transform + pos: -8.5,5.5 + parent: 10579 + - uid: 10825 + components: + - type: Transform + pos: -8.5,6.5 + parent: 10579 + - uid: 10826 + components: + - type: Transform + pos: -8.5,7.5 + parent: 10579 + - uid: 10827 + components: + - type: Transform + pos: -7.5,5.5 + parent: 10579 + - uid: 10828 + components: + - type: Transform + pos: -7.5,6.5 + parent: 10579 + - uid: 10829 + components: + - type: Transform + pos: -7.5,7.5 + parent: 10579 + - uid: 10830 + components: + - type: Transform + pos: -7.5,8.5 + parent: 10579 + - uid: 10831 + components: + - type: Transform + pos: -7.5,9.5 + parent: 10579 + - uid: 10832 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 10579 + - uid: 10833 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 10579 + - uid: 10834 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 10579 + - uid: 10835 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 10579 + - uid: 10836 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 10579 + - uid: 10837 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 10579 + - uid: 10838 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 10579 + - uid: 10839 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 10579 + - uid: 10840 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 10579 + - uid: 10841 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 10579 + - uid: 10842 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 10579 + - uid: 10843 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 10579 + - uid: 10844 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 10579 + - uid: 10845 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 10579 + - uid: 10846 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 10579 + - uid: 10847 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 10579 + - uid: 10848 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 10579 + - uid: 10849 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 10579 + - uid: 10850 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 10579 + - uid: 10851 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 10579 + - uid: 10852 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 10579 + - uid: 10853 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 10579 + - uid: 10854 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 10579 + - uid: 10855 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 10579 + - uid: 10856 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 10579 + - uid: 10857 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 10579 + - uid: 10858 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 10579 + - uid: 10859 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 10579 + - uid: 10860 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 10579 + - uid: 10861 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 10579 + - uid: 10862 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 10579 + - uid: 10863 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 10579 + - uid: 10864 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 10579 + - uid: 10865 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 10579 + - uid: 10866 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 10579 + - uid: 10867 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 10579 + - uid: 10868 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 10579 + - uid: 10869 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 10579 + - uid: 10870 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 10579 + - uid: 10871 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 10579 + - uid: 10872 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 10579 + - uid: 10873 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 10579 + - uid: 10874 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 10579 + - uid: 10875 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 10579 + - uid: 10876 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 10579 + - uid: 10877 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 10579 + - uid: 10878 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 10579 + - uid: 10879 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 10579 + - uid: 10880 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 10579 + - uid: 10881 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 10579 + - uid: 10882 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 10579 + - uid: 10883 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 10579 + - uid: 10884 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 10579 + - uid: 10885 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 10579 + - uid: 10886 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 10579 + - uid: 10887 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 10579 + - uid: 10888 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 10579 + - uid: 10889 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 10579 + - uid: 10890 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 10579 + - uid: 10891 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 10579 + - uid: 10892 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 10579 + - uid: 10893 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 10579 + - uid: 10894 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 10579 + - uid: 10895 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 10579 + - uid: 10896 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 10579 + - uid: 10897 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 10579 + - uid: 10898 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 10579 + - uid: 10899 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 10579 + - uid: 10900 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 10579 + - uid: 10901 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 10579 + - uid: 10902 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 10579 + - uid: 10903 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 10579 + - uid: 10904 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 10579 + - uid: 10905 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 10579 + - uid: 10906 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 10579 + - uid: 10907 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 10579 + - uid: 10908 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 10579 + - uid: 10909 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 10579 + - uid: 10910 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 10579 + - uid: 10911 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 10579 + - uid: 10912 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 10579 + - uid: 10913 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 10579 + - uid: 10914 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 10579 + - uid: 10915 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 10579 + - uid: 10916 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 10579 + - uid: 10917 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 10579 + - uid: 10918 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 10579 + - uid: 10919 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 10579 + - uid: 10920 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 10579 + - uid: 10921 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 10579 + - uid: 10922 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 10579 + - uid: 10923 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 10579 + - uid: 10924 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 10579 + - uid: 10925 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 10579 + - uid: 10926 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 10579 + - uid: 10927 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 10579 + - uid: 10928 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 10579 + - uid: 10929 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 10579 + - uid: 10930 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 10579 + - uid: 10931 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 10579 + - uid: 10932 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 10579 + - uid: 10933 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 10579 + - uid: 10934 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 10579 + - uid: 10935 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 10579 + - uid: 10936 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 10579 + - uid: 10937 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 10579 + - uid: 10938 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 10579 + - uid: 10939 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 10579 + - uid: 10940 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 10579 + - uid: 10941 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 10579 + - uid: 10942 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 10579 + - uid: 10943 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 10579 + - uid: 10944 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 10579 + - uid: 10945 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 10579 + - uid: 10946 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 10579 + - uid: 10947 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 10579 + - uid: 10948 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 10579 + - uid: 10949 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 10579 + - uid: 10950 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 10579 + - uid: 10951 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 10579 + - uid: 10952 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 10579 + - uid: 10953 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 10579 + - uid: 10954 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 10579 + - uid: 10955 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 10579 + - uid: 10956 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 10579 + - uid: 10957 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 10579 + - uid: 10958 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 10579 + - uid: 10959 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 10579 + - uid: 10960 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 10579 + - uid: 10961 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 10579 + - uid: 10962 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 10579 + - uid: 10963 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 10579 + - uid: 10964 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 10579 + - uid: 10965 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 10579 + - uid: 10966 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 10579 + - uid: 10967 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 10579 + - uid: 10968 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 10579 + - uid: 10969 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 10579 + - uid: 10970 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 10579 + - uid: 10971 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 10579 + - uid: 10972 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 10579 + - uid: 10973 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 10579 + - uid: 10974 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 10579 + - uid: 10975 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 10579 + - uid: 10976 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 10579 + - uid: 10977 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 10579 + - uid: 10978 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 10579 + - uid: 10979 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 10579 + - uid: 10980 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 10579 + - uid: 10981 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 10579 + - uid: 10982 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 10579 + - uid: 10983 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 10579 + - uid: 10984 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 10579 + - uid: 10985 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 10579 + - uid: 10986 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 10579 + - uid: 10987 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 10579 + - uid: 10988 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 10579 + - uid: 10989 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 10579 + - uid: 10990 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 10579 + - uid: 10991 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 10579 + - uid: 10992 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 10579 + - uid: 10993 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 10579 + - uid: 10994 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 10579 + - uid: 10995 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 10579 + - uid: 10996 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 10579 + - uid: 10997 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 10579 + - uid: 10998 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 10579 + - uid: 10999 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 10579 + - uid: 11000 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 10579 + - uid: 11001 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 10579 + - uid: 11002 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 10579 + - uid: 11003 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 10579 + - uid: 11004 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 10579 + - uid: 11005 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 10579 + - uid: 11006 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 10579 + - uid: 11007 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 10579 + - uid: 11008 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 10579 + - uid: 11009 + components: + - type: Transform + pos: 14.5,0.5 + parent: 10579 + - uid: 11010 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 10579 + - uid: 11011 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 10579 + - uid: 11012 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 10579 + - uid: 11013 + components: + - type: Transform + pos: 13.5,0.5 + parent: 10579 + - uid: 11014 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 10579 + - uid: 11015 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 10579 + - uid: 11016 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 10579 + - uid: 11017 + components: + - type: Transform + pos: 12.5,0.5 + parent: 10579 + - uid: 11018 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 10579 + - uid: 11019 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 10579 + - uid: 11020 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 10579 + - uid: 11021 + components: + - type: Transform + pos: 11.5,0.5 + parent: 10579 + - uid: 11022 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 10579 + - uid: 11023 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 10579 + - uid: 11024 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 10579 + - uid: 11025 + components: + - type: Transform + pos: 10.5,0.5 + parent: 10579 + - uid: 11026 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 10579 + - uid: 11027 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 10579 + - uid: 11028 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 10579 + - uid: 11029 + components: + - type: Transform + pos: 9.5,0.5 + parent: 10579 + - uid: 11030 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 10579 + - uid: 11031 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 10579 + - uid: 11032 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 10579 + - uid: 11033 + components: + - type: Transform + pos: 8.5,0.5 + parent: 10579 + - uid: 11034 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 10579 + - uid: 11035 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 10579 + - uid: 11036 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 10579 + - uid: 11037 + components: + - type: Transform + pos: 7.5,0.5 + parent: 10579 + - uid: 11038 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 10579 + - uid: 11039 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 10579 + - uid: 11040 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 10579 + - uid: 11041 + components: + - type: Transform + pos: 6.5,0.5 + parent: 10579 + - uid: 11042 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 10579 + - uid: 11043 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 10579 + - uid: 11044 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 10579 + - uid: 11045 + components: + - type: Transform + pos: 5.5,0.5 + parent: 10579 + - uid: 11046 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 10579 + - uid: 11047 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 10579 + - uid: 11048 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 10579 + - uid: 11049 + components: + - type: Transform + pos: 4.5,0.5 + parent: 10579 + - uid: 11050 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 10579 + - uid: 11051 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 10579 + - uid: 11052 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 10579 + - uid: 11053 + components: + - type: Transform + pos: 3.5,0.5 + parent: 10579 + - uid: 11054 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 10579 + - uid: 11055 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 10579 + - uid: 11056 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 10579 + - uid: 11057 + components: + - type: Transform + pos: 2.5,0.5 + parent: 10579 + - uid: 11058 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 10579 + - uid: 11059 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 10579 + - uid: 11060 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 10579 + - uid: 11061 + components: + - type: Transform + pos: 1.5,0.5 + parent: 10579 + - uid: 11062 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 10579 + - uid: 11063 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 10579 + - uid: 11064 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 10579 + - uid: 11065 + components: + - type: Transform + pos: 0.5,0.5 + parent: 10579 + - uid: 11066 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 10579 + - uid: 11067 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 10579 + - uid: 11068 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 10579 + - uid: 11069 + components: + - type: Transform + pos: -0.5,0.5 + parent: 10579 + - uid: 11070 + components: + - type: Transform + pos: 9.5,1.5 + parent: 10579 + - uid: 11071 + components: + - type: Transform + pos: 9.5,2.5 + parent: 10579 + - uid: 11072 + components: + - type: Transform + pos: 9.5,3.5 + parent: 10579 + - uid: 11073 + components: + - type: Transform + pos: 9.5,4.5 + parent: 10579 + - uid: 11074 + components: + - type: Transform + pos: 10.5,1.5 + parent: 10579 + - uid: 11075 + components: + - type: Transform + pos: 10.5,2.5 + parent: 10579 + - uid: 11076 + components: + - type: Transform + pos: 10.5,3.5 + parent: 10579 + - uid: 11077 + components: + - type: Transform + pos: 10.5,4.5 + parent: 10579 + - uid: 11078 + components: + - type: Transform + pos: 11.5,1.5 + parent: 10579 + - uid: 11079 + components: + - type: Transform + pos: 11.5,2.5 + parent: 10579 + - uid: 11080 + components: + - type: Transform + pos: 11.5,3.5 + parent: 10579 + - uid: 11081 + components: + - type: Transform + pos: 11.5,4.5 + parent: 10579 + - uid: 11082 + components: + - type: Transform + pos: 12.5,1.5 + parent: 10579 + - uid: 11083 + components: + - type: Transform + pos: 12.5,2.5 + parent: 10579 + - uid: 11084 + components: + - type: Transform + pos: 12.5,3.5 + parent: 10579 + - uid: 11085 + components: + - type: Transform + pos: 12.5,4.5 + parent: 10579 + - uid: 11086 + components: + - type: Transform + pos: 13.5,1.5 + parent: 10579 + - uid: 11087 + components: + - type: Transform + pos: 13.5,2.5 + parent: 10579 + - uid: 11088 + components: + - type: Transform + pos: 13.5,3.5 + parent: 10579 + - uid: 11089 + components: + - type: Transform + pos: 13.5,4.5 + parent: 10579 + - uid: 11090 + components: + - type: Transform + pos: 14.5,1.5 + parent: 10579 + - uid: 11091 + components: + - type: Transform + pos: 14.5,2.5 + parent: 10579 + - uid: 11092 + components: + - type: Transform + pos: 14.5,3.5 + parent: 10579 + - uid: 11093 + components: + - type: Transform + pos: 14.5,4.5 + parent: 10579 + - uid: 11094 + components: + - type: Transform + pos: 13.5,5.5 + parent: 10579 + - uid: 11095 + components: + - type: Transform + pos: 13.5,6.5 + parent: 10579 + - uid: 11096 + components: + - type: Transform + pos: 13.5,7.5 + parent: 10579 + - uid: 11097 + components: + - type: Transform + pos: 14.5,5.5 + parent: 10579 + - uid: 11098 + components: + - type: Transform + pos: 14.5,6.5 + parent: 10579 + - uid: 11099 + components: + - type: Transform + pos: 14.5,7.5 + parent: 10579 + - uid: 11100 + components: + - type: Transform + pos: 15.5,5.5 + parent: 10579 + - uid: 11101 + components: + - type: Transform + pos: 15.5,6.5 + parent: 10579 + - uid: 11102 + components: + - type: Transform + pos: 15.5,7.5 + parent: 10579 + - uid: 11103 + components: + - type: Transform + pos: 16.5,5.5 + parent: 10579 + - uid: 11104 + components: + - type: Transform + pos: 16.5,6.5 + parent: 10579 + - uid: 11105 + components: + - type: Transform + pos: 16.5,7.5 + parent: 10579 + - uid: 11106 + components: + - type: Transform + pos: 13.5,8.5 + parent: 10579 + - uid: 11107 + components: + - type: Transform + pos: 13.5,9.5 + parent: 10579 + - uid: 11108 + components: + - type: Transform + pos: 13.5,10.5 + parent: 10579 + - uid: 11109 + components: + - type: Transform + pos: 14.5,8.5 + parent: 10579 + - uid: 11110 + components: + - type: Transform + pos: 14.5,9.5 + parent: 10579 + - uid: 11111 + components: + - type: Transform + pos: 14.5,10.5 + parent: 10579 + - uid: 11112 + components: + - type: Transform + pos: 13.5,11.5 + parent: 10579 + - uid: 11113 + components: + - type: Transform + pos: 15.5,9.5 + parent: 10579 + - uid: 11114 + components: + - type: Transform + pos: 15.5,8.5 + parent: 10579 +- proto: BannerNanotrasen + entities: + - uid: 11115 + components: + - type: Transform + pos: 6.5,10.5 + parent: 10579 +- proto: Bed + entities: + - uid: 11116 + components: + - type: Transform + pos: 3.5,5.5 + parent: 10579 + - uid: 11117 + components: + - type: Transform + pos: 3.5,6.5 + parent: 10579 +- proto: BedsheetBlue + entities: + - uid: 11118 + components: + - type: Transform + pos: 3.5,5.5 + parent: 10579 +- proto: BedsheetSpawner + entities: + - uid: 11119 + components: + - type: Transform + pos: 3.5,6.5 + parent: 10579 +- proto: Bonfire + entities: + - uid: 11120 + components: + - type: Transform + pos: 8.5,10.5 + parent: 10579 +- proto: Bookshelf + entities: + - uid: 11121 + components: + - type: Transform + pos: 5.5,7.5 + parent: 10579 + - uid: 11122 + components: + - type: Transform + pos: 5.5,8.5 + parent: 10579 +- proto: BookshelfFilled + entities: + - uid: 11123 + components: + - type: Transform + pos: 5.5,6.5 + parent: 10579 + - uid: 11124 + components: + - type: Transform + pos: 4.5,8.5 + parent: 10579 +- proto: BoxFolderBlue + entities: + - uid: 11125 + components: + - type: Transform + pos: 5.594612,5.609384 + parent: 10579 +- proto: Bucket + entities: + - uid: 17 + components: + - type: Transform + pos: 6.650695,13.671106 + parent: 10579 +- proto: CableApcExtension + entities: + - uid: 30 + components: + - type: Transform + pos: -8.5,3.5 + parent: 10579 + - uid: 31 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 10579 + - uid: 32 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 10579 + - uid: 33 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 10579 + - uid: 34 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 10579 + - uid: 35 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 10579 + - uid: 36 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 10579 + - uid: 37 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 10579 + - uid: 38 + components: + - type: Transform + pos: 16.5,3.5 + parent: 10579 + - uid: 11126 + components: + - type: Transform + pos: 4.5,14.5 + parent: 10579 + - uid: 11127 + components: + - type: Transform + pos: 4.5,13.5 + parent: 10579 + - uid: 11128 + components: + - type: Transform + pos: 4.5,12.5 + parent: 10579 + - uid: 11129 + components: + - type: Transform + pos: 4.5,11.5 + parent: 10579 + - uid: 11130 + components: + - type: Transform + pos: 4.5,10.5 + parent: 10579 + - uid: 11131 + components: + - type: Transform + pos: 4.5,9.5 + parent: 10579 + - uid: 11132 + components: + - type: Transform + pos: 4.5,8.5 + parent: 10579 + - uid: 11133 + components: + - type: Transform + pos: 5.5,12.5 + parent: 10579 + - uid: 11134 + components: + - type: Transform + pos: 6.5,12.5 + parent: 10579 + - uid: 11135 + components: + - type: Transform + pos: 5.5,9.5 + parent: 10579 + - uid: 11136 + components: + - type: Transform + pos: 6.5,9.5 + parent: 10579 + - uid: 11137 + components: + - type: Transform + pos: 6.5,8.5 + parent: 10579 + - uid: 11138 + components: + - type: Transform + pos: 6.5,7.5 + parent: 10579 + - uid: 11139 + components: + - type: Transform + pos: 6.5,6.5 + parent: 10579 + - uid: 11140 + components: + - type: Transform + pos: 6.5,5.5 + parent: 10579 + - uid: 11141 + components: + - type: Transform + pos: 6.5,4.5 + parent: 10579 + - uid: 11142 + components: + - type: Transform + pos: 6.5,3.5 + parent: 10579 + - uid: 11143 + components: + - type: Transform + pos: 6.5,2.5 + parent: 10579 + - uid: 11144 + components: + - type: Transform + pos: 7.5,7.5 + parent: 10579 + - uid: 11145 + components: + - type: Transform + pos: 8.5,7.5 + parent: 10579 + - uid: 11146 + components: + - type: Transform + pos: 9.5,7.5 + parent: 10579 + - uid: 11147 + components: + - type: Transform + pos: 10.5,7.5 + parent: 10579 + - uid: 11148 + components: + - type: Transform + pos: 11.5,7.5 + parent: 10579 + - uid: 11149 + components: + - type: Transform + pos: 5.5,2.5 + parent: 10579 + - uid: 11150 + components: + - type: Transform + pos: 4.5,2.5 + parent: 10579 + - uid: 11151 + components: + - type: Transform + pos: 3.5,2.5 + parent: 10579 + - uid: 11152 + components: + - type: Transform + pos: 2.5,2.5 + parent: 10579 + - uid: 11153 + components: + - type: Transform + pos: 1.5,2.5 + parent: 10579 + - uid: 11154 + components: + - type: Transform + pos: 1.5,3.5 + parent: 10579 + - uid: 11155 + components: + - type: Transform + pos: 1.5,4.5 + parent: 10579 + - uid: 11156 + components: + - type: Transform + pos: 1.5,5.5 + parent: 10579 + - uid: 11157 + components: + - type: Transform + pos: 1.5,6.5 + parent: 10579 + - uid: 11158 + components: + - type: Transform + pos: 1.5,7.5 + parent: 10579 + - uid: 11159 + components: + - type: Transform + pos: 1.5,8.5 + parent: 10579 + - uid: 11160 + components: + - type: Transform + pos: 1.5,9.5 + parent: 10579 + - uid: 11161 + components: + - type: Transform + pos: 1.5,10.5 + parent: 10579 + - uid: 11162 + components: + - type: Transform + pos: 5.5,0.5 + parent: 10579 + - uid: 11163 + components: + - type: Transform + pos: 5.5,1.5 + parent: 10579 + - uid: 11164 + components: + - type: Transform + pos: 4.5,0.5 + parent: 10579 + - uid: 11165 + components: + - type: Transform + pos: 3.5,0.5 + parent: 10579 + - uid: 11166 + components: + - type: Transform + pos: 2.5,0.5 + parent: 10579 + - uid: 11167 + components: + - type: Transform + pos: 1.5,0.5 + parent: 10579 + - uid: 11168 + components: + - type: Transform + pos: 0.5,0.5 + parent: 10579 + - uid: 11169 + components: + - type: Transform + pos: -0.5,0.5 + parent: 10579 + - uid: 11170 + components: + - type: Transform + pos: -1.5,0.5 + parent: 10579 + - uid: 11171 + components: + - type: Transform + pos: -2.5,0.5 + parent: 10579 + - uid: 11172 + components: + - type: Transform + pos: -3.5,0.5 + parent: 10579 + - uid: 11173 + components: + - type: Transform + pos: -4.5,0.5 + parent: 10579 + - uid: 11174 + components: + - type: Transform + pos: -5.5,0.5 + parent: 10579 + - uid: 11175 + components: + - type: Transform + pos: -6.5,0.5 + parent: 10579 + - uid: 11176 + components: + - type: Transform + pos: -7.5,0.5 + parent: 10579 + - uid: 11177 + components: + - type: Transform + pos: -8.5,0.5 + parent: 10579 + - uid: 11178 + components: + - type: Transform + pos: -9.5,0.5 + parent: 10579 + - uid: 11179 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 10579 + - uid: 11180 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 10579 + - uid: 11181 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 10579 + - uid: 11182 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 10579 + - uid: 11183 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 10579 + - uid: 11184 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 10579 + - uid: 11185 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 10579 + - uid: 11186 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 10579 + - uid: 11187 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 10579 + - uid: 11188 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 10579 + - uid: 11189 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 10579 + - uid: 11190 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 10579 + - uid: 11191 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 10579 + - uid: 11192 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 10579 + - uid: 11193 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 10579 + - uid: 11194 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 10579 + - uid: 11195 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 10579 + - uid: 11196 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 10579 + - uid: 11197 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 10579 + - uid: 11198 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 10579 + - uid: 11199 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 10579 + - uid: 11200 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 10579 + - uid: 11201 + components: + - type: Transform + pos: 6.5,0.5 + parent: 10579 + - uid: 11202 + components: + - type: Transform + pos: 7.5,0.5 + parent: 10579 + - uid: 11203 + components: + - type: Transform + pos: 8.5,0.5 + parent: 10579 + - uid: 11204 + components: + - type: Transform + pos: 9.5,0.5 + parent: 10579 + - uid: 11205 + components: + - type: Transform + pos: 10.5,0.5 + parent: 10579 + - uid: 11206 + components: + - type: Transform + pos: 11.5,0.5 + parent: 10579 + - uid: 11207 + components: + - type: Transform + pos: 12.5,0.5 + parent: 10579 + - uid: 11208 + components: + - type: Transform + pos: 13.5,0.5 + parent: 10579 + - uid: 11209 + components: + - type: Transform + pos: 14.5,0.5 + parent: 10579 + - uid: 11210 + components: + - type: Transform + pos: 15.5,0.5 + parent: 10579 + - uid: 11211 + components: + - type: Transform + pos: 16.5,0.5 + parent: 10579 + - uid: 11212 + components: + - type: Transform + pos: 17.5,0.5 + parent: 10579 + - uid: 11213 + components: + - type: Transform + pos: 16.5,1.5 + parent: 10579 + - uid: 11214 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 10579 + - uid: 11215 + components: + - type: Transform + pos: 16.5,2.5 + parent: 10579 + - uid: 11216 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 10579 + - uid: 11217 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 10579 + - uid: 11218 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 10579 + - uid: 11219 + components: + - type: Transform + pos: -8.5,1.5 + parent: 10579 + - uid: 11220 + components: + - type: Transform + pos: -8.5,2.5 + parent: 10579 +- proto: CableHV + entities: + - uid: 12 + components: + - type: Transform + pos: 5.5,14.5 + parent: 10579 + - uid: 14 + components: + - type: Transform + pos: 6.5,14.5 + parent: 10579 +- proto: CableMV + entities: + - uid: 15 + components: + - type: Transform + pos: 5.5,14.5 + parent: 10579 + - uid: 16 + components: + - type: Transform + pos: 4.5,14.5 + parent: 10579 +- proto: Carpet + entities: + - uid: 11221 + components: + - type: Transform + pos: 3.5,8.5 + parent: 10579 + - uid: 11222 + components: + - type: Transform + pos: 3.5,9.5 + parent: 10579 + - uid: 11223 + components: + - type: Transform + pos: 2.5,5.5 + parent: 10579 + - uid: 11224 + components: + - type: Transform + pos: 2.5,6.5 + parent: 10579 + - uid: 11225 + components: + - type: Transform + pos: 3.5,5.5 + parent: 10579 + - uid: 11226 + components: + - type: Transform + pos: 3.5,6.5 + parent: 10579 + - uid: 11227 + components: + - type: Transform + pos: 0.5,5.5 + parent: 10579 + - uid: 11228 + components: + - type: Transform + pos: 0.5,6.5 + parent: 10579 + - uid: 11229 + components: + - type: Transform + pos: 0.5,3.5 + parent: 10579 + - uid: 11230 + components: + - type: Transform + pos: 0.5,2.5 + parent: 10579 + - uid: 11231 + components: + - type: Transform + pos: 1.5,3.5 + parent: 10579 + - uid: 11232 + components: + - type: Transform + pos: 1.5,2.5 + parent: 10579 + - uid: 11233 + components: + - type: Transform + pos: 2.5,3.5 + parent: 10579 + - uid: 11234 + components: + - type: Transform + pos: 2.5,2.5 + parent: 10579 + - uid: 11235 + components: + - type: Transform + pos: 5.5,2.5 + parent: 10579 + - uid: 11236 + components: + - type: Transform + pos: 6.5,2.5 + parent: 10579 + - uid: 11237 + components: + - type: Transform + pos: 8.5,7.5 + parent: 10579 + - uid: 11238 + components: + - type: Transform + pos: 8.5,8.5 + parent: 10579 + - uid: 11239 + components: + - type: Transform + pos: 9.5,7.5 + parent: 10579 + - uid: 11240 + components: + - type: Transform + pos: 9.5,8.5 + parent: 10579 + - uid: 11241 + components: + - type: Transform + pos: 10.5,7.5 + parent: 10579 + - uid: 11242 + components: + - type: Transform + pos: 10.5,8.5 + parent: 10579 + - uid: 11243 + components: + - type: Transform + pos: 11.5,7.5 + parent: 10579 + - uid: 11244 + components: + - type: Transform + pos: 11.5,8.5 + parent: 10579 + - uid: 11245 + components: + - type: Transform + pos: 10.5,9.5 + parent: 10579 + - uid: 11246 + components: + - type: Transform + pos: 10.5,10.5 + parent: 10579 + - uid: 11247 + components: + - type: Transform + pos: 11.5,9.5 + parent: 10579 + - uid: 11248 + components: + - type: Transform + pos: 11.5,10.5 + parent: 10579 +- proto: CigPackMixed + entities: + - uid: 11249 + components: + - type: Transform + pos: 9.064568,8.685226 + parent: 10579 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 11250 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 10579 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 19 + components: + - type: Transform + pos: 0.56660223,-11.414496 + parent: 10579 + - uid: 20 + components: + - type: Transform + pos: 0.5561855,-12.476996 + parent: 10579 + - uid: 11251 + components: + - type: Transform + pos: -8.490082,3.6667087 + parent: 10579 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 11254 + components: + - type: Transform + pos: -9.513046,3.5352576 + parent: 10579 +- proto: ComfyChair + entities: + - uid: 11255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 10579 + - uid: 11256 + components: + - type: Transform + pos: 10.5,10.5 + parent: 10579 + - uid: 11257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 10579 + - uid: 11258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 10579 + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 10579 + - uid: 11260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 10579 +- proto: ComputerRoboticsControl + entities: + - uid: 11261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 10579 +- proto: CrateTrashCartFilled + entities: + - uid: 4 + components: + - type: Transform + pos: 9.5,4.5 + parent: 10579 +- proto: CurtainsBlueOpen + entities: + - uid: 11262 + components: + - type: Transform + pos: 0.5,10.5 + parent: 10579 +- proto: d4Dice + entities: + - uid: 10 + components: + - type: Transform + pos: 3.3288345,8.738108 + parent: 10579 +- proto: DiceBag + entities: + - uid: 11 + components: + - type: Transform + pos: 3.6552236,8.536719 + parent: 10579 +- proto: DogBed + entities: + - uid: 11264 + components: + - type: Transform + pos: 4.5,3.5 + parent: 10579 +- proto: DresserFilled + entities: + - uid: 11265 + components: + - type: Transform + pos: 0.5,5.5 + parent: 10579 +- proto: DrinkBeerCan + entities: + - uid: 13 + components: + - type: Transform + pos: 4.845139,13.719717 + parent: 10579 +- proto: DrinkBeerGrowler + entities: + - uid: 11266 + components: + - type: Transform + pos: 11.672752,12.721093 + parent: 10579 +- proto: DrinkMugGreen + entities: + - uid: 11267 + components: + - type: Transform + pos: 8.642845,13.530084 + parent: 10579 +- proto: filingCabinetRandom + entities: + - uid: 11268 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 10579 +- proto: FloraTreeSnow + entities: + - uid: 11270 + components: + - type: Transform + pos: -7.695236,5.2422414 + parent: 10579 + - uid: 11271 + components: + - type: Transform + pos: 9.310226,-8.313391 + parent: 10579 + - uid: 11272 + components: + - type: Transform + pos: 9.808342,-4.0281086 + parent: 10579 + - uid: 11273 + components: + - type: Transform + pos: 12.296829,-3.3855062 + parent: 10579 + - uid: 11274 + components: + - type: Transform + pos: -4.306305,0.65795445 + parent: 10579 + - uid: 11275 + components: + - type: Transform + pos: 11.98455,-6.896643 + parent: 10579 + - uid: 11276 + components: + - type: Transform + pos: 9.797867,-0.1802417 + parent: 10579 + - uid: 11277 + components: + - type: Transform + pos: -2.660698,9.52662 + parent: 10579 + - uid: 11278 + components: + - type: Transform + pos: -2.6834106,5.793745 + parent: 10579 + - uid: 11279 + components: + - type: Transform + pos: 13.3144,-9.598387 + parent: 10579 + - uid: 11280 + components: + - type: Transform + pos: 7.655792,-4.9336586 + parent: 10579 + - uid: 11281 + components: + - type: Transform + pos: 15.4322815,5.4880314 + parent: 10579 + - uid: 11282 + components: + - type: Transform + pos: 3.7532349,-0.68833256 + parent: 10579 + - uid: 11283 + components: + - type: Transform + pos: -4.5109024,-1.6059206 + parent: 10579 + - uid: 11284 + components: + - type: Transform + pos: -2.768982,-7.314196 + parent: 10579 + - uid: 11285 + components: + - type: Transform + pos: 10.831306,-5.3864336 + parent: 10579 + - uid: 11286 + components: + - type: Transform + pos: 14.423927,8.5114 + parent: 10579 + - uid: 11287 + components: + - type: Transform + pos: 14.512733,-6.662953 + parent: 10579 + - uid: 11288 + components: + - type: Transform + pos: 6.0044403,-7.1011224 + parent: 10579 + - uid: 11289 + components: + - type: Transform + pos: 11.814575,1.3387454 + parent: 10579 + - uid: 11290 + components: + - type: Transform + pos: 9.048523,-1.9923658 + parent: 10579 + - uid: 11291 + components: + - type: Transform + pos: 5.6155396,-9.724128 + parent: 10579 + - uid: 11292 + components: + - type: Transform + pos: 14.474281,-1.7058568 + parent: 10579 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 22 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 + - uid: 23 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 24 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 + - uid: 25 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 26 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 + - uid: 27 + components: + - type: Transform + parent: 11320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 11320 +- proto: FoodTinBeans + entities: + - uid: 11293 + components: + - type: Transform + pos: 10.4711,8.753825 + parent: 10579 +- proto: Gauze + entities: + - uid: 11294 + components: + - type: Transform + pos: 8.526222,8.592708 + parent: 10579 +- proto: GeneratorWallmountBasic + entities: + - uid: 2 + components: + - type: Transform + pos: 6.5,14.5 + parent: 10579 +- proto: Grille + entities: + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 10579 + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 10579 + - uid: 11297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 10579 + - uid: 11298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 10579 + - uid: 11299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 10579 + - uid: 11300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 10579 + - uid: 11301 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 10579 + - uid: 11302 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 10579 + - uid: 11303 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 10579 + - uid: 11304 + components: + - type: Transform + pos: 15.5,1.5 + parent: 10579 + - uid: 11305 + components: + - type: Transform + pos: 15.5,2.5 + parent: 10579 + - uid: 11306 + components: + - type: Transform + pos: 15.5,3.5 + parent: 10579 + - uid: 11307 + components: + - type: Transform + pos: 12.5,7.5 + parent: 10579 + - uid: 11308 + components: + - type: Transform + pos: 12.5,8.5 + parent: 10579 + - uid: 11309 + components: + - type: Transform + pos: 12.5,9.5 + parent: 10579 + - uid: 11310 + components: + - type: Transform + pos: 10.5,5.5 + parent: 10579 + - uid: 11311 + components: + - type: Transform + pos: 1.5,1.5 + parent: 10579 + - uid: 11312 + components: + - type: Transform + pos: -0.5,5.5 + parent: 10579 + - uid: 11313 + components: + - type: Transform + pos: -0.5,6.5 + parent: 10579 + - uid: 11314 + components: + - type: Transform + pos: 8.5,2.5 + parent: 10579 + - uid: 11315 + components: + - type: Transform + pos: 8.5,3.5 + parent: 10579 + - uid: 11316 + components: + - type: Transform + pos: 8.5,4.5 + parent: 10579 +- proto: KitchenMicrowave + entities: + - uid: 11317 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 10579 +- proto: LampInterrogator + entities: + - uid: 11318 + components: + - type: Transform + pos: 0.41427612,2.816569 + parent: 10579 +- proto: LockerBooze + entities: + - uid: 11319 + components: + - type: MetaData + desc: Простой деревянный шкаф. + name: шкаф + - type: Transform + pos: 0.5,6.5 + parent: 10579 + missingComponents: + - AccessReader +- proto: LockerFreezerBase + entities: + - uid: 11320 + components: + - type: Transform + pos: 17.5,3.5 + parent: 10579 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22 + - 23 + - 24 + - 25 + - 26 + - 27 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MarkerWinterReserveSignal + entities: + - uid: 5 + components: + - type: Transform + pos: 4.5,0.5 + parent: 10579 +- proto: Matchbox + entities: + - uid: 11321 + components: + - type: Transform + pos: 11.588242,8.487678 + parent: 10579 +- proto: MaterialCloth1 + entities: + - uid: 11322 + components: + - type: Transform + pos: 1.5942078,13.59094 + parent: 10579 + - uid: 11323 + components: + - type: Transform + pos: 1.3538895,13.779191 + parent: 10579 + - uid: 11324 + components: + - type: Transform + pos: 1.1525497,13.487079 + parent: 10579 + - uid: 11325 + components: + - type: Transform + pos: -0.42137146,13.798665 + parent: 10579 +- proto: MaterialCloth10 + entities: + - uid: 11326 + components: + - type: Transform + pos: -0.6032257,13.558483 + parent: 10579 +- proto: MedkitFilled + entities: + - uid: 11327 + components: + - type: Transform + pos: 0.55287933,13.506553 + parent: 10579 +- proto: Paper + entities: + - uid: 11328 + components: + - type: Transform + pos: 7.6208115,-12.184529 + parent: 10579 +- proto: PaperBin20 + entities: + - uid: 11329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 10579 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 11330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 10579 +- proto: Pen + entities: + - uid: 11331 + components: + - type: Transform + pos: -8.738518,-0.48129565 + parent: 10579 + - uid: 11332 + components: + - type: Transform + pos: 7.357765,-12.41822 + parent: 10579 + - uid: 11333 + components: + - type: Transform + pos: 5.3023376,5.5071445 + parent: 10579 +- proto: PillCanisterRandom + entities: + - uid: 11334 + components: + - type: Transform + pos: 10.737396,9.253663 + parent: 10579 +- proto: PottedPlantRandom + entities: + - uid: 11335 + components: + - type: Transform + pos: 5.5,4.5 + parent: 10579 + - uid: 11336 + components: + - type: Transform + pos: 0.5,3.5 + parent: 10579 + - uid: 11337 + components: + - type: Transform + pos: 11.5,10.5 + parent: 10579 +- proto: Poweredlight + entities: + - uid: 28 + components: + - type: Transform + pos: 0.5,0.5 + parent: 10579 + - uid: 29 + components: + - type: Transform + pos: 7.5,0.5 + parent: 10579 + - uid: 11338 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 10579 + - uid: 11339 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 10579 +- proto: PoweredSmallLight + entities: + - uid: 11340 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 10579 +- proto: PrinterDoc + entities: + - uid: 11341 + components: + - type: Transform + pos: 3.5,10.5 + parent: 10579 +- proto: PuddleSmear + entities: + - uid: 18 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 10579 +- proto: Rack + entities: + - uid: 11342 + components: + - type: Transform + pos: -9.5,3.5 + parent: 10579 + - uid: 11343 + components: + - type: Transform + pos: -8.5,3.5 + parent: 10579 + - uid: 11344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 10579 + - uid: 11345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 10579 +- proto: Railing + entities: + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 10579 + - uid: 11347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 10579 + - uid: 11348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 10579 + - uid: 11349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 10579 + - uid: 11350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 10579 + - uid: 11351 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 10579 + - uid: 11352 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 10579 + - uid: 11353 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 10579 + - uid: 11354 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 10579 + - uid: 11355 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 10579 + - uid: 11356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 10579 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 10579 + - uid: 11358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 10579 +- proto: RailingCornerSmall + entities: + - uid: 11359 + components: + - type: Transform + pos: 9.5,9.5 + parent: 10579 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 10579 +- proto: RandomPainting + entities: + - uid: 11361 + components: + - type: Transform + pos: 2.5,7.5 + parent: 10579 +- proto: RandomPosterAny + entities: + - uid: 11362 + components: + - type: Transform + pos: 11.5,11.5 + parent: 10579 +- proto: RandomSoap + entities: + - uid: 11363 + components: + - type: Transform + pos: 0.5,9.5 + parent: 10579 +- proto: ReinforcedWindow + entities: + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 10579 + - uid: 11365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 10579 + - uid: 11366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 10579 + - uid: 11367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 10579 + - uid: 11368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 10579 + - uid: 11369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 10579 + - uid: 11370 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 10579 + - uid: 11371 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 10579 + - uid: 11372 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 10579 + - uid: 11373 + components: + - type: Transform + pos: 15.5,1.5 + parent: 10579 + - uid: 11374 + components: + - type: Transform + pos: 15.5,2.5 + parent: 10579 + - uid: 11375 + components: + - type: Transform + pos: 15.5,3.5 + parent: 10579 +- proto: ShardGlass + entities: + - uid: 11376 + components: + - type: Transform + pos: -0.044654846,13.435147 + parent: 10579 +- proto: Shower + entities: + - uid: 21 + components: + - type: Transform + pos: 0.5,10.5 + parent: 10579 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: SinkWide + entities: + - uid: 11377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 10579 +- proto: SmallLight + entities: + - uid: 11378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 10579 + - uid: 11379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 10579 + - uid: 11380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 10579 + - uid: 11381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 10579 + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 10579 + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 10579 + - uid: 11384 + components: + - type: Transform + pos: 0.5,13.5 + parent: 10579 + - uid: 11385 + components: + - type: Transform + pos: 4.5,13.5 + parent: 10579 + - uid: 11386 + components: + - type: Transform + pos: 8.5,13.5 + parent: 10579 +- proto: SMESBasic + entities: + - uid: 11387 + components: + - type: Transform + pos: 3.5,13.5 + parent: 10579 + - uid: 11388 + components: + - type: Transform + pos: 2.5,13.5 + parent: 10579 +- proto: SpaceHeater + entities: + - uid: 11389 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 10579 +- proto: SpawnInhabitantSquare + entities: + - uid: 8 + components: + - type: Transform + pos: 10.5,7.5 + parent: 10579 + - uid: 9 + components: + - type: Transform + pos: 6.5,9.5 + parent: 10579 +- proto: SpawnMechRipley + entities: + - uid: 11390 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 10579 +- proto: SpawnVehicleATV + entities: + - uid: 7 + components: + - type: Transform + pos: 14.5,7.5 + parent: 10579 +- proto: Stool + entities: + - uid: 11391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.475464,-1.2407892 + parent: 10579 + - uid: 11392 + components: + - type: Transform + pos: 17.569977,1.6558777 + parent: 10579 +- proto: SubstationWallBasic + entities: + - uid: 3 + components: + - type: Transform + pos: 5.5,14.5 + parent: 10579 +- proto: Table + entities: + - uid: 11393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 10579 + - uid: 11394 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 10579 + - uid: 11395 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 10579 + - uid: 11396 + components: + - type: Transform + pos: 17.5,0.5 + parent: 10579 + - uid: 11397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 10579 + - uid: 11398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 10579 + - uid: 11399 + components: + - type: Transform + pos: -0.5,13.5 + parent: 10579 + - uid: 11400 + components: + - type: Transform + pos: 0.5,13.5 + parent: 10579 + - uid: 11401 + components: + - type: Transform + pos: 1.5,13.5 + parent: 10579 + - uid: 11402 + components: + - type: Transform + pos: 4.5,13.5 + parent: 10579 + - uid: 11403 + components: + - type: Transform + pos: 5.5,13.5 + parent: 10579 + - uid: 11404 + components: + - type: Transform + pos: 6.5,13.5 + parent: 10579 + - uid: 11405 + components: + - type: Transform + pos: 8.5,13.5 + parent: 10579 + - uid: 11406 + components: + - type: Transform + pos: 11.5,12.5 + parent: 10579 +- proto: TableWood + entities: + - uid: 11407 + components: + - type: Transform + pos: 11.5,8.5 + parent: 10579 + - uid: 11408 + components: + - type: Transform + pos: 10.5,8.5 + parent: 10579 + - uid: 11409 + components: + - type: Transform + pos: 10.5,9.5 + parent: 10579 + - uid: 11410 + components: + - type: Transform + pos: 9.5,8.5 + parent: 10579 + - uid: 11411 + components: + - type: Transform + pos: 8.5,8.5 + parent: 10579 + - uid: 11412 + components: + - type: Transform + pos: 5.5,5.5 + parent: 10579 + - uid: 11413 + components: + - type: Transform + pos: 3.5,8.5 + parent: 10579 + - uid: 11414 + components: + - type: Transform + pos: 0.5,2.5 + parent: 10579 +- proto: ToiletDirtyWater + entities: + - uid: 11415 + components: + - type: Transform + pos: 1.5,10.5 + parent: 10579 +- proto: ToolboxElectricalFilled + entities: + - uid: 11416 + components: + - type: Transform + pos: -7.5051727,-6.4064565 + parent: 10579 +- proto: ToolboxMechanicalFilled + entities: + - uid: 11417 + components: + - type: Transform + pos: 16.547012,-2.6819997 + parent: 10579 + - uid: 11418 + components: + - type: Transform + pos: 5.3787994,13.532517 + parent: 10579 +- proto: ToyFigurineHoloClown + entities: + - uid: 11419 + components: + - type: Transform + pos: 7.450241,-11.386447 + parent: 10579 +- proto: VehicleKeyATV + entities: + - uid: 6 + components: + - type: Transform + pos: 9.412453,8.551008 + parent: 10579 +- proto: VendingMachineCoffee + entities: + - uid: 11420 + components: + - type: Transform + pos: 16.5,3.5 + parent: 10579 + - uid: 11421 + components: + - type: Transform + pos: 5.5,10.5 + parent: 10579 +- proto: WallReinforced + entities: + - uid: 11422 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 10579 + - uid: 11423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 10579 + - uid: 11424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 10579 + - uid: 11425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 10579 + - uid: 11426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 10579 + - uid: 11427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 10579 + - uid: 11428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 10579 + - uid: 11429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 10579 + - uid: 11430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 10579 + - uid: 11431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 10579 + - uid: 11432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 10579 + - uid: 11433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 10579 + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 10579 + - uid: 11435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 10579 + - uid: 11436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 10579 + - uid: 11437 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 10579 + - uid: 11438 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 10579 + - uid: 11439 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 10579 + - uid: 11440 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 10579 + - uid: 11441 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 10579 + - uid: 11442 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 10579 + - uid: 11443 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 10579 + - uid: 11444 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 10579 + - uid: 11445 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 10579 + - uid: 11446 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 10579 + - uid: 11447 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 10579 + - uid: 11448 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 10579 + - uid: 11449 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 10579 + - uid: 11450 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 10579 + - uid: 11451 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 10579 + - uid: 11452 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 10579 + - uid: 11453 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 10579 + - uid: 11454 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 10579 + - uid: 11455 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 10579 + - uid: 11456 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 10579 + - uid: 11457 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 10579 + - uid: 11458 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 10579 + - uid: 11459 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 10579 + - uid: 11460 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 10579 + - uid: 11461 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 10579 + - uid: 11462 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 10579 + - uid: 11463 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 10579 + - uid: 11464 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 10579 + - uid: 11465 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 10579 + - uid: 11466 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 10579 + - uid: 11467 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 10579 + - uid: 11468 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 10579 + - uid: 11469 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 10579 + - uid: 11470 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 10579 + - uid: 11471 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 10579 + - uid: 11472 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 10579 + - uid: 11473 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 10579 + - uid: 11474 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 10579 + - uid: 11475 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 10579 + - uid: 11476 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 10579 + - uid: 11477 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 10579 + - uid: 11478 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 10579 + - uid: 11479 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 10579 + - uid: 11480 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 10579 + - uid: 11481 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 10579 + - uid: 11482 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 10579 + - uid: 11483 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 10579 + - uid: 11484 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 10579 + - uid: 11485 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 10579 + - uid: 11486 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 10579 + - uid: 11487 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 10579 + - uid: 11488 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 10579 + - uid: 11489 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 10579 + - uid: 11490 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 10579 + - uid: 11491 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 10579 + - uid: 11492 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 10579 + - uid: 11493 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 10579 + - uid: 11494 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 10579 + - uid: 11495 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 10579 + - uid: 11496 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 10579 + - uid: 11497 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 10579 + - uid: 11498 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 10579 + - uid: 11499 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 10579 + - uid: 11500 + components: + - type: Transform + pos: 15.5,4.5 + parent: 10579 + - uid: 11501 + components: + - type: Transform + pos: 16.5,4.5 + parent: 10579 + - uid: 11502 + components: + - type: Transform + pos: 17.5,4.5 + parent: 10579 + - uid: 11503 + components: + - type: Transform + pos: 18.5,4.5 + parent: 10579 + - uid: 11504 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 10579 + - uid: 11505 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 10579 + - uid: 11506 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 10579 + - uid: 11507 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 10579 + - uid: 11508 + components: + - type: Transform + pos: 18.5,1.5 + parent: 10579 + - uid: 11509 + components: + - type: Transform + pos: 18.5,2.5 + parent: 10579 + - uid: 11510 + components: + - type: Transform + pos: 18.5,3.5 + parent: 10579 + - uid: 11511 + components: + - type: Transform + pos: 18.5,0.5 + parent: 10579 + - uid: 11512 + components: + - type: Transform + pos: -9.5,5.5 + parent: 10579 + - uid: 11513 + components: + - type: Transform + pos: -9.5,6.5 + parent: 10579 + - uid: 11514 + components: + - type: Transform + pos: -9.5,7.5 + parent: 10579 + - uid: 11515 + components: + - type: Transform + pos: -9.5,8.5 + parent: 10579 + - uid: 11516 + components: + - type: Transform + pos: -8.5,8.5 + parent: 10579 + - uid: 11517 + components: + - type: Transform + pos: -8.5,9.5 + parent: 10579 + - uid: 11518 + components: + - type: Transform + pos: -8.5,10.5 + parent: 10579 + - uid: 11519 + components: + - type: Transform + pos: -7.5,10.5 + parent: 10579 + - uid: 11520 + components: + - type: Transform + pos: -7.5,11.5 + parent: 10579 + - uid: 11521 + components: + - type: Transform + pos: -6.5,11.5 + parent: 10579 + - uid: 11522 + components: + - type: Transform + pos: -6.5,12.5 + parent: 10579 + - uid: 11523 + components: + - type: Transform + pos: -5.5,12.5 + parent: 10579 + - uid: 11524 + components: + - type: Transform + pos: 17.5,5.5 + parent: 10579 + - uid: 11525 + components: + - type: Transform + pos: -4.5,12.5 + parent: 10579 + - uid: 11526 + components: + - type: Transform + pos: -4.5,13.5 + parent: 10579 + - uid: 11527 + components: + - type: Transform + pos: -3.5,13.5 + parent: 10579 + - uid: 11528 + components: + - type: Transform + pos: -2.5,13.5 + parent: 10579 + - uid: 11529 + components: + - type: Transform + pos: -2.5,12.5 + parent: 10579 + - uid: 11530 + components: + - type: Transform + pos: -1.5,13.5 + parent: 10579 + - uid: 11531 + components: + - type: Transform + pos: -2.5,11.5 + parent: 10579 + - uid: 11532 + components: + - type: Transform + pos: -1.5,11.5 + parent: 10579 + - uid: 11533 + components: + - type: Transform + pos: 17.5,6.5 + parent: 10579 + - uid: 11534 + components: + - type: Transform + pos: 17.5,7.5 + parent: 10579 + - uid: 11535 + components: + - type: Transform + pos: 17.5,8.5 + parent: 10579 + - uid: 11536 + components: + - type: Transform + pos: 16.5,8.5 + parent: 10579 + - uid: 11537 + components: + - type: Transform + pos: 16.5,9.5 + parent: 10579 + - uid: 11538 + components: + - type: Transform + pos: 16.5,10.5 + parent: 10579 + - uid: 11539 + components: + - type: Transform + pos: 15.5,10.5 + parent: 10579 + - uid: 11540 + components: + - type: Transform + pos: 15.5,11.5 + parent: 10579 + - uid: 11541 + components: + - type: Transform + pos: 14.5,11.5 + parent: 10579 + - uid: 11542 + components: + - type: Transform + pos: 14.5,12.5 + parent: 10579 + - uid: 11543 + components: + - type: Transform + pos: 13.5,12.5 + parent: 10579 + - uid: 11544 + components: + - type: Transform + pos: 12.5,12.5 + parent: 10579 + - uid: 11545 + components: + - type: Transform + pos: 12.5,13.5 + parent: 10579 + - uid: 11546 + components: + - type: Transform + pos: 11.5,13.5 + parent: 10579 + - uid: 11547 + components: + - type: Transform + pos: 10.5,13.5 + parent: 10579 + - uid: 11548 + components: + - type: Transform + pos: 9.5,13.5 + parent: 10579 + - uid: 11549 + components: + - type: Transform + pos: 9.5,14.5 + parent: 10579 + - uid: 11550 + components: + - type: Transform + pos: 8.5,14.5 + parent: 10579 + - uid: 11551 + components: + - type: Transform + pos: 7.5,14.5 + parent: 10579 + - uid: 11552 + components: + - type: Transform + pos: 7.5,13.5 + parent: 10579 + - uid: 11553 + components: + - type: Transform + pos: -1.5,14.5 + parent: 10579 + - uid: 11554 + components: + - type: Transform + pos: -0.5,14.5 + parent: 10579 + - uid: 11555 + components: + - type: Transform + pos: 0.5,14.5 + parent: 10579 + - uid: 11556 + components: + - type: Transform + pos: 1.5,14.5 + parent: 10579 + - uid: 11557 + components: + - type: Transform + pos: 2.5,14.5 + parent: 10579 + - uid: 11558 + components: + - type: Transform + pos: 3.5,14.5 + parent: 10579 + - uid: 11559 + components: + - type: Transform + pos: 4.5,14.5 + parent: 10579 + - uid: 11560 + components: + - type: Transform + pos: 5.5,14.5 + parent: 10579 + - uid: 11561 + components: + - type: Transform + pos: 6.5,14.5 + parent: 10579 +- proto: WallSolid + entities: + - uid: 11562 + components: + - type: Transform + pos: 7.5,11.5 + parent: 10579 + - uid: 11563 + components: + - type: Transform + pos: 8.5,11.5 + parent: 10579 + - uid: 11564 + components: + - type: Transform + pos: 9.5,11.5 + parent: 10579 +- proto: WallWood + entities: + - uid: 11565 + components: + - type: Transform + pos: 10.5,11.5 + parent: 10579 + - uid: 11566 + components: + - type: Transform + pos: 11.5,11.5 + parent: 10579 + - uid: 11567 + components: + - type: Transform + pos: 12.5,11.5 + parent: 10579 + - uid: 11568 + components: + - type: Transform + pos: 12.5,10.5 + parent: 10579 + - uid: 11569 + components: + - type: Transform + pos: 12.5,6.5 + parent: 10579 + - uid: 11570 + components: + - type: Transform + pos: 12.5,5.5 + parent: 10579 + - uid: 11571 + components: + - type: Transform + pos: 11.5,5.5 + parent: 10579 + - uid: 11572 + components: + - type: Transform + pos: 4.5,1.5 + parent: 10579 + - uid: 11573 + components: + - type: Transform + pos: 9.5,5.5 + parent: 10579 + - uid: 11574 + components: + - type: Transform + pos: 8.5,5.5 + parent: 10579 + - uid: 11575 + components: + - type: Transform + pos: 8.5,1.5 + parent: 10579 + - uid: 11576 + components: + - type: Transform + pos: 7.5,1.5 + parent: 10579 + - uid: 11577 + components: + - type: Transform + pos: 0.5,1.5 + parent: 10579 + - uid: 11578 + components: + - type: Transform + pos: -0.5,1.5 + parent: 10579 + - uid: 11579 + components: + - type: Transform + pos: 3.5,1.5 + parent: 10579 + - uid: 11580 + components: + - type: Transform + pos: 2.5,1.5 + parent: 10579 + - uid: 11581 + components: + - type: Transform + pos: 6.5,11.5 + parent: 10579 + - uid: 11582 + components: + - type: Transform + pos: -0.5,2.5 + parent: 10579 + - uid: 11583 + components: + - type: Transform + pos: -0.5,3.5 + parent: 10579 + - uid: 11584 + components: + - type: Transform + pos: -0.5,4.5 + parent: 10579 + - uid: 11585 + components: + - type: Transform + pos: -0.5,7.5 + parent: 10579 + - uid: 11586 + components: + - type: Transform + pos: -0.5,8.5 + parent: 10579 + - uid: 11587 + components: + - type: Transform + pos: -0.5,9.5 + parent: 10579 + - uid: 11588 + components: + - type: Transform + pos: -0.5,10.5 + parent: 10579 + - uid: 11589 + components: + - type: Transform + pos: -0.5,11.5 + parent: 10579 + - uid: 11590 + components: + - type: Transform + pos: 5.5,11.5 + parent: 10579 + - uid: 11591 + components: + - type: Transform + pos: 3.5,11.5 + parent: 10579 + - uid: 11592 + components: + - type: Transform + pos: 2.5,11.5 + parent: 10579 + - uid: 11593 + components: + - type: Transform + pos: 1.5,11.5 + parent: 10579 + - uid: 11594 + components: + - type: Transform + pos: 0.5,11.5 + parent: 10579 + - uid: 11595 + components: + - type: Transform + pos: 3.5,3.5 + parent: 10579 + - uid: 11596 + components: + - type: Transform + pos: 3.5,4.5 + parent: 10579 + - uid: 11597 + components: + - type: Transform + pos: 2.5,4.5 + parent: 10579 + - uid: 11598 + components: + - type: Transform + pos: 0.5,4.5 + parent: 10579 + - uid: 11599 + components: + - type: Transform + pos: 4.5,4.5 + parent: 10579 + - uid: 11600 + components: + - type: Transform + pos: 4.5,5.5 + parent: 10579 + - uid: 11601 + components: + - type: Transform + pos: 4.5,6.5 + parent: 10579 + - uid: 11602 + components: + - type: Transform + pos: 4.5,7.5 + parent: 10579 + - uid: 11603 + components: + - type: Transform + pos: 3.5,7.5 + parent: 10579 + - uid: 11604 + components: + - type: Transform + pos: 2.5,7.5 + parent: 10579 + - uid: 11605 + components: + - type: Transform + pos: 0.5,7.5 + parent: 10579 + - uid: 11606 + components: + - type: Transform + pos: 2.5,8.5 + parent: 10579 + - uid: 11607 + components: + - type: Transform + pos: 2.5,9.5 + parent: 10579 + - uid: 11608 + components: + - type: Transform + pos: 2.5,10.5 + parent: 10579 +- proto: WarpPoint + entities: + - uid: 11609 + components: + - type: Transform + pos: 4.5,0.5 + parent: 10579 + - type: WarpPoint + location: Зимний Заповедник +- proto: WeldingFuelTankFull + entities: + - uid: 11610 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 10579 +- proto: Window + entities: + - uid: 11611 + components: + - type: Transform + pos: 12.5,7.5 + parent: 10579 + - uid: 11612 + components: + - type: Transform + pos: 12.5,8.5 + parent: 10579 + - uid: 11613 + components: + - type: Transform + pos: 12.5,9.5 + parent: 10579 + - uid: 11614 + components: + - type: Transform + pos: 10.5,5.5 + parent: 10579 + - uid: 11615 + components: + - type: Transform + pos: 1.5,1.5 + parent: 10579 + - uid: 11616 + components: + - type: Transform + pos: -0.5,5.5 + parent: 10579 + - uid: 11617 + components: + - type: Transform + pos: -0.5,6.5 + parent: 10579 + - uid: 11618 + components: + - type: Transform + pos: 8.5,2.5 + parent: 10579 + - uid: 11619 + components: + - type: Transform + pos: 8.5,3.5 + parent: 10579 + - uid: 11620 + components: + - type: Transform + pos: 8.5,4.5 + parent: 10579 +- proto: WoodDoor + entities: + - uid: 11621 + components: + - type: Transform + pos: 3.5,2.5 + parent: 10579 + - uid: 11622 + components: + - type: Transform + pos: 1.5,4.5 + parent: 10579 + - uid: 11623 + components: + - type: Transform + pos: 1.5,7.5 + parent: 10579 + - uid: 11624 + components: + - type: Transform + pos: 4.5,11.5 + parent: 10579 +... diff --git a/Resources/Maps/_Wega/Lavaland/worldforge.yml b/Resources/Maps/_Wega/Lavaland/worldforge.yml new file mode 100644 index 00000000000..7e867201005 --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/worldforge.yml @@ -0,0 +1,1116 @@ +meta: + format: 7 + category: Grid + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 02/27/2026 22:15:10 + entityCount: 151 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorBasalt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.53125,-0.484375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: ExplosionAirtightGrid + - type: RadiationGridResistance +- proto: FloorEntityBurntBlock + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 6 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 108 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 112 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 130 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntCenter + entities: + - uid: 127 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityBurntSurroundingTile + entities: + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedBlock + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 5 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityCrackedCenter + entities: + - uid: 126 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineCenter + entities: + - uid: 128 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 129 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineSlab + entities: + - uid: 8 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineSurroundingTile + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 116 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 121 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 125 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorEntityPristineTile + entities: + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 137 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 140 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 141 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 23 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 +- proto: MagmiteAnvil + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: WallNecropolis + entities: + - uid: 11 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Lavaland/wrecked_outpost.yml b/Resources/Maps/_Wega/Lavaland/wrecked_outpost.yml new file mode 100644 index 00000000000..f632b27acae --- /dev/null +++ b/Resources/Maps/_Wega/Lavaland/wrecked_outpost.yml @@ -0,0 +1,1861 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 13:35:25 + entityCount: 307 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 1: FloorBasalt + 5: FloorDarkDiagonalMini + 6: FloorDarkHerringbone + 7: FloorTechMaint2 + 2: FloorWhite + 3: Plating + 4: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -6.40625,3.0859375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAQAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAQAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAwAAAAAAAAYAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 12 + 0,-1: + 0: 17476 + 1,0: + 0: 15 + 2,0: + 0: 7 + 2,-1: + 0: 65535 + 0,-4: + 0: 19652 + 0,-5: + 0: 19456 + 0,-3: + 0: 50244 + 0,-2: + 0: 19592 + 1,-4: + 0: 65535 + 1,-3: + 0: 63743 + 1,-2: + 0: 30719 + 1,-1: + 0: 1906 + 1,-5: + 0: 52992 + 2,-4: + 0: 30583 + 2,-3: + 0: 29047 + 2,-2: + 0: 62079 + 2,-5: + 0: 7936 + 3,-4: + 0: 4369 + 3,-3: + 0: 64753 + 3,-2: + 0: 65279 + 3,-1: + 0: 4369 + 3,-5: + 0: 4352 + 4,-3: + 0: 28912 + 4,-2: + 0: 61567 + 5,-3: + 0: 4368 + 5,-2: + 0: 4369 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirlockEngineeringLocked + entities: + - uid: 68 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 211 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 52 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 46 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: Brutepack + entities: + - uid: 47 + components: + - type: Transform + pos: 10.653826,-10.26179 + parent: 1 + - type: Stack + count: 3 +- proto: CableApcExtension + entities: + - uid: 58 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.214054,-2.6887493 + parent: 1 +- proto: CableHV + entities: + - uid: 78 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 40 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.311911,-3.3145313 + parent: 1 +- proto: CableTerminal + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 +- proto: FloorLavaEntity + entities: + - uid: 142 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 +- proto: GeneratorBasic + entities: + - uid: 74 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: Girder + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 1 +- proto: HighSecCommandLocked + entities: + - uid: 143 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 +- proto: LockerMedicineFilled + entities: + - uid: 35 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 37 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 33 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 +- proto: Ointment + entities: + - uid: 41 + components: + - type: Transform + pos: 10.216326,-10.464915 + parent: 1 + - type: Stack + count: 4 +- proto: PartRodMetal1 + entities: + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.6889,-9.6444645 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.454525,-5.542902 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 +- proto: Rack + entities: + - uid: 125 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 238 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 72 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 19 + components: + - type: Transform + pos: 4.3769083,-13.63551 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.2050333,-14.57301 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.280753,-15.619993 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.546378,-16.354368 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.437003,-16.666868 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 7.874503,-16.854368 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5404625,-5.871027 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5560875,-9.761652 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.4389,-5.402277 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.3842125,-9.339777 + parent: 1 +- proto: SignVault + entities: + - uid: 127 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SMESBasic + entities: + - uid: 75 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 222 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 76 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: Table + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 32 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 10 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Nonstations/base_lavalandavanpost.yml b/Resources/Maps/_Wega/Nonstations/base_lavalandavanpost.yml new file mode 100644 index 00000000000..2b58e0d499b --- /dev/null +++ b/Resources/Maps/_Wega/Nonstations/base_lavalandavanpost.yml @@ -0,0 +1,7620 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 12:16:42 + entityCount: 1122 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 2: Space + 5: FloorBar + 3: FloorBasalt + 8: FloorBlueCircuit + 6: FloorDark + 4: FloorShowroom + 0: FloorSteel + 7: FloorWhite + 1: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5,-0.4375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,-1: + ind: -2,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -2,0: + ind: -2,0 + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAgAAAAAAAAIAAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -3,0: + ind: -3,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -3,-1: + ind: -3,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 114: 4,3 + 115: 4,5 + 116: 6,5 + 117: 8,5 + 118: 9,5 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 111: 9,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 119: -18,3 + 120: -19,4 + 121: -17,3 + 122: -18,5 + 123: -17,5 + 124: -16,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 130: -18,2 + 131: -17,4 + 132: -19,5 + 133: -20,5 + 134: -17,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 125: -19,3 + 126: -20,3 + 127: -20,4 + 128: -18,4 + 129: -16,3 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 103: -25,4 + 104: -24,4 + 105: -23,4 + 106: -22,4 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale + decals: + 43: -1,11 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 4: -18,1 + 5: -23,1 + 6: -29,1 + 34: 0,11 + 47: 4,13 + 48: 5,13 + 98: -29,-3 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale180 + decals: + 39: -1,-2 + 40: 1,-2 + 93: -30,-5 + 94: -28,-5 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 7: -29,-1 + 8: -17,-1 + 17: 6,0 + 41: 0,-2 + 42: 2,-2 + 97: -29,-5 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale270 + decals: + 35: -1,3 + 36: -1,5 + 95: -31,-4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 1: -11,0 + 2: -2,0 + 9: -22,-9 + 10: -22,-6 + 11: -22,-3 + 14: 4,0 + 15: 4,1 + 20: -1,4 + 21: -1,6 + 31: 8,10 + 32: 3,10 + 33: -2,9 + 46: 3,12 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale90 + decals: + 38: 7,2 + 71: 1,7 + 96: -27,-4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 0: -13,0 + 3: -4,0 + 12: 2,0 + 13: 2,1 + 16: 5,-1 + 18: 7,1 + 19: 7,3 + 22: 2,3 + 23: 2,4 + 25: 1,6 + 26: 1,8 + 27: 1,10 + 28: 6,12 + 29: 6,10 + 30: 9,10 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 107: 4,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 108: 8,4 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 109: 5,5 + 110: 5,-2 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale + decals: + 49: -2,-1 + 50: -2,8 + 51: 3,9 + 52: 8,9 + 67: 4,-1 + 78: -22,-10 + 79: -22,-7 + 81: -22,-4 + 82: -22,1 + 83: -28,1 + 84: -17,1 + 92: -28,-3 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 70: -1,2 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 61: 1,11 + 63: 6,11 + 64: 9,11 + 68: 5,0 + 69: 2,2 + 85: -13,1 + 86: -18,-1 + 87: -30,-1 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale270 + decals: + 58: -2,1 + 59: -1,7 + 60: -2,10 + 62: 3,11 + 65: 8,11 + 66: 4,2 + 76: -28,-1 + 77: -16,-1 + 88: -22,-2 + 89: -22,-5 + 90: -22,-8 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale90 + decals: + 53: 9,9 + 54: 6,9 + 55: 1,9 + 56: 1,5 + 57: 2,-1 + 72: -13,-1 + 73: -19,1 + 74: -24,1 + 75: -30,1 + 91: -30,-3 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 45: 3,13 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 100: -31,-3 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 37: 7,0 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 102: -27,-5 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 101: -31,-5 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 44: 6,13 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 24: 2,5 + 99: -27,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 113: 6,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 112: 9,3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 30719 + 0,-1: + 0: 30464 + -1,0: + 0: 35023 + 0,1: + 0: 62327 + -1,1: + 0: 34952 + 0,2: + 0: 49075 + -1,2: + 0: 36092 + 0,3: + 0: 136 + 1,0: + 0: 65535 + 1,1: + 0: 4351 + 1,2: + 0: 32624 + 1,3: + 0: 119 + 1,-1: + 0: 15104 + 2,1: + 0: 51 + 2,2: + 0: 14128 + 1: 8 + 2,0: + 0: 8738 + 2,-1: + 0: 8960 + 2,3: + 1: 8 + -4,0: + 0: 4351 + -4,-1: + 0: 61559 + -5,0: + 0: 62719 + -4,1: + 0: 17 + -5,1: + 0: 255 + -3,0: + 0: 15 + -2,0: + 0: 15 + -2,2: + 0: 128 + -1,-1: + 0: 51200 + -4,-3: + 0: 12288 + -4,-2: + 0: 30467 + -5,-3: + 0: 61440 + -5,-2: + 0: 60934 + -5,-1: + 0: 63726 + -8,-2: + 0: 57344 + -8,-1: + 0: 59630 + -9,-1: + 1: 32768 + -8,0: + 0: 59630 + -7,-2: + 0: 14464 + -7,-1: + 0: 61627 + -7,0: + 0: 45311 + -7,-3: + 0: 34816 + -6,-3: + 0: 64768 + -6,-2: + 0: 53212 + -6,-1: + 0: 64765 + -6,0: + 0: 29439 + -9,0: + 1: 140 + -8,1: + 0: 14 + -7,1: + 0: 11 + -6,1: + 0: 7 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ExplosionAirtightGrid +- proto: AirAlarm + entities: + - uid: 1115 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 1092 + - 1093 + - 1094 + - 1095 + - 846 + - 741 + - 1113 + - 844 + - 1111 + - 739 + - type: Fixtures + fixtures: {} + - uid: 1116 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - type: DeviceList + devices: + - 1114 + - 847 + - 742 + - 1095 + - type: Fixtures + fixtures: {} + - uid: 1117 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - type: DeviceList + devices: + - 1093 + - 1094 + - 845 + - 1112 + - 740 + - type: Fixtures + fixtures: {} + - uid: 1118 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 1097 + - 1098 + - 1096 + - 1103 + - 1091 + - 1104 + - 1099 + - 1100 + - 1101 + - 1102 + - 730 + - 1105 + - 737 + - 842 + - 1106 + - 839 + - 734 + - type: Fixtures + fixtures: {} + - uid: 1119 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 843 + - 1109 + - 738 + - 1096 + - type: Fixtures + fixtures: {} + - uid: 1120 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 1098 + - 1107 + - 837 + - 728 + - type: Fixtures + fixtures: {} + - uid: 1121 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 1108 + - 838 + - 729 + - 1097 + - type: Fixtures + fixtures: {} + - uid: 1122 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 736 + - 1110 + - 841 + - 1104 + - type: Fixtures + fixtures: {} +- proto: Airlock + entities: + - uid: 1074 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 1063 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1065: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 1065 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1064: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassShuttleLavalandOutpost + entities: + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 1073 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 +- proto: AirlockMaintLocked + entities: + - uid: 1072 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 +- proto: AirlockSalvageGlass + entities: + - uid: 937 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 1066 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: AirlockSalvageLocked + entities: + - uid: 1071 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 1105 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1106 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1107 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1120 + - uid: 1108 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1121 + - uid: 1109 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1119 + - uid: 1110 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1122 + - uid: 1111 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - uid: 1112 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1117 + - uid: 1113 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - uid: 1114 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1116 +- proto: APCBasic + entities: + - uid: 512 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 513 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 354 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 939 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 398 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 +- proto: Beaker + entities: + - uid: 1082 + components: + - type: Transform + pos: -13.266394,-3.577156 + parent: 1 +- proto: Bed + entities: + - uid: 451 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 456 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 454 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 +- proto: BookHowToSurvive + entities: + - uid: 404 + components: + - type: Transform + pos: 0.47197527,11.656516 + parent: 1 +- proto: BorgCharger + entities: + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 1 +- proto: Brutepack + entities: + - uid: 429 + components: + - type: Transform + pos: -21.636887,4.2362056 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 484 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: CableHV + entities: + - uid: 504 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 +- proto: CableMV + entities: + - uid: 515 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -25.5,1.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 1 +- proto: CandleRedSmallInfinite + entities: + - uid: 475 + components: + - type: Transform + pos: -16.502804,-4.4405627 + parent: 1 +- proto: Carpet + entities: + - uid: 439 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 256 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 1 +- proto: Chair + entities: + - uid: 469 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 384 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 +- proto: ClothingNeckChokerBlack + entities: + - uid: 1059 + components: + - type: Transform + pos: -24.297009,-3.524389 + parent: 1 +- proto: ClothingUnderSocksCyan + entities: + - uid: 1060 + components: + - type: Transform + pos: -24.651176,-3.2905626 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 357 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 400 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 425 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 367 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: CrateMaterialRandom + entities: + - uid: 421 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 +- proto: CratePermaEscapeMats + entities: + - uid: 401 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: CrateTrashCart + entities: + - uid: 408 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: CurtainsSkyBlueOpen + entities: + - uid: 460 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 +- proto: DefaultStationBeaconCargoLavalandAvanpost + entities: + - uid: 376 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: DisposalBend + entities: + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 1 + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 964 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 1 + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + - uid: 983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + - uid: 992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - uid: 993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-5.5 + parent: 1 + - uid: 959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-9.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 1 + - uid: 961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 945 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 +- proto: DisposalXJunction + entities: + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: DisposalYJunction + entities: + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 +- proto: DonkpocketBoxSpawner + entities: + - uid: 476 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 +- proto: DrinkMugOne + entities: + - uid: 1051 + components: + - type: Transform + pos: -13.658135,-3.8257675 + parent: 1 +- proto: Firelock + entities: + - uid: 1097 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1121 + - 1118 + - uid: 1098 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - 1120 + - uid: 1099 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1100 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1101 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1102 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1103 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1104 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - 1122 +- proto: FirelockGlass + entities: + - uid: 1091 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - uid: 1092 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - uid: 1093 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - 1117 + - uid: 1094 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - 1117 + - uid: 1095 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - 1116 + - uid: 1096 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - 1119 +- proto: FloorDrain + entities: + - uid: 459 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodShakerPepper + entities: + - uid: 474 + components: + - type: Transform + pos: -16.350025,-4.3225074 + parent: 1 +- proto: FoodShakerSalt + entities: + - uid: 473 + components: + - type: Transform + pos: -16.662525,-4.4475074 + parent: 1 +- proto: GasMixerFlipped + entities: + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 849 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 857 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 868 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 889 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourwayAlt1 + entities: + - uid: 776 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeFourwayAlt2 + entities: + - uid: 850 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeManifold + entities: + - uid: 743 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 744 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 745 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 767 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 768 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 769 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 770 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 771 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 865 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 866 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 870 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 871 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 872 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 873 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 874 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 875 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 876 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 894 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 895 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 896 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 922 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 923 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 924 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 925 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 926 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 927 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 928 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 929 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 748 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 750 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 754 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 759 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 808 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 869 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 886 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPressurePump + entities: + - uid: 420 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentPump + entities: + - uid: 728 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1120 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1121 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1122 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 738 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1119 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 740 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1117 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 742 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1116 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentScrubber + entities: + - uid: 837 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1120 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1121 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1122 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 842 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 843 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1119 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 844 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1117 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1115 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1116 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GeneratorRTG + entities: + - uid: 412 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 +- proto: HandheldGPSBasic + entities: + - uid: 407 + components: + - type: Transform + pos: 3.637837,13.296622 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 467 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 468 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 +- proto: LavalandShuttleConsole + entities: + - uid: 374 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 +- proto: LockerSalvageSpecialistLavalandFilled + entities: + - uid: 434 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 428 + components: + - type: Transform + pos: -21.386887,4.5417614 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 426 + components: + - type: Transform + pos: -21.393831,3.5487056 + parent: 1 +- proto: MirrorModern + entities: + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: NitrogenCanister + entities: + - uid: 423 + components: + - type: Transform + anchored: True + pos: -15.5,3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Ointment + entities: + - uid: 427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.678555,3.7292612 + parent: 1 +- proto: OperatingTable + entities: + - uid: 424 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 +- proto: OreBox + entities: + - uid: 382 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1 +- proto: OreProcessor + entities: + - uid: 366 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 416 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 422 + components: + - type: Transform + anchored: True + pos: -15.5,4.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Pickaxe + entities: + - uid: 406 + components: + - type: Transform + pos: 3.556231,13.585538 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 356 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: PlushieLizardJobSalvagespecialist + entities: + - uid: 1058 + components: + - type: Transform + pos: -30.473316,0.54182357 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 1 + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 1045 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 1046 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 +- proto: RandomSnacks + entities: + - uid: 1061 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 1083 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 1070 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 465 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 273 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 +- proto: Shower + entities: + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 457 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 458 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: SignalButton + entities: + - uid: 1053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignDisposalSpace + entities: + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignKitchen + entities: + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignMedical + entities: + - uid: 1043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignRestroom + entities: + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignSalvage + entities: + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignServer + entities: + - uid: 1042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignShock + entities: + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignToolStorage + entities: + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: Sink + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 414 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 +- proto: SpawnVehicleWheelchairFolded + entities: + - uid: 74 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 503 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 +- proto: SuitStorageExplorerSuit + entities: + - uid: 377 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 +- proto: SurvivalMedipen + entities: + - uid: 1062 + components: + - type: Transform + pos: 3.4649029,12.839204 + parent: 1 +- proto: Table + entities: + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 +- proto: TelecomServerFilledLavaland + entities: + - uid: 430 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 +- proto: ToiletDirtyWaterFilled + entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 405 + components: + - type: Transform + pos: 3.4798422,12.550816 + parent: 1 +- proto: ToyFigurineSalvage + entities: + - uid: 1050 + components: + - type: Transform + pos: -24.608862,-6.2981853 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 402 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 357: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 358: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 359: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 360: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 362: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 361: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 363: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 364: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 365: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineSalvage + entities: + - uid: 372 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} + - uid: 373 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} + - uid: 431 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} +- proto: VendingMachineTankDispenserExtO2 + entities: + - uid: 381 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 12 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -31.5,3.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -31.5,4.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -31.5,5.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -30.5,5.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -25.5,3.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 +- proto: WallRockBasalt + entities: + - uid: 75 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -32.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 1052 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 +- proto: WaterTankFull + entities: + - uid: 375 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 +- proto: WeldingFuelTankFull + entities: + - uid: 417 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Nonstations/cyberiadavanpost.yml b/Resources/Maps/_Wega/Nonstations/cyberiadavanpost.yml new file mode 100644 index 00000000000..e25a05aedce --- /dev/null +++ b/Resources/Maps/_Wega/Nonstations/cyberiadavanpost.yml @@ -0,0 +1,8457 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 02/20/2026 13:48:10 + entityCount: 1231 +maps: [] +grids: +- 293 +orphans: +- 293 +nullspace: [] +tilemap: + 0: Space + 30: FloorAsphalt + 31: FloorAsteroidSand + 32: FloorAsteroidSandUnvariantized + 13: FloorAsteroidTile + 21: FloorAstroGrass + 38: FloorAstroIce + 37: FloorAstroSnow + 36: FloorBar + 16: FloorBasalt + 8: FloorBlueCircuit + 19: FloorBoxing + 10: FloorBrokenWood + 25: FloorCave + 5: FloorDark + 12: FloorDesert + 34: FloorElevatorShaft + 23: FloorFreezer + 11: FloorLaundry + 4: FloorLino + 20: FloorLowDesert + 29: FloorMining + 17: FloorMiningDark + 18: FloorMiningLight + 28: FloorReinforced + 9: FloorShowroom + 33: FloorShuttleBlue + 24: FloorShuttlePurple + 35: FloorShuttleWhite + 2: FloorSteel + 1: FloorWhite + 22: FloorWood + 26: FloorWoodBlack + 15: FloorWoodLarge + 27: Lattice + 3: Plating + 14: PlatingAsteroid + 6: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 293 + components: + - type: MetaData + name: Аванпост Лаваленда + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAMAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAAADAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAACAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAgAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAABQAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 6: 19,-8 + 7: 21,-8 + 158: -16,2 + 159: -16,3 + 160: -16,4 + 161: -16,5 + 162: -16,6 + 163: 13,-6 + 164: 14,-6 + 165: 16,-6 + 166: 17,-6 + 167: 17,-10 + 168: 16,-10 + 169: 14,-10 + 170: 13,-10 + 171: 16,-4 + 172: 11,3 + 200: -15,7 + 201: -15,8 + 202: -13,8 + 203: -13,7 + 204: -13,6 + 205: -11,6 + 206: -11,7 + 207: -11,8 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 252: 15,-6 + - node: + color: '#DA8B8BFF' + id: CheckerNWSE + decals: + 211: 0,7 + 212: -1,7 + 213: -2,7 + 214: -3,7 + 215: -3,8 + 216: -3,9 + 217: -2,9 + 218: -2,8 + 219: -1,8 + 220: -1,9 + 221: 0,9 + 222: 0,8 + 223: 1,8 + 224: 1,7 + 225: 1,9 + 226: 2,9 + 227: 2,10 + 228: 2,11 + 229: 3,11 + 230: 4,11 + 231: 4,10 + 232: 3,10 + 233: 3,9 + 234: 4,9 + 235: 4,8 + 236: 4,7 + 237: 3,7 + 238: 3,8 + 239: 2,8 + 240: 2,7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -4,-8 + 1: 4,-8 + 2: -10,-6 + 3: -15,0 + 4: 10,-6 + 5: 20,-8 + 173: 16,-3 + 247: 9,9 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 12: 20,-7 + 21: 14,-7 + 22: 15,-7 + 23: 16,-7 + 53: 8,5 + 54: 7,5 + 55: 6,5 + 56: 4,5 + 57: 5,5 + 58: 3,5 + 59: -8,5 + 60: -7,5 + 61: -6,5 + 62: -5,5 + 63: -4,5 + 64: -3,5 + 65: -2,5 + 66: -1,5 + 67: 0,5 + 68: 1,5 + 125: -14,8 + 126: -13,8 + 127: -12,8 + 146: -13,-6 + 147: -14,-6 + 180: 13,1 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 197: 0,-1 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 13: 20,-9 + 14: 16,-9 + 15: 15,-9 + 16: 14,-9 + 26: 7,-9 + 27: 8,-9 + 28: 9,-9 + 69: 6,3 + 70: 4,3 + 71: 3,3 + 72: 2,3 + 73: 1,3 + 74: -1,3 + 75: -2,3 + 76: -3,3 + 77: -4,3 + 78: -6,3 + 139: -14,1 + 140: -13,1 + 141: -12,1 + 148: -13,-10 + 149: -14,-10 + 186: 13,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 199: -1,0 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 31: 7,-6 + 32: 7,-5 + 33: 7,-4 + 34: 7,-3 + 35: 7,-2 + 36: 7,-1 + 37: 7,0 + 38: 7,1 + 39: 7,2 + 94: -9,-6 + 95: -9,-5 + 96: -9,-4 + 97: -9,-2 + 98: -9,-1 + 99: -9,0 + 100: -9,1 + 101: -9,2 + 102: -9,3 + 112: -5,0 + 115: 4,0 + 128: -15,7 + 129: -15,6 + 130: -15,5 + 131: -15,4 + 132: -15,3 + 133: -15,2 + 154: -16,-8 + 185: 14,-4 + 189: 12,-2 + 208: -14,3 + 209: -12,3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 198: 1,0 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 40: 9,2 + 41: 9,-1 + 42: 9,-2 + 43: 9,-3 + 44: 9,-4 + 45: 9,-5 + 46: 9,-6 + 51: 9,4 + 52: 9,3 + 79: -7,2 + 80: -7,1 + 81: -7,0 + 82: -7,-1 + 83: -7,-2 + 84: -7,-3 + 85: -7,-4 + 86: -7,-5 + 87: -7,-6 + 113: -4,0 + 114: 5,0 + 121: -11,6 + 122: -11,7 + 136: -11,2 + 137: -11,3 + 138: -11,4 + 142: -12,-7 + 143: -12,-9 + 182: 14,0 + 183: 14,-1 + 184: 14,-2 + 210: -13,3 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 241: 19,-9 + 242: 20,-9 + 243: 21,-9 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 174: 15,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 176: 11,-3 + 244: 19,-7 + 245: 20,-7 + 246: 21,-7 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 175: 12,-4 + 177: 12,3 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 48: 7,-7 + 105: -9,-7 + 156: -15,-7 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 107: -7,-9 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 49: 7,3 + 104: -9,-9 + 155: -15,-9 + 190: 12,-1 + 191: 14,-3 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 47: 9,-7 + 106: -7,-7 + 157: -12,5 + 192: 12,1 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 193: -1,1 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9: 19,-7 + 18: 13,-7 + 29: 6,-7 + 93: -10,-7 + 103: -9,5 + 110: -5,1 + 116: 4,1 + 124: -15,8 + 152: -15,-6 + 153: -16,-7 + 178: 11,2 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 196: 1,-1 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 11: 21,-9 + 20: 17,-9 + 24: 10,-9 + 89: -6,-9 + 90: -7,-10 + 109: -4,-1 + 119: 5,-1 + 135: -11,1 + 144: -12,-10 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 195: -1,-1 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8: 19,-9 + 17: 13,-9 + 25: 6,-9 + 91: -9,-10 + 92: -10,-9 + 108: -5,-1 + 118: 4,-1 + 134: -15,1 + 150: -15,-10 + 151: -16,-9 + 187: 12,-3 + 188: 11,-1 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 194: 1,1 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 10: 21,-7 + 19: 17,-7 + 30: 10,-7 + 50: 9,5 + 88: -6,-7 + 111: -4,1 + 117: 5,1 + 120: -11,5 + 123: -11,8 + 145: -12,-6 + 179: 12,2 + 181: 14,1 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 251: 13,13 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 248: 13,11 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 249: 13,12 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 250: 13,12 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 61815 + 0,-1: + 0: 28672 + -1,0: + 0: 61661 + 0,1: + 0: 62719 + -1,1: + 0: 57599 + 0,2: + 0: 65535 + -1,2: + 0: 61166 + 0,3: + 0: 3 + -1,3: + 0: 14 + 1,0: + 0: 64187 + 1,1: + 0: 55551 + 1,2: + 0: 53725 + 1,-1: + 0: 47240 + 2,0: + 0: 48127 + 2,1: + 0: 47347 + 2,2: + 0: 4283 + 1,3: + 0: 8 + 2,-1: + 0: 48059 + 3,0: + 0: 53623 + 3,1: + 0: 13104 + 3,2: + 0: 12595 + 3,3: + 0: 3 + 3,-1: + 0: 30719 + 4,0: + 0: 4369 + -4,0: + 0: 65518 + -4,1: + 0: 61439 + -4,2: + 0: 14 + -3,0: + 0: 48059 + -3,1: + 0: 46015 + -3,2: + 0: 11 + -3,-1: + 0: 35835 + -2,0: + 0: 64443 + -2,1: + 0: 62207 + -2,2: + 0: 127 + -2,-1: + 0: 45875 + -1,-1: + 0: 53248 + 0,-2: + 0: 8 + 1,-2: + 0: 36047 + 1,-3: + 0: 51200 + 2,-3: + 0: 29440 + 2,-2: + 0: 14207 + 3,-3: + 0: 65024 + 3,-2: + 0: 3839 + 4,-3: + 0: 45824 + 4,-2: + 0: 959 + 4,-1: + 0: 4369 + -4,-3: + 0: 65024 + -4,-2: + 0: 3839 + -4,-1: + 0: 3084 + -3,-3: + 0: 55552 + -3,-2: + 0: 36319 + -2,-3: + 0: 29440 + -2,-2: + 0: 14207 + -1,-2: + 0: 3 + 5,-3: + 0: 12288 + 5,-2: + 0: 55 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: AirAlarm + entities: + - uid: 294 + components: + - type: Transform + pos: 12.5,4.5 + parent: 293 + - type: DeviceList + devices: + - 2667 + - 2652 + - type: Fixtures + fixtures: {} + - uid: 295 + components: + - type: Transform + pos: 6.5,10.5 + parent: 293 + - type: DeviceList + devices: + - 2651 + - type: Fixtures + fixtures: {} + - uid: 296 + components: + - type: Transform + pos: 2.5,12.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 297 + components: + - type: Transform + pos: -2.5,6.5 + parent: 293 + - type: DeviceList + devices: + - 2665 + - 2655 + - 2654 + - 2664 + - 2650 + - 2663 + - type: Fixtures + fixtures: {} + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 293 + - type: DeviceList + devices: + - 2653 + - 2668 + - 339 + - type: Fixtures + fixtures: {} + - uid: 299 + components: + - type: Transform + pos: -4.5,9.5 + parent: 293 + - type: DeviceList + devices: + - 2656 + - 340 + - 2666 + - type: Fixtures + fixtures: {} +- proto: Airlock + entities: + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 293 + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 293 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 293 + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 293 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 293 + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 293 +- proto: AirlockExternalGlass + entities: + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 293 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 293 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 293 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 321: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 293 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 316: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassShuttleLavalandOutpost + entities: + - uid: 1 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 293 + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 293 +- proto: AirlockGlass + entities: + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 293 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 293 +- proto: AirlockMaint + entities: + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 293 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 293 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 293 +- proto: AirlockMedicalGlass + entities: + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 293 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 293 +- proto: AirlockSalvageLocked + entities: + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 293 +- proto: AirSensor + entities: + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 298 + - 1887 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 299 + - 1884 +- proto: APCBasic + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 342 + components: + - type: Transform + pos: -8.5,9.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 343 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 346 + components: + - type: Transform + pos: 8.5,10.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 352 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 293 + - uid: 353 + components: + - type: Transform + pos: 13.5,13.5 + parent: 293 + - uid: 354 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 293 + - uid: 355 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 293 +- proto: BaseComputer + entities: + - uid: 1181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 293 +- proto: Bed + entities: + - uid: 1184 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 293 + - uid: 1185 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 293 +- proto: BedsheetOrange + entities: + - uid: 1187 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 293 +- proto: BedsheetSpawner + entities: + - uid: 1188 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 293 +- proto: BlastDoor + entities: + - uid: 1190 + components: + - type: Transform + pos: 13.5,13.5 + parent: 293 +- proto: BorgCharger + entities: + - uid: 1191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 293 + - type: EntityStorage + removedMasks: 20 + open: True + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 +- proto: BoxFlare + entities: + - uid: 1192 + components: + - type: Transform + pos: -13.506026,3.6046884 + parent: 293 +- proto: CableApcExtension + entities: + - uid: 45 + components: + - type: Transform + pos: 10.5,7.5 + parent: 293 + - uid: 46 + components: + - type: Transform + pos: 11.5,7.5 + parent: 293 + - uid: 47 + components: + - type: Transform + pos: 12.5,7.5 + parent: 293 + - uid: 48 + components: + - type: Transform + pos: 12.5,6.5 + parent: 293 + - uid: 49 + components: + - type: Transform + pos: 12.5,5.5 + parent: 293 + - uid: 50 + components: + - type: Transform + pos: 12.5,8.5 + parent: 293 + - uid: 51 + components: + - type: Transform + pos: 12.5,9.5 + parent: 293 + - uid: 52 + components: + - type: Transform + pos: 12.5,10.5 + parent: 293 + - uid: 53 + components: + - type: Transform + pos: 12.5,11.5 + parent: 293 + - uid: 54 + components: + - type: Transform + pos: 12.5,12.5 + parent: 293 + - uid: 1193 + components: + - type: Transform + pos: -8.5,9.5 + parent: 293 + - uid: 1194 + components: + - type: Transform + pos: -8.5,8.5 + parent: 293 + - uid: 1195 + components: + - type: Transform + pos: -7.5,8.5 + parent: 293 + - uid: 1196 + components: + - type: Transform + pos: -6.5,8.5 + parent: 293 + - uid: 1197 + components: + - type: Transform + pos: -5.5,8.5 + parent: 293 + - uid: 1198 + components: + - type: Transform + pos: -4.5,8.5 + parent: 293 + - uid: 1199 + components: + - type: Transform + pos: -6.5,7.5 + parent: 293 + - uid: 1200 + components: + - type: Transform + pos: -6.5,9.5 + parent: 293 + - uid: 1201 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 293 + - uid: 1202 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 293 + - uid: 1203 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 293 + - uid: 1204 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 293 + - uid: 1205 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 293 + - uid: 1206 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 293 + - uid: 1207 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 293 + - uid: 1208 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 293 + - uid: 1209 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 293 + - uid: 1210 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 293 + - uid: 1211 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 293 + - uid: 1212 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 293 + - uid: 1213 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 293 + - uid: 1214 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 293 + - uid: 1215 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 293 + - uid: 1216 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 293 + - uid: 1217 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 293 + - uid: 1218 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 293 + - uid: 1219 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 293 + - uid: 1220 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 293 + - uid: 1221 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 293 + - uid: 1222 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 293 + - uid: 1223 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 293 + - uid: 1224 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 293 + - uid: 1225 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 293 + - uid: 1226 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 293 + - uid: 1227 + components: + - type: Transform + pos: -7.5,0.5 + parent: 293 + - uid: 1228 + components: + - type: Transform + pos: -7.5,1.5 + parent: 293 + - uid: 1229 + components: + - type: Transform + pos: -7.5,2.5 + parent: 293 + - uid: 1230 + components: + - type: Transform + pos: -7.5,3.5 + parent: 293 + - uid: 1231 + components: + - type: Transform + pos: -7.5,4.5 + parent: 293 + - uid: 1232 + components: + - type: Transform + pos: -7.5,5.5 + parent: 293 + - uid: 1233 + components: + - type: Transform + pos: -8.5,4.5 + parent: 293 + - uid: 1234 + components: + - type: Transform + pos: -9.5,4.5 + parent: 293 + - uid: 1235 + components: + - type: Transform + pos: -10.5,4.5 + parent: 293 + - uid: 1236 + components: + - type: Transform + pos: -11.5,4.5 + parent: 293 + - uid: 1237 + components: + - type: Transform + pos: -12.5,4.5 + parent: 293 + - uid: 1238 + components: + - type: Transform + pos: -13.5,4.5 + parent: 293 + - uid: 1239 + components: + - type: Transform + pos: -14.5,4.5 + parent: 293 + - uid: 1240 + components: + - type: Transform + pos: -15.5,4.5 + parent: 293 + - uid: 1241 + components: + - type: Transform + pos: -12.5,3.5 + parent: 293 + - uid: 1242 + components: + - type: Transform + pos: -12.5,2.5 + parent: 293 + - uid: 1243 + components: + - type: Transform + pos: -12.5,1.5 + parent: 293 + - uid: 1244 + components: + - type: Transform + pos: -12.5,0.5 + parent: 293 + - uid: 1245 + components: + - type: Transform + pos: -12.5,5.5 + parent: 293 + - uid: 1246 + components: + - type: Transform + pos: -12.5,6.5 + parent: 293 + - uid: 1247 + components: + - type: Transform + pos: -12.5,7.5 + parent: 293 + - uid: 1248 + components: + - type: Transform + pos: -12.5,8.5 + parent: 293 + - uid: 1249 + components: + - type: Transform + pos: -13.5,7.5 + parent: 293 + - uid: 1250 + components: + - type: Transform + pos: -11.5,7.5 + parent: 293 + - uid: 1251 + components: + - type: Transform + pos: -13.5,1.5 + parent: 293 + - uid: 1252 + components: + - type: Transform + pos: -11.5,1.5 + parent: 293 + - uid: 1253 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 293 + - uid: 1254 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 293 + - uid: 1255 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 293 + - uid: 1256 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 293 + - uid: 1257 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 293 + - uid: 1258 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 293 + - uid: 1259 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 293 + - uid: 1260 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 293 + - uid: 1261 + components: + - type: Transform + pos: -6.5,3.5 + parent: 293 + - uid: 1262 + components: + - type: Transform + pos: -5.5,3.5 + parent: 293 + - uid: 1263 + components: + - type: Transform + pos: -4.5,3.5 + parent: 293 + - uid: 1264 + components: + - type: Transform + pos: -4.5,2.5 + parent: 293 + - uid: 1265 + components: + - type: Transform + pos: -4.5,1.5 + parent: 293 + - uid: 1266 + components: + - type: Transform + pos: -4.5,0.5 + parent: 293 + - uid: 1267 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 293 + - uid: 1268 + components: + - type: Transform + pos: -3.5,0.5 + parent: 293 + - uid: 1269 + components: + - type: Transform + pos: 8.5,10.5 + parent: 293 + - uid: 1270 + components: + - type: Transform + pos: 8.5,9.5 + parent: 293 + - uid: 1271 + components: + - type: Transform + pos: 8.5,8.5 + parent: 293 + - uid: 1272 + components: + - type: Transform + pos: 6.5,4.5 + parent: 293 + - uid: 1273 + components: + - type: Transform + pos: 9.5,8.5 + parent: 293 + - uid: 1274 + components: + - type: Transform + pos: 7.5,8.5 + parent: 293 + - uid: 1275 + components: + - type: Transform + pos: 6.5,8.5 + parent: 293 + - uid: 1276 + components: + - type: Transform + pos: 7.5,7.5 + parent: 293 + - uid: 1277 + components: + - type: Transform + pos: 7.5,6.5 + parent: 293 + - uid: 1278 + components: + - type: Transform + pos: 7.5,5.5 + parent: 293 + - uid: 1279 + components: + - type: Transform + pos: 7.5,4.5 + parent: 293 + - uid: 1280 + components: + - type: Transform + pos: 5.5,4.5 + parent: 293 + - uid: 1281 + components: + - type: Transform + pos: 4.5,4.5 + parent: 293 + - uid: 1282 + components: + - type: Transform + pos: 3.5,4.5 + parent: 293 + - uid: 1283 + components: + - type: Transform + pos: 2.5,4.5 + parent: 293 + - uid: 1284 + components: + - type: Transform + pos: 1.5,4.5 + parent: 293 + - uid: 1285 + components: + - type: Transform + pos: 0.5,4.5 + parent: 293 + - uid: 1286 + components: + - type: Transform + pos: -0.5,4.5 + parent: 293 + - uid: 1287 + components: + - type: Transform + pos: -1.5,4.5 + parent: 293 + - uid: 1288 + components: + - type: Transform + pos: -2.5,4.5 + parent: 293 + - uid: 1289 + components: + - type: Transform + pos: 0.5,3.5 + parent: 293 + - uid: 1290 + components: + - type: Transform + pos: 0.5,2.5 + parent: 293 + - uid: 1291 + components: + - type: Transform + pos: 0.5,1.5 + parent: 293 + - uid: 1292 + components: + - type: Transform + pos: 0.5,0.5 + parent: 293 + - uid: 1293 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 293 + - uid: 1294 + components: + - type: Transform + pos: -0.5,0.5 + parent: 293 + - uid: 1296 + components: + - type: Transform + pos: -1.5,0.5 + parent: 293 + - uid: 1297 + components: + - type: Transform + pos: 1.5,0.5 + parent: 293 + - uid: 1298 + components: + - type: Transform + pos: 2.5,0.5 + parent: 293 + - uid: 1299 + components: + - type: Transform + pos: 5.5,3.5 + parent: 293 + - uid: 1300 + components: + - type: Transform + pos: 5.5,2.5 + parent: 293 + - uid: 1301 + components: + - type: Transform + pos: 5.5,1.5 + parent: 293 + - uid: 1302 + components: + - type: Transform + pos: 5.5,0.5 + parent: 293 + - uid: 1303 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 293 + - uid: 1304 + components: + - type: Transform + pos: 4.5,0.5 + parent: 293 + - uid: 1305 + components: + - type: Transform + pos: 2.5,5.5 + parent: 293 + - uid: 1306 + components: + - type: Transform + pos: 2.5,6.5 + parent: 293 + - uid: 1307 + components: + - type: Transform + pos: 2.5,7.5 + parent: 293 + - uid: 1308 + components: + - type: Transform + pos: 2.5,8.5 + parent: 293 + - uid: 1309 + components: + - type: Transform + pos: 2.5,9.5 + parent: 293 + - uid: 1310 + components: + - type: Transform + pos: 2.5,10.5 + parent: 293 + - uid: 1311 + components: + - type: Transform + pos: 2.5,11.5 + parent: 293 + - uid: 1312 + components: + - type: Transform + pos: 3.5,9.5 + parent: 293 + - uid: 1313 + components: + - type: Transform + pos: 4.5,9.5 + parent: 293 + - uid: 1314 + components: + - type: Transform + pos: 1.5,9.5 + parent: 293 + - uid: 1315 + components: + - type: Transform + pos: 0.5,9.5 + parent: 293 + - uid: 1316 + components: + - type: Transform + pos: -0.5,9.5 + parent: 293 + - uid: 1317 + components: + - type: Transform + pos: -1.5,9.5 + parent: 293 + - uid: 1318 + components: + - type: Transform + pos: -2.5,9.5 + parent: 293 + - uid: 1319 + components: + - type: Transform + pos: 1.5,11.5 + parent: 293 + - uid: 1320 + components: + - type: Transform + pos: 0.5,11.5 + parent: 293 + - uid: 1321 + components: + - type: Transform + pos: -0.5,11.5 + parent: 293 + - uid: 1322 + components: + - type: Transform + pos: -1.5,11.5 + parent: 293 + - uid: 1323 + components: + - type: Transform + pos: -2.5,11.5 + parent: 293 + - uid: 1324 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 293 + - uid: 1325 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 293 + - uid: 1326 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 293 + - uid: 1327 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 293 + - uid: 1328 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 293 + - uid: 1329 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 293 + - uid: 1330 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 293 + - uid: 1331 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 293 + - uid: 1332 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 293 + - uid: 1333 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 293 + - uid: 1334 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 293 + - uid: 1335 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 293 + - uid: 1336 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 293 + - uid: 1337 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 293 + - uid: 1338 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 293 + - uid: 1339 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 293 + - uid: 1340 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 293 + - uid: 1341 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 293 + - uid: 1342 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 293 + - uid: 1343 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 293 + - uid: 1344 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 293 + - uid: 1345 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 293 + - uid: 1346 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 293 + - uid: 1347 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 293 + - uid: 1348 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 293 + - uid: 1349 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 293 + - uid: 1350 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 293 + - uid: 1351 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 293 + - uid: 1352 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 293 + - uid: 1353 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 293 + - uid: 1354 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 293 + - uid: 1355 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 293 + - uid: 1356 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 293 + - uid: 1357 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 293 + - uid: 1358 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 293 + - uid: 1359 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 293 + - uid: 1360 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 293 + - uid: 1361 + components: + - type: Transform + pos: 8.5,0.5 + parent: 293 + - uid: 1362 + components: + - type: Transform + pos: 8.5,1.5 + parent: 293 + - uid: 1363 + components: + - type: Transform + pos: 8.5,2.5 + parent: 293 + - uid: 1364 + components: + - type: Transform + pos: 8.5,3.5 + parent: 293 + - uid: 1365 + components: + - type: Transform + pos: 7.5,1.5 + parent: 293 + - uid: 1366 + components: + - type: Transform + pos: 9.5,1.5 + parent: 293 + - uid: 1367 + components: + - type: Transform + pos: 10.5,1.5 + parent: 293 + - uid: 1368 + components: + - type: Transform + pos: 11.5,1.5 + parent: 293 + - uid: 1369 + components: + - type: Transform + pos: 12.5,1.5 + parent: 293 + - uid: 1370 + components: + - type: Transform + pos: 12.5,2.5 + parent: 293 + - uid: 1371 + components: + - type: Transform + pos: 12.5,3.5 + parent: 293 + - uid: 1372 + components: + - type: Transform + pos: 12.5,0.5 + parent: 293 + - uid: 1373 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 293 + - uid: 1374 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 293 + - uid: 1375 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 293 + - uid: 1376 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 293 + - uid: 1377 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 293 + - uid: 1378 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 293 + - uid: 1379 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 293 + - uid: 1380 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 293 + - uid: 1381 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 293 + - uid: 1382 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 293 + - uid: 1383 + components: + - type: Transform + pos: 16.5,0.5 + parent: 293 + - uid: 1384 + components: + - type: Transform + pos: 16.5,1.5 + parent: 293 + - uid: 1385 + components: + - type: Transform + pos: 16.5,2.5 + parent: 293 + - uid: 1386 + components: + - type: Transform + pos: 16.5,3.5 + parent: 293 + - uid: 1387 + components: + - type: Transform + pos: 15.5,3.5 + parent: 293 + - uid: 1388 + components: + - type: Transform + pos: 14.5,3.5 + parent: 293 + - uid: 1389 + components: + - type: Transform + pos: 13.5,3.5 + parent: 293 +- proto: CableHV + entities: + - uid: 1467 + components: + - type: Transform + pos: 11.5,6.5 + parent: 293 + - uid: 1468 + components: + - type: Transform + pos: 11.5,7.5 + parent: 293 + - uid: 1469 + components: + - type: Transform + pos: 11.5,8.5 + parent: 293 + - uid: 1470 + components: + - type: Transform + pos: 11.5,9.5 + parent: 293 + - uid: 1471 + components: + - type: Transform + pos: 12.5,9.5 + parent: 293 + - uid: 1472 + components: + - type: Transform + pos: 12.5,8.5 + parent: 293 + - uid: 1473 + components: + - type: Transform + pos: 13.5,9.5 + parent: 293 + - uid: 1474 + components: + - type: Transform + pos: 13.5,10.5 + parent: 293 +- proto: CableMV + entities: + - uid: 43 + components: + - type: Transform + pos: 11.5,7.5 + parent: 293 + - uid: 44 + components: + - type: Transform + pos: 10.5,7.5 + parent: 293 + - uid: 1483 + components: + - type: Transform + pos: 13.5,10.5 + parent: 293 + - uid: 1484 + components: + - type: Transform + pos: 13.5,9.5 + parent: 293 + - uid: 1485 + components: + - type: Transform + pos: 12.5,9.5 + parent: 293 + - uid: 1486 + components: + - type: Transform + pos: 12.5,8.5 + parent: 293 + - uid: 1487 + components: + - type: Transform + pos: 12.5,7.5 + parent: 293 + - uid: 1488 + components: + - type: Transform + pos: 12.5,6.5 + parent: 293 + - uid: 1489 + components: + - type: Transform + pos: 12.5,5.5 + parent: 293 + - uid: 1490 + components: + - type: Transform + pos: 11.5,5.5 + parent: 293 + - uid: 1491 + components: + - type: Transform + pos: 10.5,5.5 + parent: 293 + - uid: 1492 + components: + - type: Transform + pos: 9.5,5.5 + parent: 293 + - uid: 1493 + components: + - type: Transform + pos: 8.5,5.5 + parent: 293 + - uid: 1494 + components: + - type: Transform + pos: 7.5,5.5 + parent: 293 + - uid: 1495 + components: + - type: Transform + pos: 6.5,5.5 + parent: 293 + - uid: 1496 + components: + - type: Transform + pos: 5.5,5.5 + parent: 293 + - uid: 1497 + components: + - type: Transform + pos: 4.5,5.5 + parent: 293 + - uid: 1498 + components: + - type: Transform + pos: 3.5,5.5 + parent: 293 + - uid: 1499 + components: + - type: Transform + pos: 2.5,5.5 + parent: 293 + - uid: 1500 + components: + - type: Transform + pos: 1.5,5.5 + parent: 293 + - uid: 1501 + components: + - type: Transform + pos: 0.5,5.5 + parent: 293 + - uid: 1502 + components: + - type: Transform + pos: -0.5,5.5 + parent: 293 + - uid: 1503 + components: + - type: Transform + pos: -1.5,5.5 + parent: 293 + - uid: 1504 + components: + - type: Transform + pos: -2.5,5.5 + parent: 293 + - uid: 1505 + components: + - type: Transform + pos: -3.5,5.5 + parent: 293 + - uid: 1506 + components: + - type: Transform + pos: -4.5,5.5 + parent: 293 + - uid: 1507 + components: + - type: Transform + pos: -5.5,5.5 + parent: 293 + - uid: 1508 + components: + - type: Transform + pos: -6.5,5.5 + parent: 293 + - uid: 1509 + components: + - type: Transform + pos: -6.5,6.5 + parent: 293 + - uid: 1510 + components: + - type: Transform + pos: -6.5,7.5 + parent: 293 + - uid: 1511 + components: + - type: Transform + pos: -6.5,8.5 + parent: 293 + - uid: 1512 + components: + - type: Transform + pos: -7.5,8.5 + parent: 293 + - uid: 1513 + components: + - type: Transform + pos: -8.5,8.5 + parent: 293 + - uid: 1514 + components: + - type: Transform + pos: -8.5,9.5 + parent: 293 + - uid: 1515 + components: + - type: Transform + pos: 8.5,4.5 + parent: 293 + - uid: 1516 + components: + - type: Transform + pos: 8.5,3.5 + parent: 293 + - uid: 1517 + components: + - type: Transform + pos: 8.5,2.5 + parent: 293 + - uid: 1518 + components: + - type: Transform + pos: 8.5,1.5 + parent: 293 + - uid: 1519 + components: + - type: Transform + pos: 8.5,0.5 + parent: 293 + - uid: 1520 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 293 + - uid: 1521 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 293 + - uid: 1522 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 293 + - uid: 1523 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 293 + - uid: 1524 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 293 + - uid: 1525 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 293 + - uid: 1526 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 293 + - uid: 1527 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 293 + - uid: 1528 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 293 + - uid: 1529 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 293 + - uid: 1530 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 293 + - uid: 1531 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 293 + - uid: 1532 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 293 + - uid: 1533 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 293 + - uid: 1534 + components: + - type: Transform + pos: -6.5,4.5 + parent: 293 + - uid: 1535 + components: + - type: Transform + pos: -6.5,3.5 + parent: 293 + - uid: 1536 + components: + - type: Transform + pos: -6.5,2.5 + parent: 293 + - uid: 1537 + components: + - type: Transform + pos: -6.5,1.5 + parent: 293 + - uid: 1538 + components: + - type: Transform + pos: -6.5,0.5 + parent: 293 + - uid: 1539 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 293 + - uid: 1540 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 293 + - uid: 1541 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 293 + - uid: 1542 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 293 + - uid: 1543 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 293 + - uid: 1544 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 293 + - uid: 1545 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 293 + - uid: 1546 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 293 + - uid: 1547 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 293 + - uid: 1548 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 293 + - uid: 1549 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 293 + - uid: 1550 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 293 + - uid: 1551 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 293 + - uid: 1552 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 293 + - uid: 1553 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 293 + - uid: 1554 + components: + - type: Transform + pos: 7.5,6.5 + parent: 293 + - uid: 1555 + components: + - type: Transform + pos: 7.5,7.5 + parent: 293 + - uid: 1556 + components: + - type: Transform + pos: 7.5,8.5 + parent: 293 + - uid: 1557 + components: + - type: Transform + pos: 7.5,9.5 + parent: 293 + - uid: 1558 + components: + - type: Transform + pos: 8.5,9.5 + parent: 293 + - uid: 1559 + components: + - type: Transform + pos: 8.5,10.5 + parent: 293 +- proto: CableTerminal + entities: + - uid: 1574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 293 +- proto: CandleRed + entities: + - uid: 1576 + components: + - type: Transform + pos: 0.68075204,7.4990463 + parent: 293 + - uid: 1577 + components: + - type: Transform + pos: 4.275165,10.681313 + parent: 293 +- proto: Catwalk + entities: + - uid: 1578 + components: + - type: Transform + pos: 6.5,11.5 + parent: 293 + - uid: 1579 + components: + - type: Transform + pos: 7.5,11.5 + parent: 293 + - uid: 1580 + components: + - type: Transform + pos: 8.5,11.5 + parent: 293 + - uid: 1581 + components: + - type: Transform + pos: 7.5,12.5 + parent: 293 +- proto: Chair + entities: + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 293 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 293 + - uid: 1588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 293 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 293 + - uid: 1590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 293 + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 293 + - uid: 1592 + components: + - type: Transform + pos: 4.5,11.5 + parent: 293 + - uid: 1593 + components: + - type: Transform + pos: 4.5,11.5 + parent: 293 +- proto: CheapRollerBed + entities: + - uid: 1602 + components: + - type: Transform + pos: 7.4759264,9.534868 + parent: 293 +- proto: ChessBoard + entities: + - uid: 31 + components: + - type: Transform + pos: -7.4864798,-9.411233 + parent: 293 +- proto: CigPackRed + entities: + - uid: 1608 + components: + - type: Transform + pos: -11.367986,3.5365286 + parent: 293 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1609 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 293 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1610 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1611 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 293 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1612 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1613 + components: + - type: Transform + pos: 13.5,5.5 + parent: 293 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: ClothingHandsGlovesCombat + entities: + - uid: 1650 + components: + - type: Transform + pos: -11.496738,-8.780467 + parent: 293 +- proto: ClothingMaskGasExplorer + entities: + - uid: 1700 + components: + - type: Transform + pos: -11.347353,-8.384492 + parent: 293 +- proto: ComfyChair + entities: + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 293 + - uid: 1758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 293 +- proto: ConveyorBelt + entities: + - uid: 1763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 293 + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 293 + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 293 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 293 + - uid: 1767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 293 + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 293 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 293 + - uid: 1770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 293 + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 293 +- proto: CrateFilledSpawner + entities: + - uid: 1772 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 293 +- proto: CrateFreezer + entities: + - uid: 1773 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 293 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 29 + - 28 + - 27 + - 26 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1774 + components: + - type: Transform + pos: 9.5,7.5 + parent: 293 +- proto: CrateGenericSteel + entities: + - uid: 1775 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 293 +- proto: CrateMedicalSurgery + entities: + - uid: 1779 + components: + - type: Transform + pos: 6.5,9.5 + parent: 293 +- proto: CryogenicSleepUnit + entities: + - uid: 1780 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 293 + - uid: 1781 + components: + - type: Transform + pos: 2.5,1.5 + parent: 293 + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 293 + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 293 +- proto: CurtainsBlueOpen + entities: + - uid: 1785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 293 +- proto: DefaultStationBeaconCargoLavalandAvanpost + entities: + - uid: 38 + components: + - type: Transform + pos: 0.5,0.5 + parent: 293 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: DisposalBend + entities: + - uid: 1788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 293 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 293 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 293 + - uid: 1791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 293 + - uid: 1792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 293 + - uid: 1793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 293 + - uid: 1794 + components: + - type: Transform + pos: 2.5,11.5 + parent: 293 + - uid: 1795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 293 + - uid: 1796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 293 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 293 +- proto: DisposalJunction + entities: + - uid: 1798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 293 +- proto: DisposalJunctionFlipped + entities: + - uid: 1799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 293 + - uid: 1800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 293 + - uid: 1801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 293 +- proto: DisposalPipe + entities: + - uid: 1802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 293 + - uid: 1803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 293 + - uid: 1804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 293 + - uid: 1805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 293 + - uid: 1806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 293 + - uid: 1807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 293 + - uid: 1808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 293 + - uid: 1809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 293 + - uid: 1810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 293 + - uid: 1811 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 293 + - uid: 1812 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 293 + - uid: 1813 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 293 + - uid: 1814 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 293 + - uid: 1815 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 293 + - uid: 1816 + components: + - type: Transform + pos: 9.5,0.5 + parent: 293 + - uid: 1817 + components: + - type: Transform + pos: 9.5,1.5 + parent: 293 + - uid: 1818 + components: + - type: Transform + pos: 9.5,2.5 + parent: 293 + - uid: 1819 + components: + - type: Transform + pos: 9.5,3.5 + parent: 293 + - uid: 1820 + components: + - type: Transform + pos: 9.5,4.5 + parent: 293 + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 293 + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 293 + - uid: 1823 + components: + - type: Transform + pos: 7.5,6.5 + parent: 293 + - uid: 1824 + components: + - type: Transform + pos: 7.5,7.5 + parent: 293 + - uid: 1825 + components: + - type: Transform + pos: 7.5,8.5 + parent: 293 + - uid: 1826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 293 + - uid: 1827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 293 + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 293 + - uid: 1829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 293 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 293 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 293 + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 293 + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 293 + - uid: 1834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 293 + - uid: 1835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 293 + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 293 + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 293 + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 293 + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 293 + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 293 + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 293 + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 293 + - uid: 1843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 293 + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 293 + - uid: 1845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 293 + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 293 + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 293 + - uid: 1848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 293 + - uid: 1849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 293 + - uid: 1850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 293 + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 293 + - uid: 1852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 293 + - uid: 1853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 293 + - uid: 1854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 293 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 293 + - uid: 1856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 293 + - uid: 1857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 293 + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 293 + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 293 + - uid: 1860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 293 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 293 + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 293 + - uid: 1863 + components: + - type: Transform + pos: -14.5,3.5 + parent: 293 + - uid: 1864 + components: + - type: Transform + pos: -14.5,2.5 + parent: 293 + - uid: 1865 + components: + - type: Transform + pos: -14.5,1.5 + parent: 293 +- proto: DisposalTrunk + entities: + - uid: 1866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 293 + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 293 + - uid: 1868 + components: + - type: Transform + pos: -2.5,12.5 + parent: 293 + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 293 + - uid: 1870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 293 +- proto: DisposalUnit + entities: + - uid: 1871 + components: + - type: Transform + pos: -14.5,0.5 + parent: 293 + - uid: 1872 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 293 + - uid: 1873 + components: + - type: Transform + pos: 9.5,9.5 + parent: 293 + - uid: 1874 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 293 + - uid: 1875 + components: + - type: Transform + pos: -2.5,12.5 + parent: 293 +- proto: DrinkJuiceOrangeCarton + entities: + - uid: 1876 + components: + - type: Transform + pos: -13.699897,-7.2096643 + parent: 293 +- proto: DrinkRumBottleFull + entities: + - uid: 1877 + components: + - type: Transform + pos: 0.71750915,10.785653 + parent: 293 +- proto: DrinkShotGlass + entities: + - uid: 1878 + components: + - type: Transform + pos: -0.35416815,10.513014 + parent: 293 + - uid: 1879 + components: + - type: Transform + pos: 1.5845933,10.746705 + parent: 293 +- proto: FireAlarm + entities: + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 293 + - type: DeviceList + devices: + - 1916 + - 1894 + - 1896 + - 1892 + - 1895 + - 1891 + - 1893 + - 1890 + - type: Fixtures + fixtures: {} + - uid: 1884 + components: + - type: Transform + pos: 5.5,6.5 + parent: 293 + - type: DeviceList + devices: + - 1910 + - 1909 + - 1908 + - 1915 + - 1914 + - 340 + - 1913 + - 1912 + - 1911 + - 1904 + - 1903 + - 1902 + - 1918 + - 1917 + - 1916 + - 2651 + - type: Fixtures + fixtures: {} + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 293 + - type: DeviceList + devices: + - 1900 + - 1901 + - type: Fixtures + fixtures: {} + - uid: 1886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 293 + - type: DeviceList + devices: + - 1904 + - 1903 + - 1902 + - 1901 + - 1900 + - 1899 + - 1898 + - 1897 + - 2652 + - 2667 + - type: Fixtures + fixtures: {} + - uid: 1887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 293 + - type: DeviceList + devices: + - 2653 + - 339 + - 2668 + - 1919 + - type: Fixtures + fixtures: {} + - uid: 1888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 293 + - type: DeviceList + devices: + - 1899 + - 1898 + - 1897 + - 1919 + - type: Fixtures + fixtures: {} + - uid: 1889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 293 + - type: DeviceList + devices: + - 1921 + - 1905 + - 1906 + - 1907 + - 1910 + - 1909 + - 1908 + - 2654 + - 2664 + - type: Fixtures + fixtures: {} +- proto: FirelockEdge + entities: + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1891 + components: + - type: Transform + pos: -1.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1892 + components: + - type: Transform + pos: 0.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1893 + components: + - type: Transform + pos: -2.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1895 + components: + - type: Transform + pos: -0.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 + - uid: 1896 + components: + - type: Transform + pos: 1.5,10.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1883 +- proto: FirelockGlass + entities: + - uid: 1897 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1886 + - 1888 + - uid: 1898 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1886 + - 1888 + - uid: 1899 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1886 + - 1888 + - uid: 1900 + components: + - type: Transform + pos: 10.5,0.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1886 + - 1885 + - uid: 1901 + components: + - type: Transform + pos: 10.5,1.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1886 + - 1885 + - uid: 1902 + components: + - type: Transform + pos: 9.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - 1886 + - uid: 1903 + components: + - type: Transform + pos: 8.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - 1886 + - uid: 1904 + components: + - type: Transform + pos: 7.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - 1886 + - uid: 1905 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - uid: 1906 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - uid: 1907 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - uid: 1908 + components: + - type: Transform + pos: -8.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - 1884 + - uid: 1909 + components: + - type: Transform + pos: -7.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - 1884 + - uid: 1910 + components: + - type: Transform + pos: -6.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 + - 1884 + - uid: 1911 + components: + - type: Transform + pos: 5.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1912 + components: + - type: Transform + pos: 0.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1913 + components: + - type: Transform + pos: -4.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1914 + components: + - type: Transform + pos: -6.5,6.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1915 + components: + - type: Transform + pos: -9.5,4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1916 + components: + - type: Transform + pos: 2.5,6.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - 1883 + - uid: 1917 + components: + - type: Transform + pos: 7.5,6.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1918 + components: + - type: Transform + pos: 10.5,5.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1884 + - uid: 1919 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1887 + - 1888 + - uid: 1920 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 293 + - uid: 1921 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 1889 +- proto: FloorDrain + entities: + - uid: 32 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 1923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 293 + - uid: 1924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 293 + - uid: 1925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 293 + - uid: 1926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 293 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 27 + components: + - type: Transform + parent: 1773 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 1773 + - uid: 28 + components: + - type: Transform + parent: 1773 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 1773 +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 26 + components: + - type: Transform + parent: 1773 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 1773 + - uid: 29 + components: + - type: Transform + parent: 1773 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 1773 +- proto: FoodSnackPopcorn + entities: + - uid: 2452 + components: + - type: Transform + pos: -13.342671,-7.4238806 + parent: 293 +- proto: FultonBeacon + entities: + - uid: 2454 + components: + - type: Transform + pos: -10.274122,1.8751179 + parent: 293 + - uid: 2455 + components: + - type: Transform + pos: -10.259508,1.3639205 + parent: 293 +- proto: GasMixerFlipped + entities: + - uid: 2456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 293 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 300 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 2458 + components: + - type: Transform + pos: 7.5,12.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 2460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2462 + components: + - type: Transform + pos: 8.5,8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourway + entities: + - uid: 2475 + components: + - type: Transform + pos: 8.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeStraight + entities: + - uid: 2476 + components: + - type: Transform + pos: 7.5,8.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2481 + components: + - type: Transform + pos: 7.5,6.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2482 + components: + - type: Transform + pos: 7.5,7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2494 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2495 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2496 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2497 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2498 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2499 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2500 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2501 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2516 + components: + - type: Transform + pos: -7.5,6.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2517 + components: + - type: Transform + pos: -7.5,7.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2518 + components: + - type: Transform + pos: -7.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2519 + components: + - type: Transform + pos: -7.5,3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2535 + components: + - type: Transform + pos: 7.5,11.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2536 + components: + - type: Transform + pos: 7.5,10.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2537 + components: + - type: Transform + pos: 7.5,9.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2539 + components: + - type: Transform + pos: 8.5,6.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2540 + components: + - type: Transform + pos: 8.5,7.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2541 + components: + - type: Transform + pos: 7.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2572 + components: + - type: Transform + pos: -5.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2573 + components: + - type: Transform + pos: -5.5,6.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2574 + components: + - type: Transform + pos: -5.5,7.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeTJunction + entities: + - uid: 2627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2633 + components: + - type: Transform + pos: -6.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 293 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 2644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPressurePump + entities: + - uid: 2648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 293 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentPump + entities: + - uid: 2650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 295 + - 1884 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 294 + - 1886 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 298 + - 1887 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - 1889 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2656 + components: + - type: Transform + pos: -7.5,8.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentScrubber + entities: + - uid: 2663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - 1889 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 297 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2666 + components: + - type: Transform + pos: -5.5,8.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 294 + - 1886 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2668 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 293 + - type: DeviceNetwork + deviceLists: + - 298 + - 1887 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GeneratorRTG + entities: + - uid: 35 + components: + - type: Transform + pos: 11.5,6.5 + parent: 293 + - uid: 36 + components: + - type: Transform + pos: 11.5,7.5 + parent: 293 +- proto: Grille + entities: + - uid: 2677 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 293 + - uid: 2678 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 293 + - uid: 2679 + components: + - type: Transform + pos: 1.5,2.5 + parent: 293 + - uid: 2680 + components: + - type: Transform + pos: -0.5,2.5 + parent: 293 + - uid: 2681 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 293 + - uid: 2682 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 293 + - uid: 2683 + components: + - type: Transform + pos: -3.5,11.5 + parent: 293 + - uid: 2684 + components: + - type: Transform + pos: -0.5,13.5 + parent: 293 + - uid: 2685 + components: + - type: Transform + pos: 3.5,12.5 + parent: 293 + - uid: 2686 + components: + - type: Transform + pos: 5.5,11.5 + parent: 293 + - uid: 2687 + components: + - type: Transform + pos: 3.5,6.5 + parent: 293 + - uid: 2688 + components: + - type: Transform + pos: 1.5,6.5 + parent: 293 + - uid: 2689 + components: + - type: Transform + pos: -0.5,6.5 + parent: 293 + - uid: 2690 + components: + - type: Transform + pos: 7.5,10.5 + parent: 293 + - uid: 2691 + components: + - type: Transform + pos: 6.5,6.5 + parent: 293 + - uid: 2692 + components: + - type: Transform + pos: 8.5,6.5 + parent: 293 + - uid: 2693 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 293 + - uid: 2694 + components: + - type: Transform + pos: -9.5,5.5 + parent: 293 + - uid: 2695 + components: + - type: Transform + pos: -9.5,3.5 + parent: 293 + - uid: 2696 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 293 + - uid: 2697 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 293 + - uid: 2698 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 293 + - uid: 2699 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 293 + - uid: 2700 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 293 + - uid: 2701 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 293 + - uid: 2702 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 293 + - uid: 2703 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 293 + - uid: 2704 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 293 + - uid: 2705 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 293 + - uid: 2706 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 293 + - uid: 2707 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 293 + - uid: 2708 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 293 + - uid: 2709 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 293 + - uid: 2710 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 293 + - uid: 2711 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 293 + - uid: 2712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 293 + - uid: 2713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 293 + - uid: 2714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 293 + - uid: 2715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 293 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 293 + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 293 + - uid: 2718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 293 + - uid: 2719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 293 + - uid: 2720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 293 + - uid: 2721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 293 + - uid: 2722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 293 + - uid: 2723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 293 + - uid: 2724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 293 + - uid: 2725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 293 + - uid: 2726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 293 + - uid: 2727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 293 + - uid: 2728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 293 + - uid: 2729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 293 + - uid: 2730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 293 + - uid: 2731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 293 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 293 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 293 + - uid: 2734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 293 + - uid: 2735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 293 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 293 + - uid: 2737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 293 + - uid: 2738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 293 + - uid: 2739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 293 + - uid: 2740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 293 + - uid: 2741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 293 + - uid: 2742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 293 + - uid: 2743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 293 +- proto: KitchenMicrowave + entities: + - uid: 2759 + components: + - type: Transform + pos: 1.5,12.5 + parent: 293 +- proto: KitchenReagentGrinder + entities: + - uid: 2760 + components: + - type: Transform + pos: 0.5,12.5 + parent: 293 +- proto: KvassTankFull + entities: + - uid: 2761 + components: + - type: Transform + pos: 4.5,7.5 + parent: 293 +- proto: LavalandShuttleConsole + entities: + - uid: 24 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 293 + - uid: 25 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 293 +- proto: LockerSalvageSpecialistLavalandFilled + entities: + - uid: 10 + components: + - type: Transform + pos: -15.5,5.5 + parent: 293 + - uid: 12 + components: + - type: Transform + pos: -15.5,6.5 + parent: 293 + - uid: 13 + components: + - type: Transform + pos: -15.5,4.5 + parent: 293 + - uid: 14 + components: + - type: Transform + pos: -15.5,3.5 + parent: 293 + - uid: 15 + components: + - type: Transform + pos: -15.5,2.5 + parent: 293 +- proto: LockerSteel + entities: + - uid: 3 + components: + - type: Transform + pos: -12.5,7.5 + parent: 293 + - uid: 4 + components: + - type: Transform + pos: -12.5,6.5 + parent: 293 + - uid: 5 + components: + - type: Transform + pos: -10.5,8.5 + parent: 293 + - uid: 6 + components: + - type: Transform + pos: -10.5,7.5 + parent: 293 + - uid: 7 + components: + - type: Transform + pos: -10.5,6.5 + parent: 293 + - uid: 8 + components: + - type: Transform + pos: -12.5,8.5 + parent: 293 + - uid: 9 + components: + - type: Transform + pos: -14.5,7.5 + parent: 293 + - uid: 11 + components: + - type: Transform + pos: -14.5,8.5 + parent: 293 + - uid: 2762 + components: + - type: Transform + pos: -3.5,1.5 + parent: 293 + - uid: 2763 + components: + - type: Transform + pos: 4.5,1.5 + parent: 293 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 +- proto: MachineFrameDestroyed + entities: + - uid: 2764 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 293 +- proto: Mirror + entities: + - uid: 2767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: Multitool + entities: + - uid: 2770 + components: + - type: Transform + pos: -11.405808,-9.332235 + parent: 293 +- proto: NitrogenCanister + entities: + - uid: 2771 + components: + - type: Transform + anchored: True + pos: 13.5,9.5 + parent: 293 + - type: Physics + bodyType: Static +- proto: NitrogenTankFilled + entities: + - uid: 1610 + components: + - type: Transform + parent: 1609 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1612 + components: + - type: Transform + parent: 1611 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 2773 + components: + - type: Transform + pos: -12.5,0.5 + parent: 293 + - uid: 2774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 293 + - uid: 2775 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 293 + - uid: 2776 + components: + - type: Transform + pos: 11.5,3.5 + parent: 293 + - uid: 2777 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 293 +- proto: OreProcessor + entities: + - uid: 2782 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 293 +- proto: OxygenCanister + entities: + - uid: 2784 + components: + - type: Transform + anchored: True + pos: 13.5,8.5 + parent: 293 + - type: Physics + bodyType: Static + - uid: 2785 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 293 +- proto: PaperBin20 + entities: + - uid: 2789 + components: + - type: Transform + pos: -1.5,0.5 + parent: 293 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 293 +- proto: Pen + entities: + - uid: 2792 + components: + - type: Transform + pos: -1.8244195,0.50466496 + parent: 293 +- proto: Pickaxe + entities: + - uid: 2793 + components: + - type: Transform + pos: -12.120562,3.6376104 + parent: 293 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 2798 + components: + - type: Transform + pos: 13.5,3.5 + parent: 293 +- proto: PlushieLizard + entities: + - uid: 2799 + components: + - type: Transform + pos: -13.498551,-8.429932 + parent: 293 +- proto: PottedPlantRandom + entities: + - uid: 2800 + components: + - type: Transform + pos: -13.5,0.5 + parent: 293 + - uid: 2801 + components: + - type: Transform + pos: -10.5,5.5 + parent: 293 + - uid: 2802 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 293 +- proto: PowerCellRecharger + entities: + - uid: 40 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 293 +- proto: Poweredlight + entities: + - uid: 2803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 293 + - uid: 2804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 293 + - uid: 2805 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 293 + - uid: 2806 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 293 + - uid: 2807 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 293 + - uid: 2808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 293 + - uid: 2809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 293 + - uid: 2810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 293 + - uid: 2811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 293 + - uid: 2812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 293 + - uid: 2813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 293 + - uid: 2814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 293 + - uid: 2815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 293 + - uid: 2816 + components: + - type: Transform + pos: 4.5,5.5 + parent: 293 + - uid: 2817 + components: + - type: Transform + pos: 1.5,12.5 + parent: 293 + - uid: 2818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 293 + - uid: 2819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 293 + - uid: 2820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 293 + - uid: 2821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 293 + - uid: 2822 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 293 + - uid: 2823 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 293 + - uid: 2824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 293 + - uid: 2825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 293 + - uid: 2826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 293 + - uid: 2827 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 293 + - uid: 2828 + components: + - type: Transform + pos: 13.5,1.5 + parent: 293 + - uid: 2829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 293 +- proto: PoweredSmallLight + entities: + - uid: 2830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 293 + - uid: 2831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 293 + - uid: 2832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 293 + - uid: 2833 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 293 + - uid: 2834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 293 + - uid: 2835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 293 + - uid: 2836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 293 + - uid: 2837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 293 + - uid: 2838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 293 + - uid: 2839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 293 + - uid: 2840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 293 + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 293 + - uid: 2842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 293 + - uid: 2843 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 293 + - uid: 2844 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 293 + - uid: 2845 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 293 + - uid: 2846 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 293 + - uid: 2847 + components: + - type: Transform + pos: -7.5,9.5 + parent: 293 + - uid: 2848 + components: + - type: Transform + pos: -5.5,9.5 + parent: 293 +- proto: RagItem + entities: + - uid: 2873 + components: + - type: Transform + pos: -2.4682946,10.707756 + parent: 293 +- proto: RandomPainting + entities: + - uid: 2874 + components: + - type: Transform + pos: 0.5,13.5 + parent: 293 +- proto: RandomPosterAny + entities: + - uid: 2875 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 293 +- proto: RandomPosterLegit + entities: + - uid: 2876 + components: + - type: Transform + pos: 10.5,4.5 + parent: 293 + - uid: 2877 + components: + - type: Transform + pos: 5.5,7.5 + parent: 293 + - uid: 2878 + components: + - type: Transform + pos: -9.5,7.5 + parent: 293 + - uid: 2879 + components: + - type: Transform + pos: -15.5,7.5 + parent: 293 + - uid: 2880 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 293 + - uid: 2881 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 293 +- proto: RandomVendingDrinks + entities: + - uid: 2885 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 293 +- proto: RandomVendingSnacks + entities: + - uid: 2887 + components: + - type: Transform + pos: -2.5,7.5 + parent: 293 +- proto: ReinforcedWindow + entities: + - uid: 2902 + components: + - type: Transform + pos: -0.5,6.5 + parent: 293 + - uid: 2903 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 293 + - uid: 2904 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 293 + - uid: 2905 + components: + - type: Transform + pos: -0.5,2.5 + parent: 293 + - uid: 2906 + components: + - type: Transform + pos: 1.5,2.5 + parent: 293 + - uid: 2907 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 293 + - uid: 2908 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 293 + - uid: 2909 + components: + - type: Transform + pos: 1.5,6.5 + parent: 293 + - uid: 2910 + components: + - type: Transform + pos: 3.5,6.5 + parent: 293 + - uid: 2911 + components: + - type: Transform + pos: 5.5,11.5 + parent: 293 + - uid: 2912 + components: + - type: Transform + pos: -3.5,11.5 + parent: 293 + - uid: 2913 + components: + - type: Transform + pos: -0.5,13.5 + parent: 293 + - uid: 2914 + components: + - type: Transform + pos: 3.5,12.5 + parent: 293 + - uid: 2915 + components: + - type: Transform + pos: 6.5,6.5 + parent: 293 + - uid: 2916 + components: + - type: Transform + pos: 8.5,6.5 + parent: 293 + - uid: 2917 + components: + - type: Transform + pos: 7.5,10.5 + parent: 293 + - uid: 2918 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 293 + - uid: 2919 + components: + - type: Transform + pos: -9.5,3.5 + parent: 293 + - uid: 2920 + components: + - type: Transform + pos: -9.5,5.5 + parent: 293 + - uid: 2921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 293 + - uid: 2922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 293 + - uid: 2923 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 293 + - uid: 2924 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 293 + - uid: 2925 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 293 + - uid: 2926 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 293 + - uid: 2927 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 293 + - uid: 2928 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 293 + - uid: 2929 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 293 + - uid: 2930 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 293 + - uid: 2931 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 293 + - uid: 2932 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 293 + - uid: 2933 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 293 + - uid: 2934 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 293 + - uid: 2935 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 293 + - uid: 2936 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 293 + - uid: 2937 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 293 + - uid: 2938 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 293 + - uid: 2939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 293 + - uid: 2940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 293 + - uid: 2941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 293 + - uid: 2942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 293 + - uid: 2943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 293 + - uid: 2944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 293 + - uid: 2945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 293 + - uid: 2946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 293 + - uid: 2947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 293 + - uid: 2948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 293 + - uid: 2949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 293 + - uid: 2950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 293 + - uid: 2951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 293 + - uid: 2952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 293 + - uid: 2953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 293 + - uid: 2954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 293 + - uid: 2955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 293 + - uid: 2956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 293 + - uid: 2957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 293 + - uid: 2958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 293 + - uid: 2959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 293 + - uid: 2960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 293 + - uid: 2961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 293 + - uid: 2962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 293 + - uid: 2963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 293 + - uid: 2964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 293 + - uid: 2965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 293 + - uid: 2966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 293 + - uid: 2967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 293 + - uid: 2968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 293 +- proto: Screen + entities: + - uid: 2969 + components: + - type: Transform + pos: 5.5,8.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2970 + components: + - type: Transform + pos: -3.5,8.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2971 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2972 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2973 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2974 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: Shovel + entities: + - uid: 2976 + components: + - type: Transform + pos: -12.637887,3.629799 + parent: 293 +- proto: Shower + entities: + - uid: 30 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 293 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 293 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: SignalButton + entities: + - uid: 2977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 302: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 2978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 303: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 2979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 304: + - - Pressed + - DoorBolt + 2814: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 2980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 306: + - - Pressed + - DoorBolt + 2815: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 2981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 1190: + - - Pressed + - Toggle + 3870: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} +- proto: SignCryo + entities: + - uid: 2983 + components: + - type: Transform + pos: 3.5,2.5 + parent: 293 + - type: Fixtures + fixtures: {} + - uid: 2984 + components: + - type: Transform + pos: -2.5,2.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: SignFire + entities: + - uid: 2985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 293 + - type: Fixtures + fixtures: {} +- proto: SinkStemlessWater + entities: + - uid: 2986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 293 + - uid: 2987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 293 +- proto: SMESBasic + entities: + - uid: 2989 + components: + - type: Transform + pos: 11.5,9.5 + parent: 293 +- proto: SodaDispenser + entities: + - uid: 2991 + components: + - type: Transform + pos: -0.5,12.5 + parent: 293 +- proto: SprayBottleEthanol + entities: + - uid: 34 + components: + - type: Transform + pos: 9.50999,8.686485 + parent: 293 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 2992 + components: + - type: Transform + pos: 9.704434,8.658708 + parent: 293 +- proto: StasisBed + entities: + - uid: 2993 + components: + - type: Transform + pos: 6.5,7.5 + parent: 293 +- proto: Stool + entities: + - uid: 2994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.509371,2.720268 + parent: 293 + - uid: 2995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.521897,2.7348733 + parent: 293 + - uid: 2996 + components: + - type: Transform + pos: -12.515634,4.633608 + parent: 293 +- proto: StoolBar + entities: + - uid: 2997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 293 + - uid: 2998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 293 + - uid: 2999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 293 + - uid: 3000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 293 + - uid: 3001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 293 +- proto: SubstationWallBasic + entities: + - uid: 3002 + components: + - type: Transform + pos: 13.5,10.5 + parent: 293 +- proto: SuitStorageExplorerSuit + entities: + - uid: 16 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 293 + - uid: 17 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 293 + - uid: 18 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 293 + - uid: 19 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 293 + - uid: 20 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 293 + - uid: 21 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 293 + - uid: 22 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 293 + - uid: 23 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 293 +- proto: SurvivalMedipen + entities: + - uid: 33 + components: + - type: Transform + pos: -11.827375,3.4148712 + parent: 293 +- proto: Table + entities: + - uid: 3004 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 293 + - uid: 3005 + components: + - type: Transform + pos: -13.5,3.5 + parent: 293 + - uid: 3006 + components: + - type: Transform + pos: -12.5,3.5 + parent: 293 + - uid: 3007 + components: + - type: Transform + pos: -11.5,3.5 + parent: 293 + - uid: 3008 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 293 + - uid: 3009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 293 + - uid: 3010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 293 + - uid: 3011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 293 + - uid: 3012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 293 + - uid: 3013 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 293 + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 293 + - uid: 3015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 293 + - uid: 3016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 293 + - uid: 3017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 293 + - uid: 3018 + components: + - type: Transform + pos: 9.5,8.5 + parent: 293 +- proto: TableReinforced + entities: + - uid: 3028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 293 + - uid: 3029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 293 + - uid: 3030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 293 + - uid: 3031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 293 + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 293 + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 293 + - uid: 3034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 293 + - uid: 3035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 293 +- proto: TelecomServerFilledLavaland + entities: + - uid: 39 + components: + - type: Transform + pos: -6.5,9.5 + parent: 293 +- proto: ToiletDirtyWater + entities: + - uid: 3038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 293 + - uid: 3039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 293 +- proto: ToolboxEmergencyFilled + entities: + - uid: 3042 + components: + - type: Transform + pos: 9.443915,8.551421 + parent: 293 +- proto: ToolboxMechanicalFilled + entities: + - uid: 3043 + components: + - type: Transform + pos: 12.430177,-6.057374 + parent: 293 +- proto: TwoWayLever + entities: + - uid: 3046 + components: + - type: Transform + pos: 14.5,1.5 + parent: 293 + - type: DeviceLinkSource + linkedPorts: + 1763: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1764: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1765: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1767: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1768: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1769: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1770: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1771: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off +- proto: UnfinishedMachineFrame + entities: + - uid: 3047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 293 +- proto: VendingMachineBooze + entities: + - uid: 3048 + components: + - type: Transform + pos: -1.5,12.5 + parent: 293 +- proto: VendingMachineCigs + entities: + - uid: 3049 + components: + - type: Transform + pos: -1.5,7.5 + parent: 293 +- proto: VendingMachineRestockBooze + entities: + - uid: 3050 + components: + - type: Transform + pos: -1.6206951,10.639596 + parent: 293 +- proto: VendingMachineSalvage + entities: + - uid: 3051 + components: + - type: Transform + pos: -11.5,0.5 + parent: 293 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} + - uid: 3052 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 293 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} +- proto: VendingMachineTankDispenserExtO2 + entities: + - uid: 3054 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 293 +- proto: WallReinforced + entities: + - uid: 3057 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 293 + - uid: 3058 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 293 + - uid: 3059 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 293 + - uid: 3060 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 293 + - uid: 3061 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 293 + - uid: 3062 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 293 + - uid: 3063 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 293 + - uid: 3064 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 293 + - uid: 3065 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 293 + - uid: 3066 + components: + - type: Transform + pos: -3.5,6.5 + parent: 293 + - uid: 3067 + components: + - type: Transform + pos: -4.5,6.5 + parent: 293 + - uid: 3068 + components: + - type: Transform + pos: -5.5,6.5 + parent: 293 + - uid: 3069 + components: + - type: Transform + pos: -3.5,7.5 + parent: 293 + - uid: 3070 + components: + - type: Transform + pos: -3.5,8.5 + parent: 293 + - uid: 3071 + components: + - type: Transform + pos: -3.5,9.5 + parent: 293 + - uid: 3072 + components: + - type: Transform + pos: -4.5,9.5 + parent: 293 + - uid: 3073 + components: + - type: Transform + pos: -4.5,10.5 + parent: 293 + - uid: 3074 + components: + - type: Transform + pos: -3.5,10.5 + parent: 293 + - uid: 3075 + components: + - type: Transform + pos: -5.5,10.5 + parent: 293 + - uid: 3076 + components: + - type: Transform + pos: 5.5,10.5 + parent: 293 + - uid: 3077 + components: + - type: Transform + pos: 5.5,12.5 + parent: 293 + - uid: 3078 + components: + - type: Transform + pos: 4.5,12.5 + parent: 293 + - uid: 3079 + components: + - type: Transform + pos: 2.5,12.5 + parent: 293 + - uid: 3080 + components: + - type: Transform + pos: -3.5,12.5 + parent: 293 + - uid: 3081 + components: + - type: Transform + pos: -3.5,13.5 + parent: 293 + - uid: 3082 + components: + - type: Transform + pos: -1.5,13.5 + parent: 293 + - uid: 3083 + components: + - type: Transform + pos: -2.5,13.5 + parent: 293 + - uid: 3084 + components: + - type: Transform + pos: 0.5,13.5 + parent: 293 + - uid: 3085 + components: + - type: Transform + pos: 1.5,13.5 + parent: 293 + - uid: 3086 + components: + - type: Transform + pos: 2.5,13.5 + parent: 293 + - uid: 3087 + components: + - type: Transform + pos: -7.5,6.5 + parent: 293 + - uid: 3088 + components: + - type: Transform + pos: -8.5,6.5 + parent: 293 + - uid: 3089 + components: + - type: Transform + pos: -9.5,6.5 + parent: 293 + - uid: 3090 + components: + - type: Transform + pos: -9.5,7.5 + parent: 293 + - uid: 3091 + components: + - type: Transform + pos: -9.5,8.5 + parent: 293 + - uid: 3092 + components: + - type: Transform + pos: -9.5,9.5 + parent: 293 + - uid: 3093 + components: + - type: Transform + pos: -8.5,9.5 + parent: 293 + - uid: 3094 + components: + - type: Transform + pos: -8.5,10.5 + parent: 293 + - uid: 3095 + components: + - type: Transform + pos: -7.5,10.5 + parent: 293 + - uid: 3096 + components: + - type: Transform + pos: -6.5,10.5 + parent: 293 + - uid: 3097 + components: + - type: Transform + pos: 6.5,10.5 + parent: 293 + - uid: 3098 + components: + - type: Transform + pos: 8.5,10.5 + parent: 293 + - uid: 3099 + components: + - type: Transform + pos: 9.5,10.5 + parent: 293 + - uid: 3100 + components: + - type: Transform + pos: 10.5,10.5 + parent: 293 + - uid: 3101 + components: + - type: Transform + pos: -15.5,9.5 + parent: 293 + - uid: 3102 + components: + - type: Transform + pos: -13.5,9.5 + parent: 293 + - uid: 3103 + components: + - type: Transform + pos: -12.5,9.5 + parent: 293 + - uid: 3104 + components: + - type: Transform + pos: -15.5,0.5 + parent: 293 + - uid: 3105 + components: + - type: Transform + pos: -15.5,1.5 + parent: 293 + - uid: 3106 + components: + - type: Transform + pos: -10.5,9.5 + parent: 293 + - uid: 3107 + components: + - type: Transform + pos: -16.5,2.5 + parent: 293 + - uid: 3108 + components: + - type: Transform + pos: -16.5,3.5 + parent: 293 + - uid: 3109 + components: + - type: Transform + pos: -16.5,4.5 + parent: 293 + - uid: 3110 + components: + - type: Transform + pos: -16.5,5.5 + parent: 293 + - uid: 3111 + components: + - type: Transform + pos: -16.5,6.5 + parent: 293 + - uid: 3112 + components: + - type: Transform + pos: -15.5,7.5 + parent: 293 + - uid: 3113 + components: + - type: Transform + pos: -15.5,8.5 + parent: 293 + - uid: 3114 + components: + - type: Transform + pos: -16.5,1.5 + parent: 293 + - uid: 3115 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 293 + - uid: 3116 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 293 + - uid: 3117 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 293 + - uid: 3118 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 293 + - uid: 3119 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 293 + - uid: 3120 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 293 + - uid: 3121 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 293 + - uid: 3122 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 293 + - uid: 3123 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 293 + - uid: 3124 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 293 + - uid: 3125 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 293 + - uid: 3126 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 293 + - uid: 3127 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 293 + - uid: 3128 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 293 + - uid: 3129 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 293 + - uid: 3130 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 293 + - uid: 3131 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 293 + - uid: 3132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 293 + - uid: 3133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 293 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 293 + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 293 + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 293 + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 293 + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 293 + - uid: 3139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 293 + - uid: 3140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 293 + - uid: 3141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 293 + - uid: 3142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 293 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 293 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 293 + - uid: 3145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 293 + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 293 + - uid: 3147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 293 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 293 + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 293 + - uid: 3150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 293 + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 293 + - uid: 3152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 293 + - uid: 3153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 293 + - uid: 3154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 293 + - uid: 3155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 293 + - uid: 3156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 293 + - uid: 3157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 293 + - uid: 3158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 293 + - uid: 3159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 293 + - uid: 3160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 293 + - uid: 3161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 293 + - uid: 3162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 293 + - uid: 3163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 293 + - uid: 3164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 293 + - uid: 3165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 293 + - uid: 3166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 293 + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 293 + - uid: 3168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 293 + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 293 + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 293 + - uid: 3171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 293 + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 293 + - uid: 3173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 293 + - uid: 3174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 293 + - uid: 3175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 293 + - uid: 3176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 293 + - uid: 3177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 293 + - uid: 3178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 293 + - uid: 3179 + components: + - type: Transform + pos: -16.5,7.5 + parent: 293 +- proto: WallRockBasalt + entities: + - uid: 3180 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 293 + - uid: 3181 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 293 + - uid: 3182 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 293 + - uid: 3183 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 293 + - uid: 3184 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 293 + - uid: 3185 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 293 + - uid: 3186 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 293 + - uid: 3187 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 293 + - uid: 3188 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 293 + - uid: 3189 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 293 + - uid: 3190 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 293 + - uid: 3191 + components: + - type: Transform + pos: 15.5,11.5 + parent: 293 + - uid: 3192 + components: + - type: Transform + pos: 15.5,12.5 + parent: 293 + - uid: 3193 + components: + - type: Transform + pos: 16.5,11.5 + parent: 293 + - uid: 3194 + components: + - type: Transform + pos: 10.5,11.5 + parent: 293 + - uid: 3195 + components: + - type: Transform + pos: 9.5,11.5 + parent: 293 + - uid: 3196 + components: + - type: Transform + pos: 10.5,12.5 + parent: 293 + - uid: 3197 + components: + - type: Transform + pos: -1.5,14.5 + parent: 293 + - uid: 3198 + components: + - type: Transform + pos: -2.5,14.5 + parent: 293 + - uid: 3199 + components: + - type: Transform + pos: -3.5,14.5 + parent: 293 + - uid: 3200 + components: + - type: Transform + pos: -2.5,15.5 + parent: 293 + - uid: 3201 + components: + - type: Transform + pos: -4.5,13.5 + parent: 293 + - uid: 3202 + components: + - type: Transform + pos: -4.5,12.5 + parent: 293 + - uid: 3203 + components: + - type: Transform + pos: -14.5,10.5 + parent: 293 + - uid: 3204 + components: + - type: Transform + pos: -13.5,10.5 + parent: 293 +- proto: WallSolid + entities: + - uid: 3685 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 293 + - uid: 3686 + components: + - type: Transform + pos: -2.5,1.5 + parent: 293 + - uid: 3687 + components: + - type: Transform + pos: -2.5,2.5 + parent: 293 + - uid: 3688 + components: + - type: Transform + pos: -1.5,2.5 + parent: 293 + - uid: 3689 + components: + - type: Transform + pos: 2.5,2.5 + parent: 293 + - uid: 3690 + components: + - type: Transform + pos: 3.5,2.5 + parent: 293 + - uid: 3691 + components: + - type: Transform + pos: 3.5,1.5 + parent: 293 + - uid: 3692 + components: + - type: Transform + pos: 3.5,0.5 + parent: 293 + - uid: 3693 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 293 + - uid: 3694 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 293 + - uid: 3695 + components: + - type: Transform + pos: -5.5,0.5 + parent: 293 + - uid: 3696 + components: + - type: Transform + pos: -5.5,1.5 + parent: 293 + - uid: 3697 + components: + - type: Transform + pos: -5.5,2.5 + parent: 293 + - uid: 3698 + components: + - type: Transform + pos: -3.5,2.5 + parent: 293 + - uid: 3699 + components: + - type: Transform + pos: 4.5,2.5 + parent: 293 + - uid: 3700 + components: + - type: Transform + pos: 6.5,2.5 + parent: 293 + - uid: 3701 + components: + - type: Transform + pos: 6.5,1.5 + parent: 293 + - uid: 3702 + components: + - type: Transform + pos: 6.5,0.5 + parent: 293 + - uid: 3703 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 293 + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 293 + - uid: 3705 + components: + - type: Transform + pos: 4.5,6.5 + parent: 293 + - uid: 3706 + components: + - type: Transform + pos: 5.5,6.5 + parent: 293 + - uid: 3707 + components: + - type: Transform + pos: 0.5,6.5 + parent: 293 + - uid: 3708 + components: + - type: Transform + pos: -1.5,6.5 + parent: 293 + - uid: 3709 + components: + - type: Transform + pos: -2.5,6.5 + parent: 293 + - uid: 3710 + components: + - type: Transform + pos: 5.5,7.5 + parent: 293 + - uid: 3711 + components: + - type: Transform + pos: 5.5,8.5 + parent: 293 + - uid: 3712 + components: + - type: Transform + pos: 5.5,9.5 + parent: 293 + - uid: 3713 + components: + - type: Transform + pos: 10.5,9.5 + parent: 293 + - uid: 3714 + components: + - type: Transform + pos: 10.5,8.5 + parent: 293 + - uid: 3715 + components: + - type: Transform + pos: 10.5,7.5 + parent: 293 + - uid: 3716 + components: + - type: Transform + pos: 10.5,6.5 + parent: 293 + - uid: 3717 + components: + - type: Transform + pos: 9.5,6.5 + parent: 293 + - uid: 3718 + components: + - type: Transform + pos: 10.5,4.5 + parent: 293 + - uid: 3719 + components: + - type: Transform + pos: 10.5,3.5 + parent: 293 + - uid: 3720 + components: + - type: Transform + pos: 10.5,2.5 + parent: 293 + - uid: 3721 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 293 + - uid: 3722 + components: + - type: Transform + pos: -9.5,2.5 + parent: 293 + - uid: 3723 + components: + - type: Transform + pos: -9.5,1.5 + parent: 293 + - uid: 3724 + components: + - type: Transform + pos: -9.5,0.5 + parent: 293 + - uid: 3725 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 293 + - uid: 3726 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 293 + - uid: 3727 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 293 + - uid: 3728 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 293 + - uid: 3729 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 293 + - uid: 3730 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 293 + - uid: 3731 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 293 + - uid: 3732 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 293 + - uid: 3733 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 293 + - uid: 3734 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 293 + - uid: 3735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 293 + - uid: 3736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 293 + - uid: 3737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 293 + - uid: 3738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 293 + - uid: 3739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 293 + - uid: 3740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 293 + - uid: 3741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 293 + - uid: 3742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 293 + - uid: 3743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 293 + - uid: 3744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 293 + - uid: 3745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 293 + - uid: 3746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 293 + - uid: 3747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 293 + - uid: 3748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 293 + - uid: 3749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 293 + - uid: 3750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 293 + - uid: 3751 + components: + - type: Transform + pos: -2.5,0.5 + parent: 293 +- proto: WaterTankFull + entities: + - uid: 3864 + components: + - type: Transform + pos: -10.5,0.5 + parent: 293 +- proto: WeldingFuelTankFull + entities: + - uid: 3867 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 293 + - uid: 3868 + components: + - type: Transform + pos: 13.5,6.5 + parent: 293 +- proto: WindoorSecure + entities: + - uid: 3870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 293 + - uid: 3871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 293 +- proto: WindowReinforcedDirectional + entities: + - uid: 3872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 293 + - uid: 3873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 293 + - uid: 3874 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 293 + - uid: 3875 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 293 + - uid: 3876 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 293 + - uid: 3877 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 293 + - uid: 3878 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 293 + - uid: 3879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 293 + - uid: 3880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 293 + - uid: 3881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 293 + - uid: 3882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 293 + - uid: 3883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 293 +... diff --git a/Resources/Maps/_Wega/Shuttles/base_lavalandshuttle.yml b/Resources/Maps/_Wega/Shuttles/base_lavalandshuttle.yml new file mode 100644 index 00000000000..959f241ff46 --- /dev/null +++ b/Resources/Maps/_Wega/Shuttles/base_lavalandshuttle.yml @@ -0,0 +1,521 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 22:15:21 + entityCount: 67 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 0: FloorShuttleBlue + 3: Lattice + 2: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Экспидиционный шаттл Лавалэнда + - type: Transform + pos: -0.5,-0.4375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: LavalandShuttle + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 823 + 1: 16384 + 0,-1: + 0: 12800 + 2: 272 + 1: 64 + -1,0: + 0: 2188 + 1: 16384 + -1,-1: + 0: 34816 + 1: 64 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + immutable: True + moles: {} + - volume: 2500 + temperature: 293.15 + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ExplosionAirtightGrid +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional + entities: + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 14 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 7 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 9 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 50 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 65 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 +- proto: LavalandShuttleConsole + entities: + - uid: 46 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 8 + components: + - type: Transform + pos: 1.4558858,2.5543494 + parent: 1 +- proto: OreBox + entities: + - uid: 49 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 +- proto: Table + entities: + - uid: 47 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 6 + components: + - type: Transform + pos: -0.4399476,2.7566035 + parent: 1 +- proto: WallShuttle + entities: + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Shuttles/base_penalservitude_shuttle.yml b/Resources/Maps/_Wega/Shuttles/base_penalservitude_shuttle.yml new file mode 100644 index 00000000000..8c5c46ff90d --- /dev/null +++ b/Resources/Maps/_Wega/Shuttles/base_penalservitude_shuttle.yml @@ -0,0 +1,799 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 22:54:47 + entityCount: 107 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 2: Space + 3: FloorDark + 0: FloorSteel + 4: Lattice + 1: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NTQT 008 "Вьюк" + - type: Transform + pos: -0.46738508,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 4: -1,3 + 5: 0,3 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 0: -2,1 + 1: -1,1 + 2: 0,1 + 3: 1,1 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 6: 1,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 7: -2,3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 20: 1,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 21: -2,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 16: 1,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 17: -2,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 19: 1,3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 18: -2,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 8: 1,2 + 13: 1,-2 + 14: 1,-1 + 15: 1,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 9: -2,2 + 10: -2,0 + 11: -2,-1 + 12: -2,-2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 14131 + 0,-1: + 0: 14096 + 1: 4 + -1,0: + 0: 52940 + 0,1: + 1: 4 + -1,1: + 1: 2 + -1,-1: + 0: 52864 + 1: 2 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + immutable: True + moles: {} + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ExplosionAirtightGrid + - type: LavalandPenalServitudeShuttle +- proto: AirCanister + entities: + - uid: 42 + components: + - type: Transform + anchored: True + pos: 0.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanTiny + entities: + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 63 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 69 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 22 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +- proto: GasPort + entities: + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 54 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 62 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: Grille + entities: + - uid: 18 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: PenalServitudeLavalandShuttleConsole + entities: + - uid: 23 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 32 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 30 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +... diff --git a/Resources/Maps/_Wega/Test/lavatest.yml b/Resources/Maps/_Wega/Test/lavatest.yml new file mode 100644 index 00000000000..11b24122c66 --- /dev/null +++ b/Resources/Maps/_Wega/Test/lavatest.yml @@ -0,0 +1,15108 @@ +meta: + format: 7 + category: Map + engineVersion: 268.0.0 + forkId: "" + forkVersion: "" + time: 02/20/2026 13:51:04 + entityCount: 2196 +maps: +- 1 +grids: +- 2 +orphans: [] +nullspace: [] +tilemap: + 7: Space + 5: FloorDark + 16: FloorDarkMini + 8: FloorDarkMono + 17: FloorGlass + 4: FloorGreenCircuit + 10: FloorKitchen + 19: FloorLino + 0: FloorMetalDiamond + 20: FloorShowroom + 9: FloorSteel + 13: FloorSteelMono + 2: FloorTechMaint3 + 1: FloorTechMaintDark + 12: FloorWhite + 14: FloorWhiteMono + 22: FloorWhiteOffset + 24: FloorWhitePavement + 11: FloorWhitePavementVertical + 15: FloorWhitePlastic + 18: FloorWood + 23: FloorWoodChessDark + 21: FloorWoodParquetDark + 6: Lattice + 3: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + - type: Map + mapPaused: True + - type: GridTree + - type: Broadphase + - type: OccluderTree + - type: Parallax + parallax: BagelStation + - uid: 2 + components: + - type: MetaData + name: Theta-12 + - type: Transform + pos: -0.515625,-0.453125 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAMAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAJAAAAAAAACQAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAADAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAkAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAAACQAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAkAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAAIAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAAIAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAACAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: BwAAAAAAAAcAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAADQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAALAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAA0AAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAIAAAAAAAACwAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAAANAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAAOAAAAAAAAAwAAAAAAAA4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAAPAAAAAAAADwAAAAAAAAMAAAAAAAAPAAAAAAAADwAAAAAAAAMAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAADwAAAAAAAA8AAAAAAAADAAAAAAAADwAAAAAAAA8AAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA8AAAAAAAAPAAAAAAAAAwAAAAAAAA8AAAAAAAAPAAAAAAAAAwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAADAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAIAAAAAAAABQAAAAAAAAUAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAcAAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAAEAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAEgAAAAAAABIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAACAAAAAAAABIAAAAAAAASAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACAAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAASAAAAAAAAEgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAMAAAAAAAAGAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAgAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAFQAAAAAAAAMAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAVAAAAAAAAAwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAUAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAACQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAFgAAAAAAAAkAAAAAAAADAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAFQAAAAAAABUAAAAAAAADAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAFQAAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAABYAAAAAAAAJAAAAAAAAAwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABUAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAMAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAAXAAAAAAAAFQAAAAAAAAMAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAAXAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABcAAAAAAAADAAAAAAAAAwAAAAAAABUAAAAAAAADAAAAAAAAAwAAAAAAABcAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAMAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAkAAAAAAAAWAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAAAwAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAAJAAAAAAAAFgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAMAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAADAAAAAAAACQAAAAAAABYAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAwAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: BgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 2,-1: + ind: 2,-1 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E996' + id: BotRightGreyscale + decals: + 666: -13,-14 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 0: 7,-12 + 1: 8,-12 + 2: 9,-12 + 3: 10,-12 + 4: 10,-10 + 5: 9,-10 + 6: 9,-8 + 7: 10,-8 + 8: 10,-6 + 9: 9,-6 + 10: 6,-5 + 11: 6,-4 + 12: 6,-3 + 13: 6,-2 + 14: 8,-2 + 15: 8,-3 + 16: 8,-4 + 18: 8,-5 + - node: + color: '#52B4E996' + id: BoxGreyscale + decals: + 662: -13,-16 + 663: -12,-16 + 664: -11,-16 + - node: + color: '#D4D4D428' + id: BrickCornerOverlayNW + decals: + 429: 11,-2 + - node: + color: '#D4D4D428' + id: BrickLineOverlayE + decals: + 422: 18,-4 + 423: 18,-3 + 424: 18,-2 + 479: 22,-5 + 494: 4,-10 + 561: 23,-10 + - node: + color: '#D4D4D496' + id: BrickLineOverlayE + decals: + 622: -1,-20 + - node: + color: '#8D1C9996' + id: BrickLineOverlayN + decals: + 158: 26,-8 + 159: 28,-8 + 160: 30,-8 + - node: + color: '#A4610696' + id: BrickLineOverlayN + decals: + 168: 25,-8 + 169: 27,-8 + 170: 29,-8 + 523: 31,-8 + - node: + color: '#D4D4D428' + id: BrickLineOverlayN + decals: + 373: 20,-14 + 374: 21,-14 + 375: 22,-14 + 386: 2,-14 + 387: 4,-14 + 388: 3,-14 + 430: 12,-2 + 439: -9,-4 + 440: -8,-4 + - node: + color: '#D4D4D496' + id: BrickLineOverlayN + decals: + 615: 1,-21 + 616: 0,-21 + 617: 2,-21 + - node: + color: '#8D1C9996' + id: BrickLineOverlayS + decals: + 162: 26,-12 + 163: 28,-12 + 164: 30,-12 + - node: + color: '#A4610696' + id: BrickLineOverlayS + decals: + 165: 25,-12 + 166: 27,-12 + 167: 29,-12 + 522: 31,-12 + - node: + color: '#D4D4D428' + id: BrickLineOverlayS + decals: + 294: 7,-16 + 295: 10,-16 + 296: 13,-16 + 297: 16,-16 + 298: 21,-16 + 376: 20,-12 + 377: 21,-12 + 379: 3,-16 + 389: 2,-12 + 390: 3,-12 + 391: 4,-12 + 578: 22,-12 + - node: + color: '#D4D4D496' + id: BrickLineOverlayS + decals: + 618: 0,-19 + 619: 1,-19 + 620: 2,-19 + - node: + color: '#D4D4D428' + id: BrickLineOverlayW + decals: + 425: 20,-4 + 426: 20,-3 + 427: 20,-2 + 431: 11,-3 + 432: 11,-4 + 451: -3,-16 + 452: -3,-15 + 453: -3,-14 + 480: 24,-5 + 562: 25,-10 + - node: + color: '#D4D4D496' + id: BrickLineOverlayW + decals: + 621: 3,-20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 324: 11,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 478: 22,-6 + 560: 23,-11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 438: -7,-4 + 476: 24,-6 + 558: 25,-11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 475: 22,-4 + 559: 23,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 477: 24,-4 + 557: 25,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 331: 18,-4 + 332: 18,-3 + 333: 18,-2 + 473: 22,-5 + 489: 4,-10 + 556: 23,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 318: 2,-14 + 319: 3,-14 + 320: 4,-14 + 325: 12,-2 + 346: 20,-14 + 347: 21,-14 + 348: 22,-14 + 436: -9,-4 + 437: -8,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 191: 6,2 + 192: 7,2 + 321: 2,-12 + 322: 3,-12 + 323: 4,-12 + 343: 20,-12 + 344: 21,-12 + 350: 3,-16 + 576: 22,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 326: 11,-3 + 327: 11,-4 + 328: 20,-2 + 329: 20,-3 + 330: 20,-4 + 448: -3,-16 + 449: -3,-15 + 450: -3,-14 + 474: 24,-5 + 555: 25,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 29: 1,-7 + 592: 3,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 591: -1,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 593: 3,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 594: -1,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 48: -5,-17 + 151: -2,-22 + 641: 22,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 150: 4,-22 + 639: 24,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 152: -2,-18 + 638: 22,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 153: 4,-18 + 640: 24,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 30: 1,-8 + 31: 1,-9 + 32: 1,-10 + 33: 1,-11 + 144: -2,-21 + 145: -2,-20 + 146: -2,-19 + 601: 3,-20 + 607: -1,-20 + 636: 22,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 19: -9,-7 + 20: -8,-7 + 21: -7,-7 + 22: -6,-7 + 23: -5,-7 + 24: -4,-7 + 25: -3,-7 + 26: -2,-7 + 27: -1,-7 + 28: 0,-7 + 134: -1,-22 + 135: 0,-22 + 136: 1,-22 + 137: 2,-22 + 138: 3,-22 + 353: 3,-18 + 598: 0,-19 + 599: 1,-19 + 600: 2,-19 + 608: 0,-21 + 609: 1,-21 + 610: 2,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 102: -9,-2 + 103: -8,-2 + 139: -1,-18 + 140: 0,-18 + 141: 1,-18 + 142: 2,-18 + 143: 3,-18 + 595: 0,-21 + 596: 1,-21 + 597: 2,-21 + 604: 2,-19 + 605: 1,-19 + 606: 0,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 147: 4,-21 + 148: 4,-20 + 149: 4,-19 + 569: 6,-10 + 602: -1,-20 + 603: 3,-20 + 637: 24,-15 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 225: -3,-3 + 226: 1,-3 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 68: -7,-15 + 69: -8,-15 + 70: -7,-14 + 71: -7,-16 + 72: -6,-15 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkCornerNE + decals: + 179: 8,-6 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkCornerSE + decals: + 174: 8,-11 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkLineE + decals: + 172: 6,-12 + 175: 8,-10 + 176: 8,-9 + 177: 8,-8 + 178: 8,-7 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkLineN + decals: + 180: 7,-6 + 181: 6,-6 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkLineS + decals: + 173: 7,-11 + - node: + color: '#FFFFFFFF' + id: HalfTileDarkQuartertile180 + decals: + 182: 6,-11 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 87: -6,-18 + 88: -5,-18 + 97: -8,-18 + 98: -7,-18 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 188: 14,3 + 189: 15,3 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale + decals: + 100: -5,-20 + 101: -4,-20 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 81: -8,-22 + 89: -5,-19 + 90: -6,-19 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 183: 11,0 + 184: 12,0 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 82: -9,-21 + 83: -9,-20 + 84: -9,-19 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 91: -7,-21 + 92: -7,-20 + 156: -11,-14 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 634: -9,0 + 635: -9,4 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNe + decals: + 649: 25,-14 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 652: 25,-16 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 349: 19,-14 + 490: 4,-11 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 334: 20,-5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSe + decals: + 352: 2,-16 + 491: 4,-9 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 351: 4,-16 + 577: 23,-12 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 655: 25,-15 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 650: 24,-14 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 642: 24,-16 + 651: 24,-16 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlayNE + decals: + 372: 19,-14 + 484: 22,-6 + 493: 4,-11 + 565: 23,-11 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlayNE + decals: + 624: -1,-21 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlayNW + decals: + 428: 20,-5 + 441: -7,-4 + 481: 24,-6 + 566: 25,-11 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlayNW + decals: + 623: 3,-21 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlaySE + decals: + 304: 6,-16 + 305: 9,-16 + 306: 12,-16 + 307: 15,-16 + 308: 20,-16 + 380: 2,-16 + 483: 22,-4 + 492: 4,-9 + 564: 23,-9 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlaySE + decals: + 625: -1,-19 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlaySW + decals: + 299: 8,-16 + 300: 11,-16 + 301: 14,-16 + 302: 17,-16 + 303: 22,-16 + 381: 4,-16 + 482: 24,-4 + 563: 25,-9 + 579: 23,-12 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlaySW + decals: + 626: 3,-19 + - node: + color: '#D4D4D428' + id: MiniTileLineOverlayN + decals: + 547: 25,-9 + 548: 26,-9 + 549: 27,-9 + 550: 28,-9 + 551: 29,-9 + 552: 30,-9 + 553: 31,-9 + - node: + color: '#D4D4D428' + id: MiniTileLineOverlayS + decals: + 540: 31,-11 + 541: 30,-11 + 542: 29,-11 + 543: 28,-11 + 544: 27,-11 + 545: 26,-11 + 546: 25,-11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 355: 2,-18 + 614: -1,-21 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 354: 4,-18 + 571: 6,-11 + 611: 3,-21 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 613: -1,-19 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 570: 6,-9 + 612: 3,-19 + - node: + color: '#D4D4D428' + id: MonoOverlay + decals: + 382: 3,-17 + 383: 2,-13 + 384: 3,-13 + 385: 4,-13 + 392: -8,-3 + 393: -9,-3 + 394: -4,-16 + 395: -4,-15 + 396: -4,-14 + 405: 20,-13 + 406: 21,-13 + 407: 22,-13 + 419: 19,-4 + 420: 19,-3 + 421: 19,-2 + 433: 10,-4 + 434: 10,-3 + 435: 10,-2 + 468: 23,-5 + 488: 5,-10 + 554: 24,-10 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 497: 13,-2 + 498: 14,-2 + 499: 15,-2 + 500: 16,-2 + 501: 17,-2 + 502: 18,-2 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 277: 5,-14 + 278: 7,-14 + 279: 6,-14 + 280: 8,-14 + 281: 9,-14 + 284: 10,-14 + 285: 11,-14 + 286: 12,-14 + 287: 13,-14 + 288: 14,-14 + 289: 15,-14 + 290: 16,-14 + 291: 17,-14 + 292: 18,-14 + 293: 19,-14 + 580: 20,-12 + 581: 20,-11 + 582: 20,-10 + 583: 20,-9 + 584: 20,-8 + 585: 20,-7 + 586: 20,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 99: -7,-19 + 154: -11,-13 + 253: -1,-16 + 254: -2,-16 + 403: -3,-16 + 631: -8,0 + 632: -8,2 + 633: -8,4 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 574: 23,-12 + 575: 23,-11 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 659: 26,-16 + 660: 27,-16 + 661: 28,-16 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 186: 10,0 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 230: 0,-16 + 231: 1,-16 + 587: 22,-6 + 588: 22,-7 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 627: -8,5 + 628: -8,3 + 629: -8,1 + 630: -8,-1 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 73: -8,-16 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 187: 13,0 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 262: 5,-16 + 263: 6,-16 + 309: 18,-16 + 310: 19,-16 + 311: 20,-16 + 312: 9,-16 + 313: 12,-16 + 314: 15,-16 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 503: 13,-4 + 504: 14,-4 + 505: 15,-4 + 506: 16,-4 + 507: 18,-4 + 508: 17,-4 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 74: -6,-14 + 155: -11,-15 + 256: -1,-14 + 257: -2,-14 + 404: -3,-14 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale90 + decals: + 572: 23,-8 + 573: 23,-9 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 656: 26,-14 + 657: 27,-14 + 658: 28,-14 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 190: 13,3 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 259: 0,-14 + 260: 1,-14 + 509: 20,-2 + 510: 21,-2 + 511: 22,-2 + 512: 22,-3 + 513: 22,-4 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 75: -9,-18 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 78: -4,-19 + 80: -7,-22 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 79: -9,-22 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 76: -4,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 215: 3,-2 + 216: 3,-1 + 217: 3,0 + 218: 3,1 + 442: -8,-3 + 445: 4,-13 + 455: 22,-13 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 204: -6,-3 + 205: -4,-3 + 206: -5,-3 + 207: -3,-3 + 208: -2,-3 + 209: -1,-3 + 210: 0,-3 + 211: 1,-3 + 212: 2,-3 + 213: 3,-3 + 214: 4,-3 + 446: -4,-16 + 456: 19,-4 + 496: 5,-10 + 567: 24,-10 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 219: -5,-2 + 220: -5,-1 + 221: -5,1 + 222: -5,0 + 443: -9,-3 + 444: 2,-13 + 454: 20,-13 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 447: -4,-14 + 457: 19,-2 + 495: 5,-10 + 568: 24,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 485: 25,-6 + 486: 25,-5 + 487: 25,-4 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 8191 + 0,-1: + 0: 65535 + -1,0: + 0: 4095 + 0,1: + 0: 275 + 1: 32 + 2: 20488 + -1,1: + 0: 136 + 2: 16387 + 0,2: + 2: 40735 + -1,2: + 2: 12047 + 0,3: + 2: 40863 + -1,3: + 2: 12079 + 0,4: + 2: 31839 + 1,0: + 0: 273 + 3: 52428 + 1,1: + 2: 52897 + 1,2: + 2: 36747 + 1,3: + 2: 36747 + 1,-1: + 0: 7645 + 2,0: + 0: 65262 + 2,1: + 2: 240 + 1,4: + 2: 3995 + 2,-1: + 0: 36317 + 3,0: + 0: 65535 + 3,1: + 2: 240 + 3,-1: + 0: 8191 + 4,0: + 0: 562 + 2: 32896 + 4,1: + 2: 30 + -3,0: + 0: 34956 + -3,1: + 0: 140 + -3,-1: + 0: 34952 + -2,0: + 0: 7645 + -2,1: + 0: 17 + 2: 8268 + -2,-1: + 0: 56799 + -2,2: + 2: 11818 + -2,3: + 2: 11818 + -2,4: + 2: 3626 + -1,-1: + 0: 65535 + -1,4: + 2: 51039 + 0,-4: + 0: 53247 + -1,-4: + 0: 4095 + 0,-3: + 0: 65533 + -1,-3: + 0: 61166 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + 0,-5: + 0: 36863 + 1,-4: + 0: 8191 + 1,-3: + 0: 57309 + 1,-2: + 0: 56797 + 1,-5: + 0: 36317 + 2,-4: + 0: 4095 + 2,-3: + 0: 30583 + 2,-2: + 0: 6007 + 2,-5: + 0: 18022 + 3,-4: + 0: 4095 + 3,-3: + 0: 65531 + 1: 4 + 3,-2: + 0: 8191 + 3,-5: + 0: 11195 + 4,-4: + 0: 4095 + 4,-3: + 0: 1911 + 4,-1: + 0: 4095 + -4,-4: + 0: 34952 + -4,-3: + 0: 136 + -3,-4: + 0: 16307 + -3,-3: + 0: 2235 + -3,-2: + 0: 34952 + -3,-5: + 0: 34952 + 2: 802 + -2,-4: + 0: 24575 + -2,-3: + 0: 3549 + -2,-2: + 0: 65535 + -2,-5: + 0: 65531 + 4,-5: + 0: 7453 + 4,-2: + 0: 1542 + 5,-4: + 0: 30711 + 5,-3: + 0: 65535 + 5,-2: + 0: 63359 + 5,-1: + 0: 1911 + 5,0: + 2: 4371 + 5,-5: + 0: 9011 + 2: 128 + 6,-4: + 0: 4095 + 6,-3: + 0: 61422 + 6,-2: + 0: 65294 + 6,-1: + 0: 15 + 2: 15872 + 7,-4: + 0: 273 + 2: 2240 + 7,-3: + 0: 65535 + 7,-2: + 0: 4367 + 2: 52224 + 7,-1: + 0: 1 + 2: 836 + 8,-4: + 2: 16 + 8,-3: + 0: 256 + 8,-2: + 2: 4352 + 4,-6: + 2: 256 + 0: 49152 + 3,-6: + 2: 3840 + 5,-6: + 0: 12288 + 6,-5: + 2: 560 + 0,-6: + 0: 65280 + -1,-6: + 0: 56576 + -1,-5: + 0: 3549 + 1,-6: + 0: 4352 + 2: 3136 + 2,-6: + 2: 3840 + -4,-5: + 2: 3072 + -3,-6: + 2: 8704 + 0: 34816 + -2,-6: + 0: 47872 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 20.078888 + Nitrogen: 75.53487 + - volume: 2500 + immutable: True + moles: {} + - volume: 2500 + temperature: 235 + moles: + Oxygen: 27.225372 + Nitrogen: 102.419266 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: ExplosionAirtightGrid + - type: BecomesStation + id: LavalandTest +- proto: AcousticGuitarInstrument + entities: + - uid: 896 + components: + - type: Transform + pos: 15.0288925,0.72070587 + parent: 2 +- proto: AirAlarm + entities: + - uid: 450 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 2057 + - 2039 + - 2040 + - type: Fixtures + fixtures: {} + - uid: 897 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 1197 + - 1399 + - 1400 + - 1401 + - 1402 + - 1403 + - 1408 + - 1404 + - 1405 + - 1406 + - 1407 + - 1657 + - 1800 + - 1947 + - type: Fixtures + fixtures: {} + - uid: 1596 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 1642 + - 1817 + - 1961 + - type: Fixtures + fixtures: {} + - uid: 1979 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 753 + - 1816 + - 1965 + - 1963 + - 1962 + - 1966 + - type: Fixtures + fixtures: {} + - uid: 1980 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 1964 + - 1640 + - 1815 + - 1962 + - 1963 + - 1960 + - 1959 + - 1958 + - type: Fixtures + fixtures: {} + - uid: 1981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 1688 + - 1819 + - 1954 + - 1955 + - 1956 + - 1957 + - 1961 + - 1958 + - 1959 + - 1960 + - type: Fixtures + fixtures: {} + - uid: 1988 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 1957 + - 1818 + - 1641 + - type: Fixtures + fixtures: {} + - uid: 1989 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 1805 + - 1643 + - 1814 + - 1644 + - 1973 + - 1954 + - 1955 + - 1956 + - 1972 + - 1971 + - 1970 + - 1969 + - 1974 + - 1948 + - 1949 + - 1950 + - 1951 + - 1952 + - 1953 + - 2057 + - type: Fixtures + fixtures: {} + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 1645 + - 1809 + - 1646 + - 1810 + - 1647 + - 1811 + - 1648 + - 1812 + - 1972 + - 1971 + - 1970 + - 1969 + - type: Fixtures + fixtures: {} + - uid: 1991 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 1973 + - 1813 + - 1650 + - type: Fixtures + fixtures: {} + - uid: 1992 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 1806 + - 1655 + - 1974 + - type: Fixtures + fixtures: {} + - uid: 1993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 1649 + - 1807 + - 1977 + - 1975 + - 1976 + - 1950 + - 1949 + - 1948 + - 1652 + - 1653 + - type: Fixtures + fixtures: {} + - uid: 1994 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 1651 + - 1808 + - 1977 + - type: Fixtures + fixtures: {} + - uid: 1995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 1659 + - 1802 + - 1967 + - 1968 + - type: Fixtures + fixtures: {} + - uid: 1996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 1967 + - 1968 + - 1658 + - 1801 + - 1803 + - 1656 + - 1997 + - 1953 + - 1952 + - 1951 + - 1197 + - 1399 + - 1400 + - 1401 + - 1402 + - 1403 + - 1408 + - 1404 + - 1405 + - 1406 + - 1407 + - type: Fixtures + fixtures: {} + - uid: 1998 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 1997 + - 1660 + - 1804 + - type: Fixtures + fixtures: {} +- proto: AirAlarmFreezer + entities: + - uid: 1978 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 1639 + - 1966 + - type: Fixtures + fixtures: {} +- proto: AirCanister + entities: + - uid: 2163 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 +- proto: Airlock + entities: + - uid: 734 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 +- proto: AirlockCommand + entities: + - uid: 894 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 740 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 891 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 889 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 +- proto: AirlockSalvageGlass + entities: + - uid: 1484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 +- proto: AirlockScience + entities: + - uid: 892 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 +- proto: AirlockScienceGlass + entities: + - uid: 895 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 1947 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 +- proto: AmeController + entities: + - uid: 523 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 +- proto: AmeShielding + entities: + - uid: 514 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 929 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 930 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 932 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 933 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 934 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 935 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 936 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1054 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: Ash + entities: + - uid: 1886 + components: + - type: Transform + pos: 4.596941,-2.353008 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - uid: 406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1370 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 2061 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 2059 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 549 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical +- proto: BannerCargo + entities: + - uid: 2021 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 2 +- proto: BaseResearchAndDevelopmentPointSource + entities: + - uid: 916 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 +- proto: Bed + entities: + - uid: 583 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 591 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 592 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 602 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 720 + components: + - type: Transform + pos: -7.5298634,-21.420746 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -7.265974,-21.305004 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 1466 + components: + - type: Transform + pos: -3.4085522,-17.387438 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 481 + components: + - type: Transform + pos: -10.373631,-10.4120035 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -10.717381,-10.2557535 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 733 + components: + - type: Transform + pos: -12.433026,-12.374683 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 2035 + components: + - type: Transform + pos: 25.512636,-13.369858 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 730 + components: + - type: Transform + pos: -3.6168857,-17.692995 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 732 + components: + - type: Transform + pos: -12.613582,-11.923294 + parent: 2 +- proto: Bucket + entities: + - uid: 2037 + components: + - type: Transform + pos: 25.118406,-15.606602 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 458 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 +- proto: CableHV + entities: + - uid: 601 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 +- proto: CableMV + entities: + - uid: 848 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 703 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 +- proto: Carpet + entities: + - uid: 902 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 908 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 906 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 904 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 202 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 +- proto: Chair + entities: + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 459 + components: + - type: Transform + pos: -3.5056944,-20.41377 + parent: 2 + - uid: 1603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 493 + components: + - type: Transform + pos: -12.659067,-14.274763 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -12.3396225,-14.19143 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -12.3049,-14.552541 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 455 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 1498 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 457 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 886 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingBeltUtilityFilled + entities: + - uid: 575 + components: + - type: Transform + pos: 0.43485898,-17.301914 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 0.75777566,-17.395664 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 577 + components: + - type: Transform + pos: 1.3227398,-17.249758 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 1.5171844,-17.465034 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 1.4616288,-17.360868 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 287 + components: + - type: MetaData + desc: Интересно, кто же забыл тут эту маску? + - type: Transform + parent: 886 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 886 +- proto: ClothingNeckCloakAdmin + entities: + - uid: 312 + components: + - type: Transform + parent: 589 + - type: Physics + canCollide: False +- proto: ClothingNeckCloakSalvagerSupreme + entities: + - uid: 2011 + components: + - type: Transform + pos: 6.4067345,-21.29138 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 898 + components: + - type: Transform + pos: 15.557801,0.58552754 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 682 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - type: AnalysisConsole + analyzerEntity: 606 + - type: DeviceLinkSource + linkedPorts: + 606: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 501 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 681 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical +- proto: ComputerSolarControl + entities: + - uid: 885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 687 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 2159 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2160 + - 2161 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEJar + entities: + - uid: 524 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + missingComponents: + - AccessReader +- proto: CrateEngineeringGear + entities: + - uid: 580 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 +- proto: CratePermaEscapeMats + entities: + - uid: 551 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 +- proto: CurtainsWhiteOpen + entities: + - uid: 543 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 2183 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 2177 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 2168 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 2179 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 2172 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconDockingArm + entities: + - uid: 2182 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 2169 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 2170 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 2173 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 2171 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 2174 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 2184 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: DefaultStationBeaconSolarsN + entities: + - uid: 2178 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 2175 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 2180 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 2181 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: DiagnoserMachineCircuitboard + entities: + - uid: 2161 + components: + - type: Transform + parent: 2159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 2159 +- proto: DisposalBend + entities: + - uid: 2082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 2124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 2066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-21.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 2075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 555 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 +- proto: DisposalXJunction + entities: + - uid: 2083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 2074 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 568 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 587 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - type: Storage + storedItems: + 312: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 312 + - uid: 590 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 +- proto: DrinkGlassWhite + entities: + - uid: 1508 + components: + - type: Transform + pos: 4.7219486,4.516444 + parent: 2 +- proto: DrinkGrapeCan + entities: + - uid: 638 + components: + - type: Transform + pos: -0.3087697,-6.624379 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 572 + components: + - type: Transform + pos: -2.2945366,-11.543413 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 573 + components: + - type: Transform + pos: -1.9612031,-11.404524 + parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 571 + components: + - type: Transform + pos: -2.47638,-11.141269 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 569 + components: + - type: Transform + pos: -2.60138,-11.500644 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 570 + components: + - type: Transform + pos: -2.1834252,-11.258691 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 1510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 683 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical +- proto: ExtinguisherCabinet + entities: + - uid: 691 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 692 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 693 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 694 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 695 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FaxMachineBase + entities: + - uid: 1607 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 1614 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 1999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 1967 + - 1968 + - 1197 + - 1399 + - 1400 + - 1401 + - 1402 + - 1403 + - 1408 + - 1404 + - 1405 + - 1406 + - 1407 + - 1951 + - 1952 + - 1953 + - 1997 + - type: Fixtures + fixtures: {} + - uid: 2000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 1967 + - 1968 + - type: Fixtures + fixtures: {} + - uid: 2001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 1967 + - 1968 + - 1197 + - 1399 + - 1400 + - 1401 + - 1402 + - 1403 + - 1408 + - 1404 + - 1405 + - 1406 + - 1407 + - 1951 + - 1952 + - 1953 + - 1997 + - type: Fixtures + fixtures: {} + - uid: 2002 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 1197 + - 1399 + - 1400 + - 1401 + - 1402 + - 1403 + - 1408 + - 1404 + - 1405 + - 1406 + - 1407 + - type: Fixtures + fixtures: {} + - uid: 2003 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 1954 + - 1955 + - 1956 + - 1973 + - 1972 + - 1971 + - 1970 + - 1969 + - 1953 + - 1952 + - 1951 + - 1974 + - 1948 + - 1949 + - 1950 + - 2057 + - type: Fixtures + fixtures: {} + - uid: 2004 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 1954 + - 1955 + - 1956 + - 1973 + - 1972 + - 1971 + - 1970 + - 1969 + - 1953 + - 1952 + - 1951 + - 1974 + - 1948 + - 1949 + - 1950 + - 2057 + - type: Fixtures + fixtures: {} + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 1974 + - type: Fixtures + fixtures: {} + - uid: 2006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 1977 + - 1975 + - 1976 + - 1950 + - 1949 + - 1948 + - type: Fixtures + fixtures: {} + - uid: 2007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 1957 + - 1956 + - 1955 + - 1954 + - 1958 + - 1959 + - 1960 + - 1961 + - type: Fixtures + fixtures: {} + - uid: 2008 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 1964 + - 1962 + - 1963 + - 1960 + - 1959 + - 1958 + - type: Fixtures + fixtures: {} + - uid: 2009 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 1962 + - 1963 + - 1966 + - 1965 + - type: Fixtures + fixtures: {} +- proto: FireExtinguisherMini + entities: + - uid: 649 + components: + - type: Transform + pos: -0.04430771,-17.301914 + parent: 2 +- proto: Firelock + entities: + - uid: 1964 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - 2008 +- proto: FirelockEdge + entities: + - uid: 1197 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1399 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1400 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1401 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1402 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1403 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1404 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1405 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1406 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1407 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 + - uid: 1408 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - 1996 + - 1999 + - 2001 + - 2002 +- proto: FirelockGlass + entities: + - uid: 1948 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1993 + - 2003 + - 2004 + - 2006 + - uid: 1949 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1993 + - 2003 + - 2004 + - 2006 + - uid: 1950 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1993 + - 2003 + - 2004 + - 2006 + - uid: 1951 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1996 + - 1999 + - 2001 + - 2003 + - 2004 + - uid: 1952 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1996 + - 1999 + - 2001 + - 2003 + - 2004 + - uid: 1953 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1996 + - 1999 + - 2001 + - 2003 + - 2004 + - uid: 1954 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - 1989 + - 2003 + - 2004 + - 2007 + - uid: 1955 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - 1989 + - 2003 + - 2004 + - 2007 + - uid: 1956 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - 1989 + - 2003 + - 2004 + - 2007 + - uid: 1957 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - 1988 + - 2007 + - uid: 1958 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - 1981 + - 2007 + - 2008 + - uid: 1959 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - 1981 + - 2007 + - 2008 + - uid: 1960 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - 1981 + - 2007 + - 2008 + - uid: 1961 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - 1596 + - 2007 + - uid: 1962 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1979 + - 1980 + - 2008 + - 2009 + - uid: 1963 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1979 + - 1980 + - 2008 + - 2009 + - uid: 1965 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1979 + - 2009 + - uid: 1966 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1978 + - 1979 + - 2009 + - uid: 1967 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1995 + - 1996 + - 2000 + - 1999 + - 2001 + - uid: 1968 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1995 + - 1996 + - 2000 + - 1999 + - 2001 + - uid: 1969 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1990 + - 2003 + - 2004 + - uid: 1970 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1990 + - 2003 + - 2004 + - uid: 1971 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1990 + - 2003 + - 2004 + - uid: 1972 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1990 + - 2003 + - 2004 + - uid: 1973 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1991 + - 2003 + - 2004 + - uid: 1974 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - 1992 + - 2003 + - 2004 + - 2005 + - uid: 1975 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - 2006 + - uid: 1976 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - 2006 + - uid: 1977 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - 1994 + - 2006 + - uid: 1997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1996 + - 1998 + - 1999 + - 2001 + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 450 + - 2004 + - 1989 + - 2003 +- proto: FloorDrain + entities: + - uid: 460 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodCakeBirthday + entities: + - uid: 632 + components: + - type: Transform + pos: -0.46270347,-11.335864 + parent: 2 +- proto: FoodCakeBirthdaySlice + entities: + - uid: 640 + components: + - type: Transform + pos: -0.4337697,-8.296254 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -0.3712697,-7.202504 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -0.6525197,-6.999379 + parent: 2 +- proto: FoodMeatChickenFriedVox + entities: + - uid: 1507 + components: + - type: Transform + pos: 4.397875,4.6321845 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 1575 + components: + - type: Transform + pos: -0.5743947,-6.374379 + parent: 2 +- proto: Fork + entities: + - uid: 644 + components: + - type: Transform + pos: -2.3845785,-10.757739 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -1.0095785,-11.429614 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -2.679505,-10.828769 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -0.6212697,-7.671254 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 526 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 525 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1820 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1668 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1671 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1693 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1799 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 1472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1829 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1848 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1908 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1910 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1937 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1946 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2042 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourway + entities: + - uid: 559 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1741 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1752 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeFourwayAlt1 + entities: + - uid: 1888 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2041 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1664 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1666 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1686 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1687 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1747 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1748 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1749 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1750 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1757 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1758 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1759 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1769 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1770 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1771 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1772 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1773 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1794 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1795 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1796 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1914 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1915 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1916 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1917 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1918 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1938 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1939 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1940 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1941 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1942 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeTJunction + entities: + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1714 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1715 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1716 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1717 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1797 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1847 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1856 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1857 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1858 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1859 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1860 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1898 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPressurePump + entities: + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 1638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentPump + entities: + - uid: 753 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1979 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1641 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1988 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1596 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1643 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1644 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1991 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1651 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1994 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1652 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1653 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1992 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1996 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1657 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1996 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1659 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1995 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1998 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 1688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 2039 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 450 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentPumpFreezer + entities: + - uid: 1639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1978 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasVentScrubber + entities: + - uid: 1800 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 897 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1801 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1996 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1802 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1995 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1996 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1998 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1992 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1993 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1808 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1994 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1990 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1991 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1989 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1980 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1816 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1979 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1596 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1988 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1981 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 450 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GravityGeneratorMini + entities: + - uid: 2157 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 +- proto: Grille + entities: + - uid: 27 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 637 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-17.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-21.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 634 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 432 + components: + - type: Transform + pos: 6.333358,-5.343897 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 6.68058,-5.4133415 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 6.486136,-5.6679707 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 6.347247,-5.5985265 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 6.68058,-5.580008 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 6.625025,-6.066119 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 6.3796544,-5.9642673 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 461 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 2028 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 630 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 564 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 +- proto: Lamp + entities: + - uid: 1615 + components: + - type: Transform + pos: 26.528595,-3.3506932 + parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 2 +- proto: LightBulb + entities: + - uid: 1616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.479568,-4.1491075 + parent: 2 +- proto: LightBulbBroken + entities: + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.057693,-5.6491075 + parent: 2 +- proto: LockerFreezerBase + entities: + - uid: 566 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 474 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 475 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 476 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + missingComponents: + - AccessReader +- proto: LockerSalvageSpecialistLavalandFilled + entities: + - uid: 409 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 688 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + missingComponents: + - AccessReader +- proto: LockerSteel + entities: + - uid: 595 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 606 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 467 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 2185 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical +- proto: MedkitBruteFilled + entities: + - uid: 487 + components: + - type: Transform + pos: -11.706964,-10.214409 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -11.561131,-10.360242 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 483 + components: + - type: Transform + pos: -12.654881,-10.193576 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -12.488214,-10.422742 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 719 + components: + - type: Transform + pos: -6.492826,-21.434633 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 491 + components: + - type: Transform + pos: -12.415297,-11.058159 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -12.571547,-11.381076 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 489 + components: + - type: Transform + pos: -11.363214,-10.183159 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -11.175714,-10.339409 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 485 + components: + - type: Transform + pos: -12.102797,-10.193576 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -11.946547,-10.412326 + parent: 2 +- proto: MirrorModern + entities: + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: MopBucketFull + entities: + - uid: 2018 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 +- proto: MopItem + entities: + - uid: 2020 + components: + - type: Transform + pos: -1.5179129,-18.554663 + parent: 2 +- proto: Multitool + entities: + - uid: 2058 + mapInit: true + paused: true + components: + - type: Transform + pos: 14.357017,0.61195457 + parent: 2 + - type: NetworkConfigurator + lastUseAttempt: 1255.8154211 + linkModeActive: False + - type: EmitSoundOnCollide + nextSound: -28228.5217612 +- proto: OperatingTable + entities: + - uid: 499 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 1580 + components: + - type: MetaData + desc: На вид очень вкусный и я не про ножку. + name: schmekins + - type: Transform + pos: 3.5139139,4.557473 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 451 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 718 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 1611 + components: + - type: MetaData + desc: Выглядит не очень здоровым... + name: комнатное растение + - type: Transform + pos: 24.5,-5.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 912 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 1410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 1542 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 1424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 2 +- proto: PoweredWarmSmallLight + entities: + - uid: 2063 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 550 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical +- proto: Railing + entities: + - uid: 1336 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 1340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 686 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 +- proto: RandomVendingClothing + entities: + - uid: 554 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 454 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 453 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 24 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 610 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - type: DnaServer + serverId: 7 +- proto: ResearchDisk10000 + entities: + - uid: 680 + components: + - type: Transform + pos: 7.527791,0.53324354 + parent: 2 +- proto: Shower + entities: + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 2 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} +- proto: SignalButton + entities: + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 602: + - - Pressed + - Toggle + 603: + - - Pressed + - Toggle + 604: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} +- proto: SignArrivals + entities: + - uid: 1598 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignDirectionalSolar + entities: + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignElectricalMed + entities: + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1435 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignEngineering + entities: + - uid: 2156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignHead + entities: + - uid: 2164 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignHydro1 + entities: + - uid: 2162 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignKitchen + entities: + - uid: 2165 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignMedical + entities: + - uid: 2166 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignNosmoking + entities: + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignRestroom + entities: + - uid: 2155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignRND + entities: + - uid: 2158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignSpace + entities: + - uid: 1439 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SignToolStorage + entities: + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: SinkWide + entities: + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 473 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 701 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 +- proto: SolarPanelUranium + entities: + - uid: 355 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 405 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 2015 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 2014 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 653 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 655 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 +- proto: SprayBottleEthanol + entities: + - uid: 505 + components: + - type: Transform + pos: -8.258162,-11.372607 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -4.226911,-11.435107 + parent: 2 +- proto: StasisBed + entities: + - uid: 471 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 705 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 +- proto: SuitStorageExplorerSuit + entities: + - uid: 329 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 +- proto: SurgerykitFilled + entities: + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.612328,-11.341357 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5914946,-11.351773 + parent: 2 +- proto: SurvivalMedipen + entities: + - uid: 439 + components: + - type: Transform + pos: 6.6191015,-7.5236707 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 6.38762,-6.634782 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 6.600583,-7.069967 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 6.591324,-6.7551517 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 6.4570646,-6.4588556 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 6.591324,-6.8801517 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 6.6052127,-6.593115 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 6.5866942,-7.2366333 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 6.4061384,-7.40793 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 6.3691015,-6.954226 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 6.3552127,-7.1764483 + parent: 2 +- proto: Table + entities: + - uid: 910 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 +- proto: TableFancyGreen + entities: + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 +- proto: TableWood + entities: + - uid: 560 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 +- proto: TelecomServerFilled + entities: + - uid: 611 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 887 + components: + - type: Transform + pos: -0.5690292,4.7581396 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 574 + components: + - type: Transform + pos: -0.5338911,-17.416498 + parent: 2 +- proto: ToyFigurineHamlet + entities: + - uid: 2016 + components: + - type: Transform + pos: 27.039501,-3.2841628 + parent: 2 +- proto: ToyFigurineThief + entities: + - uid: 2017 + components: + - type: Transform + pos: 9.498166,-18.939308 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 542 + components: + - type: Transform + pos: 18.597366,-19.641703 + parent: 2 +- proto: VaccinatorMachineCircuitboard + entities: + - uid: 2160 + components: + - type: Transform + parent: 2159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 2159 +- proto: VendingMachineChemicals + entities: + - uid: 674 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + missingComponents: + - AccessReader +- proto: VendingMachineCigs + entities: + - uid: 456 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 553 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 558 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 512 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 2026 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + missingComponents: + - AccessReader +- proto: VendingMachineMedical + entities: + - uid: 472 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + missingComponents: + - AccessReader +- proto: VendingMachineSalvage + entities: + - uid: 431 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} + - uid: 1665 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} + - uid: 1667 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} +- proto: VendingMachineSeeds + entities: + - uid: 2027 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + missingComponents: + - AccessReader +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 625 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 700 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: WarningO2 + entities: + - uid: 699 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: WaterTankFull + entities: + - uid: 552 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 2036 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 513 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 2167 + components: + - type: Transform + pos: -1.0600691,-18.651077 + parent: 2 +... diff --git a/Resources/Maps/_Wega/wegabarratry.yml b/Resources/Maps/_Wega/wegabarratry.yml index abdd1907c21..4046c42a438 100644 --- a/Resources/Maps/_Wega/wegabarratry.yml +++ b/Resources/Maps/_Wega/wegabarratry.yml @@ -1,15 +1,35 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 - forkId: "" - forkVersion: "" - time: 08/16/2025 12:27:45 - entityCount: 15499 + engineVersion: 270.1.0 + forkId: wega + forkVersion: df9d1cc8a270826013a8b4e11d32fe8d09746237 + time: 02/08/2026 17:02:01 + entityCount: 15634 maps: - 5005 grids: - 1 +- 14161 +- 14162 +- 14330 +- 14398 +- 14675 +- 14711 +- 14819 +- 14835 +- 14932 +- 14940 +- 14944 +- 14946 +- 14950 +- 14951 +- 15420 +- 15422 +- 15424 +- 15426 +- 15428 +- 15431 orphans: [] nullspace: [] tilemap: @@ -72,19 +92,19 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAALAAAAAAAAngAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMAngAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAAsAAAAAAACdAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAAnQAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAAcAAAAAAAAHAAAAAAoACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAACeAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAAngAAAAAAAAsAAAAAAAALAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAEAAcAAAAAAAAHAAAAAAUABwAAAAAAAJ4AAAAAAACeAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAJgAAAAABACYAAAAAAQAmAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAngAAAAAAAAcAAAAAAAB5AAAAAAAAnQAAAAAAACYAAAAAAAAmAAAAAAMAJgAAAAACAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAJgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAABAIcAAAAAAgCdAAAAAAAAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAACAH0AAAAAAgB9AAAAAAIAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAACAGsAAAAAAACeAAAAAAAAngAAAAAAAJ4AAAAAAACHAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAJ4AAAAAAABrAAAAAAEAhwAAAAADAJ0AAAAAAAB9AAAAAAIAfQAAAAADAH0AAAAAAgB9AAAAAAMAfQAAAAAAAH0AAAAAAwCdAAAAAAAAawAAAAACAJ0AAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAABrAAAAAAAAawAAAAACAIcAAAAAAQCHAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAADAGsAAAAAAwBrAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAAAawAAAAACAGsAAAAAAACHAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAABABIAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCdAAAAAAAAnQAAAAAAAA== + tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAALAAAAAAAAngAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAMAngAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAAsAAAAAAACdAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAnQAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAAcAAAAAAAAHAAAAAAoACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAACeAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAngAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAAngAAAAAAAAsAAAAAAAALAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAEABwAAAAAEAAcAAAAAAAAHAAAAAAUABwAAAAAAAJ4AAAAAAACeAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAJgAAAAABACYAAAAAAQAmAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAngAAAAAAAAcAAAAAAAB5AAAAAAAAnQAAAAAAACYAAAAAAAAmAAAAAAMAJgAAAAACAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAJgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAABAIcAAAAAAgCdAAAAAAAAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAACAH0AAAAAAgB9AAAAAAIAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAACAGsAAAAAAACeAAAAAAAAngAAAAAAAJ4AAAAAAACHAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAJ4AAAAAAABrAAAAAAEAhwAAAAADAJ0AAAAAAAB9AAAAAAIAfQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAAAAH0AAAAAAwCdAAAAAAAAawAAAAACAJ0AAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAABrAAAAAAAAawAAAAACAIcAAAAAAQCHAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAADAGsAAAAAAwBrAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAAAawAAAAACAGsAAAAAAACHAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAABABIAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCdAAAAAAAAnQAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: nQAAAAAAAJ0AAAAAAAAqAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADABIAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAwCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAKgAAAAAAADMAAAAAAwAjAAAAAAAAIwAAAAABAGsAAAAAAgBrAAAAAAEAawAAAAABAGsAAAAAAQASAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAgAjAAAAAAAAIwAAAAADAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAABAJ0AAAAAAACHAAAAAAIAhwAAAAACAIcAAAAAAQCdAAAAAAAAbAAAAAADAJ0AAAAAAACdAAAAAAAAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAG4AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBuAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAIAnQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAAAAA== + tiles: nQAAAAAAAJ0AAAAAAAAqAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADABIAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAwCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAKgAAAAAAADMAAAAAAwAjAAAAAAAAIwAAAAABAGsAAAAAAgBrAAAAAAEAawAAAAABAGsAAAAAAQASAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAgAjAAAAAAAAIwAAAAADAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAABAJ0AAAAAAACHAAAAAAIAhwAAAAACAIcAAAAAAQCdAAAAAAAAbAAAAAADAJ0AAAAAAACdAAAAAAAAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAG4AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAIAnQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: XQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAIABwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAALAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAXQAAAAAAAF0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAABwAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAF0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAAAHAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAACwAAAAAAAAsAAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACeAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAAngAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAngAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAACAJ0AAAAAAACdAAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAcAAAAABACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAEAhwAAAAABAIcAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAgBIAAAAAAAASAAAAAAAAEgAAAAAAAAjAAAAAAEAIwAAAAACACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAACAIcAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIASAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAEgAAAAAAABIAAAAAAAASAAAAAAAAA== + tiles: XQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAIABwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAALAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAXQAAAAAAAF0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAABwAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAF0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAAAHAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAACwAAAAAAAAsAAAAAAACdAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAACwAAAAAAAJ4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACeAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAJ4AAAAAAACeAAAAAAAAngAAAAAAAJ0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAngAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAACAJ0AAAAAAACdAAAAAAAABwAAAAAIAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAcAAAAABACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACHAAAAAAEAhwAAAAABAIcAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAgBIAAAAAAAASAAAAAAAAEgAAAAAAAAjAAAAAAEAIwAAAAACACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAACAIcAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIASAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAEgAAAAAAACdAAAAAAAASAAAAAAAAA== version: 7 0,0: ind: 0,0 - tiles: EgAAAAAAAGsAAAAAAgA/AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAwCHAAAAAAMAhwAAAAACAGsAAAAAAwBrAAAAAAAAnQAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABIAAAAAAABrAAAAAAEAPwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAAAAJ0AAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAASAAAAAAAAawAAAAACAD8AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAACdAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAnQAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAbgAAAAAAAGsAAAAAAQBrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABuAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAwBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAACACMAAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAMAIwAAAAABAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAACACMAAAAAAAAjAAAAAAIAIwAAAAABAJ0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAIAIwAAAAADACMAAAAAAwCdAAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAIAfQAAAAACAH0AAAAAAgB9AAAAAAEAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAA== + tiles: EgAAAAAAAGsAAAAAAgA/AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAwCHAAAAAAMAhwAAAAACAGsAAAAAAwBrAAAAAAAAnQAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABIAAAAAAABrAAAAAAEAPwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAAAAJ0AAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAASAAAAAAAAawAAAAACAD8AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAACdAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAnQAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAbgAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABuAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAwBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAACACMAAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAMAIwAAAAABAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAACACMAAAAAAAAjAAAAAAIAIwAAAAABAJ0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAIAIwAAAAADACMAAAAAAACdAAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAAAfQAAAAACAH0AAAAAAAB9AAAAAAEAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -96,19 +116,19 @@ entities: version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAALwAAAAAAAC8AAAAAAACdAAAAAAAAngAAAAAAAAsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAALwAAAAAAAJ0AAAAAAAAvAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAAnQAAAAAAAJ0AAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAvAAAAAAAAnQAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAACdAAAAAAAALAAAAAACACwAAAAAAAAsAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAAIAAAAAAACdAAAAAAAACwAAAAAAAJ4AAAAAAABrAAAAAAIAnQAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ4AAAAAAAALAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAACAIcAAAAAAgCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAIAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAACHAAAAAAEAhwAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAADAIcAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAALwAAAAAAAC8AAAAAAACdAAAAAAAAngAAAAAAAAsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAALwAAAAAAAJ0AAAAAAAAvAAAAAAAAnQAAAAAAAAsAAAAAAACeAAAAAAAAnQAAAAAAAJ0AAAAAAAAsAAAAAAEALAAAAAADACwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAvAAAAAAAAnQAAAAAAAJ0AAAAAAAALAAAAAAAACwAAAAAAAJ0AAAAAAACdAAAAAAAALAAAAAACACwAAAAAAAAsAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAAIAAAAAAACdAAAAAAAACwAAAAAAAJ4AAAAAAABrAAAAAAIAnQAAAAAAACwAAAAAAwAsAAAAAAMALAAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ4AAAAAAAALAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAACAIcAAAAAAgCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAACHAAAAAAEAhwAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAADAIcAAAAAAQBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -2,0: ind: -2,0 - tiles: awAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAACAGsAAAAAAQBrAAAAAAIAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAbgAAAAAEAGsAAAAAAwBrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAACHAAAAAAEAhwAAAAABAIcAAAAAAgCHAAAAAAIAhwAAAAACAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMASAAAAAAAAEgAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAwCHAAAAAAIAhwAAAAADAIcAAAAAAwCHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAABAIcAAAAAAQCHAAAAAAEAhwAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAABAIcAAAAAAwCHAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAQCHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAIAhwAAAAABAIcAAAAAAgCHAAAAAAAAhwAAAAADAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAAAhwAAAAACAIcAAAAAAACHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: awAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAACAGsAAAAAAQBrAAAAAAIAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAbgAAAAAEAGsAAAAAAwBrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAACHAAAAAAEAhwAAAAABAIcAAAAAAgCHAAAAAAIAhwAAAAAAAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMASAAAAAAAAEgAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAwCHAAAAAAIAhwAAAAADAIcAAAAAAACHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAABAIcAAAAAAQCHAAAAAAEAhwAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAABAIcAAAAAAwCHAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAQCHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAIAhwAAAAABAIcAAAAAAgCHAAAAAAAAhwAAAAADAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAAAhwAAAAACAIcAAAAAAACHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 1,-1: ind: 1,-1 - tiles: nAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAXQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAAHcAAAAAAAB3AAAAAAMAdwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAABIAAAAAAAASAAAAAAAAHcAAAAAAQB3AAAAAAMAdwAAAAABAHcAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAnQAAAAAAAJ0AAAAAAAAAAAAAAAAASAAAAAAAAEgAAAAAAACdAAAAAAAAdwAAAAAAAHcAAAAAAgB3AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnAAAAAAAAA== + tiles: nAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAXQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAAHcAAAAAAAB3AAAAAAMAdwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAABIAAAAAAAASAAAAAAAAHcAAAAAAQB3AAAAAAMAdwAAAAABAHcAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnQAAAAAAAEgAAAAAAACdAAAAAAAAdwAAAAAAAHcAAAAAAgB3AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnAAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: SAAAAAAAAEgAAAAAAACdAAAAAAAAJAAAAAADACQAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAACQAAAAAAwAkAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAABIAAAAAAAASAAAAAAAAJ0AAAAAAAAkAAAAAAEAJAAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAASAAAAAAAAEgAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAIAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAABAJ0AAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAAgAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAAgAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAIAAAAAAAACAAAAAAAAnQAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAACAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAIAAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJwAAAAAAACcAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: SAAAAAAAAEgAAAAAAACdAAAAAAAAJAAAAAADACQAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAEgAAAAAAABIAAAAAAAAnQAAAAAAACQAAAAAAwAkAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAABIAAAAAAAASAAAAAAAAJ0AAAAAAAAkAAAAAAEAJAAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAASAAAAAAAAEgAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAIAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAABAJ0AAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAAgAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAACAAAAAAAAAgAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAIAAAAAAAACAAAAAAAAnQAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAgAAAAAAAJ0AAAAAAAACAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAACAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAIAAAAAAACdAAAAAAAAAgAAAAAAAAIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJwAAAAAAACcAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 1,-2: ind: 1,-2 @@ -128,19 +148,19 @@ entities: version: 7 0,1: ind: 0,1 - tiles: IwAAAAAAACMAAAAAAQAjAAAAAAEAIwAAAAABACMAAAAAAACdAAAAAAAAfQAAAAABAH0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAMAnQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAABAH0AAAAAAQB9AAAAAAIAfQAAAAABAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAEAfQAAAAAAAH0AAAAAAQB9AAAAAAEAfQAAAAADAH0AAAAAAwB9AAAAAAIAfQAAAAAAAH0AAAAAAwB9AAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAfQAAAAACAH0AAAAAAAB9AAAAAAEAnQAAAAAAAH0AAAAAAQB9AAAAAAIAnQAAAAAAAH0AAAAAAwB9AAAAAAAAfQAAAAADAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAIAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAEAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAAB9AAAAAAAAfQAAAAABAH0AAAAAAgCdAAAAAAAAfQAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAQB9AAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAQB9AAAAAAIAfQAAAAADAH0AAAAAAgB9AAAAAAIAnQAAAAAAAH0AAAAAAQB9AAAAAAEAfQAAAAACAH0AAAAAAgB9AAAAAAIAfQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAEAfQAAAAACAH0AAAAAAwB9AAAAAAIAfQAAAAABAH0AAAAAAwB9AAAAAAEAfQAAAAAAAIIAAAAAAwCCAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAAAfQAAAAABAH0AAAAAAQB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAADAH0AAAAAAQCCAAAAAAAAggAAAAABAH0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAwB9AAAAAAIAfQAAAAABAH0AAAAAAgB9AAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAEAfQAAAAABAH0AAAAAAwB9AAAAAAMAggAAAAADAIIAAAAAAAB9AAAAAAMAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAnQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAfQAAAAABAH0AAAAAAAB9AAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAACAH0AAAAAAAB9AAAAAAEAfQAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAADAH0AAAAAAQB9AAAAAAEAfQAAAAABAH0AAAAAAQB9AAAAAAEAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAQB9AAAAAAEAfQAAAAACAH0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQB9AAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAACAH0AAAAAAgCdAAAAAAAAfQAAAAACAH0AAAAAAwB9AAAAAAAAfQAAAAACAH0AAAAAAgB9AAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAEAfQAAAAACAJ0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAA== + tiles: IwAAAAAAACMAAAAAAQAjAAAAAAEAIwAAAAABACMAAAAAAACdAAAAAAAAfQAAAAABAH0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAAAnQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAABAH0AAAAAAQB9AAAAAAIAfQAAAAABAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAEAfQAAAAAAAH0AAAAAAQB9AAAAAAEAfQAAAAADAH0AAAAAAwB9AAAAAAIAfQAAAAAAAH0AAAAAAwB9AAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAfQAAAAACAH0AAAAAAAB9AAAAAAEAnQAAAAAAAH0AAAAAAQB9AAAAAAIAnQAAAAAAAH0AAAAAAwB9AAAAAAAAfQAAAAADAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAIAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAEAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAAB9AAAAAAAAfQAAAAABAH0AAAAAAgCdAAAAAAAAfQAAAAADAH0AAAAAAAB9AAAAAAAAfQAAAAADAH0AAAAAAQB9AAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAQB9AAAAAAIAfQAAAAADAH0AAAAAAgB9AAAAAAIAnQAAAAAAAH0AAAAAAQB9AAAAAAEAfQAAAAACAH0AAAAAAgB9AAAAAAIAfQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAEAfQAAAAACAH0AAAAAAwB9AAAAAAIAfQAAAAABAH0AAAAAAwB9AAAAAAEAfQAAAAAAAIIAAAAAAwCCAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAAAfQAAAAABAH0AAAAAAQB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAADAH0AAAAAAACCAAAAAAAAggAAAAABAH0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAwB9AAAAAAIAfQAAAAABAH0AAAAAAgB9AAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAEAfQAAAAABAH0AAAAAAwB9AAAAAAMAggAAAAADAIIAAAAAAAB9AAAAAAMAnQAAAAAAAJ0AAAAAAAB9AAAAAAMAnQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAfQAAAAABAH0AAAAAAAB9AAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAACAH0AAAAAAAB9AAAAAAEAfQAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAADAH0AAAAAAQB9AAAAAAEAfQAAAAABAH0AAAAAAQB9AAAAAAEAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQB9AAAAAAMAfQAAAAAAAH0AAAAAAgB9AAAAAAAAfQAAAAACAH0AAAAAAgCdAAAAAAAAfQAAAAACAH0AAAAAAwB9AAAAAAAAfQAAAAACAH0AAAAAAgB9AAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAEAfQAAAAACAJ0AAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAfQAAAAACAH0AAAAAAQB9AAAAAAMAfQAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAfQAAAAABAJ0AAAAAAACBAAAAAAIAgQAAAAABAH0AAAAAAwCdAAAAAAAAnQAAAAAAAG4AAAAAAQCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAMAgQAAAAABAIEAAAAAAQB9AAAAAAIAIwAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIEAAAAAAQCBAAAAAAMAfQAAAAAAACMAAAAAAwCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAIAgQAAAAACAIEAAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAMAnQAAAAAAAIEAAAAAAgCBAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAgQAAAAABAIEAAAAAAQCBAAAAAAAAgQAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAADAIEAAAAAAwBrAAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAIAbgAAAAAAAHIAAAAAAwByAAAAAAAAcgAAAAACAHIAAAAAAwByAAAAAAMAnQAAAAAAAH0AAAAAAAB9AAAAAAIAfQAAAAADAH0AAAAAAAB9AAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgByAAAAAAIAcgAAAAACAHIAAAAAAAByAAAAAAIAcgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAG4AAAAAAQBuAAAAAAAAcgAAAAADAHIAAAAAAAByAAAAAAEAcgAAAAACAHIAAAAAAACdAAAAAAAAfQAAAAADAH0AAAAAAwB9AAAAAAMAfQAAAAACAH0AAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHIAAAAAAQByAAAAAAIAcgAAAAABAHIAAAAAAAByAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAACAH0AAAAAAQB9AAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAEAawAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAABAH0AAAAAAgB9AAAAAAAAfQAAAAACAA== + tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAfQAAAAACAH0AAAAAAQB9AAAAAAMAfQAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAnQAAAAAAAH0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAACdAAAAAAAAfQAAAAABAJ0AAAAAAACBAAAAAAIAgQAAAAABAH0AAAAAAwCdAAAAAAAAnQAAAAAAAG4AAAAAAQCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAH0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAMAgQAAAAABAIEAAAAAAQB9AAAAAAIAIwAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIEAAAAAAQCBAAAAAAMAfQAAAAAAACMAAAAAAwCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAIAgQAAAAACAIEAAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAAAnQAAAAAAAJ0AAAAAAACBAAAAAAAAnQAAAAAAAIEAAAAAAgCBAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAgCdAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAJ0AAAAAAAB9AAAAAAIAgQAAAAABAIEAAAAAAQCBAAAAAAAAgQAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAADAIEAAAAAAwBrAAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAIAbgAAAAAAAHIAAAAAAwByAAAAAAAAcgAAAAACAHIAAAAAAwByAAAAAAMAnQAAAAAAAH0AAAAAAAB9AAAAAAIAfQAAAAADAH0AAAAAAAB9AAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgByAAAAAAIAcgAAAAACAHIAAAAAAAByAAAAAAIAcgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAG4AAAAAAQBuAAAAAAAAcgAAAAADAHIAAAAAAAByAAAAAAEAcgAAAAACAHIAAAAAAACdAAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAACAH0AAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHIAAAAAAQByAAAAAAIAcgAAAAABAHIAAAAAAAByAAAAAAAAnQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAACAH0AAAAAAQB9AAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAEAawAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAABAH0AAAAAAgB9AAAAAAAAfQAAAAACAA== version: 7 0,2: ind: 0,2 - tiles: fQAAAAABAJ0AAAAAAAB9AAAAAAIAfQAAAAABAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAH0AAAAAAwB9AAAAAAAAfQAAAAACAH0AAAAAAwB9AAAAAAEAfQAAAAADAH0AAAAAAAAzAAAAAAMAMwAAAAABADMAAAAAAAAzAAAAAAEAMwAAAAABAH0AAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAAB9AAAAAAIAfQAAAAACAH0AAAAAAwB9AAAAAAMAfQAAAAADAH0AAAAAAwB9AAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAABAJ0AAAAAAACdAAAAAAAAfQAAAAAAAIAAAAAAAQCAAAAAAAIAgAAAAAABAIAAAAAAAQCAAAAAAAMAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAH0AAAAAAQCAAAAAAAIAgAAAAAAAAIAAAAAAAQCAAAAAAAMAgAAAAAAAAH0AAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAKgAAAAACAH0AAAAAAQAzAAAAAAMAfQAAAAACAJ0AAAAAAAB9AAAAAAAAgAAAAAABAIAAAAAAAQCAAAAAAAEAgAAAAAACAIAAAAAAAQB9AAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAnQAAAAAAAH0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAADMAAAAAAwB9AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAAqAAAAAAEAKgAAAAAAAH0AAAAAAgB9AAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEoAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEoAAAAAAABKAAAAAAAASgAAAAAAAEoAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABKAAAAAAAASgAAAAAAAEoAAAAAAABKAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAEAhwAAAAADAIcAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: fQAAAAABAJ0AAAAAAAB9AAAAAAAAfQAAAAABAH0AAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAH0AAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAEAfQAAAAADAH0AAAAAAAAzAAAAAAMAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAABAH0AAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAABAJ0AAAAAAAB9AAAAAAIAfQAAAAACAH0AAAAAAwB9AAAAAAMAfQAAAAADAH0AAAAAAwB9AAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAABAJ0AAAAAAACdAAAAAAAAfQAAAAAAAIAAAAAAAQCAAAAAAAIAgAAAAAABAIAAAAAAAQCAAAAAAAMAfQAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAgCdAAAAAAAAnQAAAAAAAH0AAAAAAQCAAAAAAAIAgAAAAAAAAIAAAAAAAQCAAAAAAAMAgAAAAAAAAH0AAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAKgAAAAACAH0AAAAAAQAzAAAAAAMAMwAAAAAAAJ0AAAAAAAB9AAAAAAAAgAAAAAABAIAAAAAAAQCAAAAAAAEAgAAAAAACAIAAAAAAAQB9AAAAAAEAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAIAnQAAAAAAADMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAADMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAAqAAAAAAEAKgAAAAAAAH0AAAAAAgB9AAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEoAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB9AAAAAAAAnQAAAAAAAH0AAAAAAAB9AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEoAAAAAAABKAAAAAAAASgAAAAAAAEoAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAACdAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABKAAAAAAAASgAAAAAAAEoAAAAAAABKAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAEAhwAAAAADAIcAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAACHAAAAAAMAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: awAAAAADAGsAAAAAAACdAAAAAAAAbgAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAADAJ0AAAAAAAB9AAAAAAEAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAABAGsAAAAAAwB9AAAAAAAAfQAAAAABAH0AAAAAAwB9AAAAAAAAfQAAAAADAH0AAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAH0AAAAAAwB9AAAAAAMAfQAAAAACAH0AAAAAAwB9AAAAAAEAawAAAAADAJ0AAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAwBrAAAAAAEAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAqAAAAAAAAawAAAAAAAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAAAACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAwBrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAABAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAEAIwAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAACACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAABrAAAAAAMAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAADACMAAAAAAAAjAAAAAAEAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAIAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: awAAAAADAGsAAAAAAACdAAAAAAAAbgAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAADAJ0AAAAAAAB9AAAAAAEAfQAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAMAawAAAAABAGsAAAAAAwB9AAAAAAAAfQAAAAABAH0AAAAAAwB9AAAAAAAAfQAAAAADAH0AAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAACAH0AAAAAAwB9AAAAAAEAawAAAAADAJ0AAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAwBrAAAAAAEAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAqAAAAAAAAawAAAAAAAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAAAACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACoAAAAAAwBrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAABAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAEAIwAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAACACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAABrAAAAAAMAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAADACMAAAAAAAAjAAAAAAEAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 1,2: ind: 1,2 @@ -148,11 +168,11 @@ entities: version: 7 -2,2: ind: -2,2 - tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAHkAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABuAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAMANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAIwAAAAAAACMAAAAAAwCdAAAAAAAAIwAAAAADACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAMAnQAAAAAAACMAAAAAAQAjAAAAAAIAnQAAAAAAACMAAAAAAwAjAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAEAIwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAIAIwAAAAABACMAAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAEAIwAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAADACMAAAAAAgAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAMAIwAAAAADACMAAAAAAwCdAAAAAAAAawAAAAACAJ0AAAAAAAAjAAAAAAIAIwAAAAACAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAAAACMAAAAAAwAjAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAMAIwAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAADAG0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAABtAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAQCdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAbQAAAAAAAJ0AAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAgCHAAAAAAEAhwAAAAABAJ0AAAAAAABrAAAAAAEAawAAAAAAAG0AAAAAAgCdAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAEAhwAAAAADAIcAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAwBtAAAAAAIAawAAAAACADIAAAAAAAAyAAAAAAAAMgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAABAIcAAAAAAwCHAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAbQAAAAAAAJ0AAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAMAhwAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAA== + tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAHkAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAMANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAIwAAAAAAACMAAAAAAwCdAAAAAAAAIwAAAAADACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAMAnQAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAEAIwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAIAIwAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAEAIwAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAADACMAAAAAAAAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAMAIwAAAAADACMAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAAAjAAAAAAIAIwAAAAACAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAAAACMAAAAAAwAjAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAQAjAAAAAAMAIwAAAAADAJ0AAAAAAABrAAAAAAAAawAAAAAAAG0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAABtAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAQCdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAbQAAAAAAAJ0AAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAgCHAAAAAAEAhwAAAAABAJ0AAAAAAABrAAAAAAEAawAAAAAAAG0AAAAAAgCdAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAEAhwAAAAADAIcAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAwBtAAAAAAIAawAAAAACADIAAAAAAAAyAAAAAAAAMgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAbQAAAAAAAJ0AAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAMAhwAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: nQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAwCHAAAAAAEAhwAAAAADAIcAAAAAAwCHAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAwCHAAAAAAIAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAACAIcAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAADAIcAAAAAAwCHAAAAAAEAhwAAAAACAIcAAAAAAwCHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAAAACMAAAAAAQCHAAAAAAIAhwAAAAADAJ0AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAIAhwAAAAAAAIcAAAAAAACHAAAAAAMAnQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAIwAAAAADAIcAAAAAAACHAAAAAAMAhwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADACMAAAAAAQCHAAAAAAIAhwAAAAAAAIcAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAwCdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwAjAAAAAAAAhwAAAAADAIcAAAAAAQCHAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAIwAAAAAAAIcAAAAAAgCHAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADACMAAAAAAwCHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAawAAAAACAGsAAAAAAgB5AAAAAAAAeQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAADAA== + tiles: nQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAwCHAAAAAAAAhwAAAAADAIcAAAAAAwCHAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAIcAAAAAAwCHAAAAAAIAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAACAIcAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAA1AAAAAAAANQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAADAIcAAAAAAwCHAAAAAAEAhwAAAAACAIcAAAAAAwCHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAADUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAAAACMAAAAAAQCHAAAAAAIAhwAAAAADAJ0AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAgAjAAAAAAIAhwAAAAAAAIcAAAAAAACHAAAAAAMAnQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAIwAAAAADAIcAAAAAAACHAAAAAAMAhwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADACMAAAAAAQCHAAAAAAIAhwAAAAAAAIcAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAwCdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwAjAAAAAAAAhwAAAAADAIcAAAAAAQCHAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAAAIwAAAAAAAIcAAAAAAgCHAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAAAACMAAAAAAwCHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAawAAAAACAGsAAAAAAgB5AAAAAAAAeQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAADAA== version: 7 -2,-2: ind: -2,-2 @@ -160,23 +180,23 @@ entities: version: 7 -3,0: ind: -3,0 - tiles: nQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAgCdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAABrAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAwCdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAgCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAQCdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAEAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAwBrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHEAAAAAAABxAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAJ0AAAAAAACHAAAAAAIAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAACAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAA== + tiles: nQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAgCdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAABAGsAAAAAAwCdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAgCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAEAnQAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAwBrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHEAAAAAAABxAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAJ0AAAAAAACHAAAAAAIAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAACAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAABAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAA== version: 7 -3,1: ind: -3,1 - tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAcQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAcQAAAAAAAHEAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAnQAAAAAAAJ0AAAAAAAA1AAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwAjAAAAAAIAnQAAAAAAACMAAAAAAwCdAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADACMAAAAAAQAjAAAAAAAAIwAAAAABACMAAAAAAQBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAAAjAAAAAAEAIwAAAAADACMAAAAAAgAjAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAAAjAAAAAAEAIwAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADACMAAAAAAgAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAcQAAAAAAAHEAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAANQAAAAAAADUAAAAAAAA1AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAnQAAAAAAAJ0AAAAAAAA1AAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwAjAAAAAAIAnQAAAAAAACMAAAAAAwCdAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAnQAAAAAAAJ0AAAAAAAAjAAAAAAMAIwAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADACMAAAAAAQAjAAAAAAAAIwAAAAABACMAAAAAAQBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAAAjAAAAAAEAIwAAAAADACMAAAAAAgAjAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAAAjAAAAAAEAIwAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADACMAAAAAAgAjAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAQBrAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAQB5AAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAAAAIcAAAAAAgCHAAAAAAEAhwAAAAACAIcAAAAAAQCHAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAIAhwAAAAACACMAAAAAAQAjAAAAAAIAIwAAAAADAJ0AAAAAAABrAAAAAAMAnQAAAAAAAIcAAAAAAQCHAAAAAAAAhwAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAABAIcAAAAAAwAjAAAAAAIAIwAAAAACACMAAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAACHAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAnQAAAAAAAIcAAAAAAwCHAAAAAAEAhwAAAAAAAIcAAAAAAQCHAAAAAAMAIwAAAAADACMAAAAAAwAjAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAABAIcAAAAAAgCHAAAAAAIAhwAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAACAJ0AAAAAAABrAAAAAAIAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAEAhwAAAAABAIcAAAAAAgCHAAAAAAAAnQAAAAAAACMAAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAADAIcAAAAAAACHAAAAAAEAhwAAAAAAACMAAAAAAAAjAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAQwAAAAAAAEMAAAAAAABDAAAAAAAAQwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAIwAAAAADACMAAAAAAwAjAAAAAAAAIwAAAAADACMAAAAAAQCdAAAAAAAAnQAAAAAAAG0AAAAAAgBtAAAAAAEAbQAAAAAAAG0AAAAAAQBtAAAAAAAAbQAAAAABAG0AAAAAAABrAAAAAAAAawAAAAADACMAAAAAAQAjAAAAAAMAQwAAAAAAAEMAAAAAAABDAAAAAAAAIwAAAAACACMAAAAAAwBtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAIAbQAAAAADAG0AAAAAAgBtAAAAAAMAawAAAAABAGsAAAAAAAAjAAAAAAEAIwAAAAABAEMAAAAAAABDAAAAAAAAQwAAAAAAACMAAAAAAAAjAAAAAAAAbQAAAAADAG0AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAwBtAAAAAAAAbQAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAACMAAAAAAwBDAAAAAAAAQwAAAAAAAEMAAAAAAAAjAAAAAAIAIwAAAAABAG0AAAAAAgBtAAAAAAAAbQAAAAACAG0AAAAAAgBtAAAAAAAAbQAAAAABAG0AAAAAAQBrAAAAAAMAawAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAMAIwAAAAAAACMAAAAAAABtAAAAAAIAbQAAAAADAG0AAAAAAABtAAAAAAMAbQAAAAACAG0AAAAAAQBtAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAAAIwAAAAAAACMAAAAAAgCdAAAAAAAAbQAAAAABAG0AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAQBtAAAAAAEAbQAAAAADAA== + tiles: nQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAQBrAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAAAAGsAAAAAAQB5AAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAAAAIcAAAAAAgCHAAAAAAEAhwAAAAACAIcAAAAAAQCHAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAIAhwAAAAACACMAAAAAAQAjAAAAAAIAIwAAAAADAJ0AAAAAAABrAAAAAAMAnQAAAAAAAIcAAAAAAQCHAAAAAAAAhwAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAABAIcAAAAAAwAjAAAAAAIAIwAAAAACACMAAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAACHAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAnQAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAMAIwAAAAADACMAAAAAAwAjAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAABAIcAAAAAAgCHAAAAAAIAhwAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAACAJ0AAAAAAABrAAAAAAIAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAEAhwAAAAABAIcAAAAAAgCHAAAAAAAAnQAAAAAAACMAAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAADAIcAAAAAAACHAAAAAAEAhwAAAAAAACMAAAAAAAAjAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAQwAAAAAAAEMAAAAAAABDAAAAAAAAQwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAAAIwAAAAADACMAAAAAAQCdAAAAAAAAnQAAAAAAAG0AAAAAAgBtAAAAAAEAbQAAAAAAAG0AAAAAAQBtAAAAAAAAbQAAAAABAG0AAAAAAABrAAAAAAAAawAAAAADACMAAAAAAQAjAAAAAAMAQwAAAAAAAEMAAAAAAABDAAAAAAAAIwAAAAACACMAAAAAAwBtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAIAbQAAAAADAG0AAAAAAgBtAAAAAAMAawAAAAABAGsAAAAAAAAjAAAAAAEAIwAAAAAAAEMAAAAAAABDAAAAAAAAQwAAAAAAACMAAAAAAAAjAAAAAAAAbQAAAAADAG0AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAwBtAAAAAAAAbQAAAAADAGsAAAAAAgCdAAAAAAAAnQAAAAAAACMAAAAAAwBDAAAAAAAAQwAAAAAAAEMAAAAAAAAjAAAAAAIAIwAAAAABAG0AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAQBrAAAAAAMAawAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAABACMAAAAAAwAjAAAAAAMAIwAAAAAAACMAAAAAAABtAAAAAAIAbQAAAAADAG0AAAAAAABtAAAAAAMAbQAAAAACAG0AAAAAAQBtAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAAAIwAAAAAAACMAAAAAAgCdAAAAAAAAbQAAAAABAG0AAAAAAgBtAAAAAAAAbQAAAAAAAG0AAAAAAQBtAAAAAAEAbQAAAAADAA== version: 7 -3,-1: ind: -3,-1 - tiles: nAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAADAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAgCdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAhwAAAAAAAIcAAAAAAgCHAAAAAAMAhwAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAAAhwAAAAABAIcAAAAAAQCdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAABAJ0AAAAAAACHAAAAAAEAhwAAAAAAAIcAAAAAAwCdAAAAAAAAhwAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAgCHAAAAAAAAhwAAAAADAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAA== + tiles: nAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAADAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAMAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAhwAAAAAAAIcAAAAAAgCHAAAAAAMAhwAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCHAAAAAAAAhwAAAAABAIcAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAABAJ0AAAAAAACHAAAAAAEAhwAAAAAAAIcAAAAAAwCdAAAAAAAAhwAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAgCHAAAAAAAAhwAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAA== version: 7 -4,-1: ind: -4,-1 - tiles: nQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwBrAAAAAAIAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAJ0AAAAAAACHAAAAAAMAnQAAAAAAAIcAAAAAAgCdAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAJ0AAAAAAACHAAAAAAEAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAIcAAAAAAgCdAAAAAAAAnQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAgCdAAAAAAAAhwAAAAADAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAhwAAAAABAJ0AAAAAAACHAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAAAAJ0AAAAAAACHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: nQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAwBrAAAAAAIAawAAAAACAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAJ0AAAAAAACHAAAAAAMAnQAAAAAAAIcAAAAAAgCdAAAAAAAAhwAAAAABAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAJ0AAAAAAACHAAAAAAEAnQAAAAAAAJ0AAAAAAACHAAAAAAEAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAgCdAAAAAAAAnQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAgCdAAAAAAAAhwAAAAADAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAhwAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAMAhwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -4,0: ind: -4,0 @@ -184,27 +204,27 @@ entities: version: 7 -4,1: ind: -4,1 - tiles: eQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQCHAAAAAAEAhwAAAAABAIcAAAAAAwCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAnQAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAADACMAAAAAAQCdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAACACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAgCdAAAAAAAAKgAAAAABACoAAAAAAgAqAAAAAAIAKgAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAACoAAAAAAQAqAAAAAAIAKgAAAAACACoAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAqAAAAAAAAKgAAAAABACoAAAAAAAAqAAAAAAMAnQAAAAAAAGsAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAqAAAAAAEAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAcQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAACAGsAAAAAAQBxAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAHEAAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: eQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQCHAAAAAAEAhwAAAAABAIcAAAAAAwCHAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAIAnQAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAADACMAAAAAAQCdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAACACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAKgAAAAABACoAAAAAAAAqAAAAAAIAKgAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAnQAAAAAAACoAAAAAAQAqAAAAAAIAKgAAAAACACoAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAMAnQAAAAAAAGsAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAqAAAAAAEAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAgBrAAAAAAMAcQAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAQBxAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAHEAAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -4,2: ind: -4,2 - tiles: awAAAAACAGsAAAAAAQBrAAAAAAEAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAEAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAACAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABDAAAAAAAAQwAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAQwAAAAAAAEMAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAACAEMAAAAAAABDAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAgBDAAAAAAAAQwAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGAAAAAAAABrAAAAAAMAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAACAGAAAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAIAYAAAAAAAAGAAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGsAAAAAAABrAAAAAAEAYAAAAAAAAGsAAAAAAABgAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAawAAAAADAGAAAAAAAABrAAAAAAIAawAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAADAGAAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGAAAAAAAABrAAAAAAIAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAIAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAEAcQAAAAAAAA== + tiles: awAAAAACAGsAAAAAAQBrAAAAAAEAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAEAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAACAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABDAAAAAAAAQwAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAAAQwAAAAAAAEMAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAAAAEMAAAAAAABDAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACACMAAAAAAgBDAAAAAAAAQwAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGAAAAAAAABrAAAAAAMAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAACAGAAAAAAAACdAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAIAYAAAAAAAAGAAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACdAAAAAAAAawAAAAAAAGAAAAAAAABrAAAAAAIAawAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAADAGAAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGAAAAAAAABrAAAAAAIAYAAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAIAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAEAcQAAAAAAAA== version: 7 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAgBrAAAAAAEAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAACAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAgBrAAAAAAEAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAACAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAAAawAAAAADAGsAAAAAAwCcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAMAIwAAAAAAACMAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAACAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAADACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAwCcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAEAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAQAjAAAAAAIAIwAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAACMAAAAAAQAjAAAAAAMAIwAAAAAAACMAAAAAAwCdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAACAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAACMAAAAAAAAjAAAAAAMAIwAAAAADACMAAAAAAwAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAQAjAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAMAhwAAAAABAJ0AAAAAAABrAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAIAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABdAAAAAAAAIwAAAAADACMAAAAAAgAjAAAAAAIAXQAAAAAAACMAAAAAAQAjAAAAAAEAIwAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAXQAAAAAAACMAAAAAAABbAAAAAAMAIwAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAABIAAAAAAAAjAAAAAAIAWwAAAAACACMAAAAAAQCdAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAEAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABdAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAACMAAAAAAwAjAAAAAAMAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIAIwAAAAACACMAAAAAAgAjAAAAAAEAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADACMAAAAAAgAjAAAAAAIAIwAAAAADAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAQCcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAgBrAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAAAAA== + tiles: nQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAwCHAAAAAAMAhwAAAAABAJ0AAAAAAABrAAAAAAMAnQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAIAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABdAAAAAAAAIwAAAAADACMAAAAAAgAjAAAAAAIAXQAAAAAAACMAAAAAAQAjAAAAAAEAIwAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAXQAAAAAAACMAAAAAAABbAAAAAAMAIwAAAAAAAJ0AAAAAAAAjAAAAAAEAIwAAAAABACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAABIAAAAAAAAjAAAAAAIAWwAAAAACACMAAAAAAQCdAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAEAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABdAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAACMAAAAAAwAjAAAAAAMAIwAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAACAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAIAIwAAAAACACMAAAAAAgAjAAAAAAEAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADACMAAAAAAgAjAAAAAAIAIwAAAAADAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAACdAAAAAAAAIwAAAAABACMAAAAAAQCcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAgBrAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAABrAAAAAAAAawAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: nQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAAXAAAAAAAAFwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAAAjAAAAAAEAIwAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAIwAAAAABACMAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAAAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAABAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAIAIwAAAAACAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAABAJ0AAAAAAACHAAAAAAEAnQAAAAAAADQAAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAEAIwAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAACAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAgCHAAAAAAEAhwAAAAACAIcAAAAAAACHAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAIwAAAAAAACMAAAAAAgBrAAAAAAEAawAAAAADAGsAAAAAAQCdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAMAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAACMAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAMAnQAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAAAAIcAAAAAAQCHAAAAAAIAnQAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAA== + tiles: nQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAAXAAAAAAAAFwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAFwAAAAAAABcAAAAAAAAjAAAAAAEAIwAAAAACAJ0AAAAAAABrAAAAAAMAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAABcAAAAAAAAXAAAAAAAAIwAAAAABACMAAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwAjAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAABAGsAAAAAAABrAAAAAAEAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAIAIwAAAAACAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAIwAAAAABACMAAAAAAgCdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAABAJ0AAAAAAACHAAAAAAEAnQAAAAAAADQAAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAEAIwAAAAAAAGsAAAAAAwBrAAAAAAEAawAAAAACAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAgCHAAAAAAEAhwAAAAACAIcAAAAAAACHAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAIwAAAAAAACMAAAAAAgBrAAAAAAEAawAAAAADAGsAAAAAAQCdAAAAAAAAIwAAAAACACMAAAAAAQAjAAAAAAMAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAACMAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAMAnQAAAAAAACMAAAAAAQAjAAAAAAAAIwAAAAAAAIcAAAAAAACHAAAAAAIAnQAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAgBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAA== version: 7 0,3: ind: 0,3 @@ -224,11 +244,11 @@ entities: version: 7 -3,3: ind: -3,3 - tiles: awAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAABAGsAAAAAAgBrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAIAawAAAAABAJ0AAAAAAABrAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAgCdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAgAjAAAAAAIAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAIwAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAEAIwAAAAAAACMAAAAAAQAjAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAIwAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAACAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: awAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAADAJ0AAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAABrAAAAAAIAawAAAAABAJ0AAAAAAABrAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAIwAAAAAAACMAAAAAAgCdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAACMAAAAAAgAjAAAAAAIAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAjAAAAAAAAIwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAIwAAAAAAACMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAjAAAAAAEAIwAAAAAAACMAAAAAAQAjAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAIwAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAACAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,3: ind: -4,3 - tiles: eQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAcQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAgBrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAADAGsAAAAAAQBrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAIwAAAAADAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAQAjAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAIwAAAAAAACMAAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAnQAAAAAAACMAAAAAAwAjAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAADAJ0AAAAAAAAjAAAAAAIAIwAAAAABACgAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAIwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAIwAAAAADACMAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAJ0AAAAAAAAjAAAAAAAAAAAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAIAnQAAAAAAAIcAAAAAAQCHAAAAAAEAhwAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: eQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAcQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAABAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAGsAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAADAGsAAAAAAgBrAAAAAAEAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAIwAAAAADAJ0AAAAAAAAjAAAAAAIAIwAAAAABACMAAAAAAQAjAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAQBrAAAAAAAAawAAAAADAGsAAAAAAgCdAAAAAAAAIwAAAAAAACMAAAAAAACdAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAMAnQAAAAAAAGsAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAwBrAAAAAAEAawAAAAAAAGsAAAAAAwBrAAAAAAMAnQAAAAAAACMAAAAAAwAjAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAADAJ0AAAAAAAAjAAAAAAAAIwAAAAABACgAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAADAGsAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAwCdAAAAAAAAIwAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAADAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAIwAAAAADACMAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAwCdAAAAAAAAnQAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAJ0AAAAAAAAjAAAAAAAAAAAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAIcAAAAAAACHAAAAAAIAnQAAAAAAAIcAAAAAAACHAAAAAAEAhwAAAAACAJ0AAAAAAABrAAAAAAIAawAAAAADAGsAAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -4,-2: ind: -4,-2 @@ -240,7 +260,7 @@ entities: version: 7 -5,2: ind: -5,2 - tiles: awAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAADAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAwBrAAAAAAAAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAABAGsAAAAAAQBrAAAAAAMAawAAAAAAAGsAAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAACAIcAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACHAAAAAAIAhwAAAAACAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAADAIcAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAEgAAAAAAACdAAAAAAAASAAAAAAAAJ0AAAAAAABIAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAA== + tiles: awAAAAABAGsAAAAAAwBrAAAAAAMAawAAAAADAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAAAAGsAAAAAAQCdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAgBrAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAAAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAGsAAAAAAQBrAAAAAAEAawAAAAABAGsAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAABrAAAAAAIAawAAAAACAGsAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAAAAIcAAAAAAwCHAAAAAAAAhwAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABgAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAACAIcAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAhwAAAAACAIcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAACHAAAAAAIAhwAAAAACAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAIcAAAAAAQCHAAAAAAMAhwAAAAADAIcAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACHAAAAAAIAhwAAAAAAAIcAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAEgAAAAAAACdAAAAAAAASAAAAAAAAJ0AAAAAAABIAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAA== version: 7 -5,3: ind: -5,3 @@ -248,19 +268,19 @@ entities: version: 7 -3,4: ind: -3,4 - tiles: awAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAABrAAAAAAIAawAAAAABAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: awAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAADAGsAAAAAAABrAAAAAAIAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,4: ind: -4,4 - tiles: AAAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAABAIcAAAAAAQCHAAAAAAEAnQAAAAAAAIcAAAAAAgCHAAAAAAIAhwAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAJwAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAEAhwAAAAACAJ0AAAAAAACHAAAAAAEAhwAAAAABAIcAAAAAAQCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAQAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAJ0AAAAAAACHAAAAAAAAhwAAAAAAAIcAAAAAAQCHAAAAAAEAnQAAAAAAAIcAAAAAAACHAAAAAAIAhwAAAAADAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAQBrAAAAAAAAawAAAAACAJwAAAAAAACdAAAAAAAAhwAAAAADAIcAAAAAAACHAAAAAAEAhwAAAAACAJ0AAAAAAACHAAAAAAEAhwAAAAABAIcAAAAAAQCdAAAAAAAAawAAAAABAGsAAAAAAgBrAAAAAAIAawAAAAACAGsAAAAAAQAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAACdAAAAAAAAfQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAB9AAAAAAAAfQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAH0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAACdAAAAAAAAAAAAAAAAAA== version: 7 -4,5: ind: -4,5 - tiles: AAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAEAnQAAAAAAAAcAAAAABgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAADUAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAACAGsAAAAAAwCdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAABwAAAAAAAJ0AAAAAAAA1AAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAAcAAAAAAACdAAAAAAAANQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAawAAAAADAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAawAAAAABAGAAAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAABwAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAEAnQAAAAAAAAcAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAHAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAABwAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAEAnQAAAAAAAAcAAAAABgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAAAHAAAAAAAAnQAAAAAAADUAAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAACAGsAAAAAAwCdAAAAAAAAawAAAAACAGsAAAAAAwBrAAAAAAEAnQAAAAAAAGsAAAAAAACdAAAAAAAABwAAAAAAAJ0AAAAAAAA1AAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAQCdAAAAAAAAnQAAAAAAAAcAAAAAAACdAAAAAAAANQAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAACdAAAAAAAAawAAAAABAGAAAAAAAACdAAAAAAAAYAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAABwAAAAAAAAAAAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAAcAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAJ0AAAAAAAAHAAAAAAAAAAAAAAAAAJ0AAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAwBrAAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAEAnQAAAAAAAGsAAAAAAgBrAAAAAAMAawAAAAADAJ0AAAAAAACdAAAAAAAABwAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAawAAAAABAJ0AAAAAAABrAAAAAAAAnQAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,5: ind: -5,5 @@ -268,11 +288,11 @@ entities: version: 7 -5,1: ind: -5,1 - tiles: nAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAgBrAAAAAAIAawAAAAABAGsAAAAAAQBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAA== + tiles: nAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAgBrAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAMAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAQBrAAAAAAEAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAgCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAABAJ0AAAAAAABrAAAAAAMAawAAAAACAGsAAAAAAwBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAAAawAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAADAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAABrAAAAAAIAnQAAAAAAAGsAAAAAAQBrAAAAAAIAawAAAAACAGsAAAAAAQCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAawAAAAADAGsAAAAAAgBrAAAAAAEAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwBrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAABrAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAMAawAAAAACAJ0AAAAAAACdAAAAAAAAawAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAIAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAgCdAAAAAAAAnQAAAAAAAA== version: 7 -6,1: ind: -6,1 - tiles: AAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAgAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAADAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCcAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAAAawAAAAABAGsAAAAAAwBrAAAAAAIAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAEAawAAAAABAJwAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAAAawAAAAACAGsAAAAAAQBrAAAAAAMAawAAAAABAGsAAAAAAgAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAABAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAGsAAAAAAwCdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAABrAAAAAAMAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgCcAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAawAAAAAAAGsAAAAAAwBrAAAAAAAAawAAAAABAGsAAAAAAwBrAAAAAAIAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAAB5AAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAB5AAAAAAAAeQAAAAAAAJ0AAAAAAABrAAAAAAEAawAAAAAAAGsAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAACdAAAAAAAAawAAAAABAGsAAAAAAABrAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAGsAAAAAAgBrAAAAAAIAawAAAAAAAA== version: 7 -6,2: ind: -6,2 @@ -288,7 +308,7 @@ entities: version: 7 -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,4: ind: -5,4 @@ -348,10 +368,15 @@ entities: decals: 8646: 19,32 - node: - color: '#DE3A3A96' + color: '#FFFFFFFF' id: Bot decals: - 7280: -43,66 + 8857: -43,61 + 8858: -44,61 + 8859: -41,67 + 8963: -7,23 + 9454: -53,74 + 9455: -53,73 - node: color: '#A46106FF' id: BotLeft @@ -364,6 +389,17 @@ entities: 7159: -43,-12 7160: -42,-11 7161: -42,-12 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 8865: -44,63 + 8956: -7,25 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 8866: -44,63 - node: color: '#A46106FF' id: Box @@ -470,7 +506,6 @@ entities: id: BrickTileSteelCornerNw decals: 2675: -2,17 - 2705: 2,40 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw @@ -513,9 +548,6 @@ entities: 2617: 16,29 2678: 4,15 2679: 4,16 - 2698: 4,37 - 2699: 4,38 - 2700: 4,39 - node: color: '#D381C9FF' id: BrickTileSteelLineE @@ -533,7 +565,6 @@ entities: 2683: 2,17 2684: 2,17 2685: 3,17 - 2701: 3,40 - node: color: '#D381C9FF' id: BrickTileSteelLineN @@ -558,7 +589,6 @@ entities: 2690: 1,14 2691: 2,14 2692: 3,14 - 2702: 3,36 - node: color: '#D381C9FF' id: BrickTileSteelLineS @@ -572,8 +602,6 @@ entities: 2614: 14,29 2686: -2,16 2687: -2,15 - 2703: 2,37 - 2704: 2,38 - node: color: '#D381C9FF' id: BrickTileSteelLineW @@ -586,11 +614,13 @@ entities: decals: 5520: -8,57 5521: -7,56 + 9043: -26,55 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: 2694: 11,33 + 8940: -7,25 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNe @@ -610,11 +640,6 @@ entities: decals: 43: -1,-2 78: -3,-3 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNe - decals: - 3346: -42,65 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe @@ -630,11 +655,13 @@ entities: id: BrickTileWhiteCornerNw decals: 2160: -13,57 + 9039: -30,55 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: 2693: 7,33 + 8939: -10,25 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNw @@ -655,11 +682,6 @@ entities: 41: -14,-2 42: -10,2 80: -5,-3 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNw - decals: - 3347: -44,65 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw @@ -672,6 +694,12 @@ entities: decals: 2161: -7,54 2162: -8,53 + 9037: -28,52 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 8941: -7,20 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSe @@ -690,11 +718,6 @@ entities: id: BrickTileWhiteCornerSe decals: 79: -3,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSe - decals: - 3348: -42,61 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe @@ -705,6 +728,11 @@ entities: id: BrickTileWhiteCornerSw decals: 2163: -13,53 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 8942: -10,20 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSw @@ -724,11 +752,6 @@ entities: decals: 44: -7,-6 81: -5,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSw - decals: - 3349: -44,61 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw @@ -786,6 +809,14 @@ entities: 2175: -20,59 2176: -20,60 2177: -20,61 + 9042: -26,54 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineE + decals: + 8945: -7,24 + 8961: -7,22 + 8962: -7,23 - node: color: '#9FED58FF' id: BrickTileWhiteLineE @@ -805,13 +836,6 @@ entities: 27: -1,-3 28: -1,-4 29: -1,-5 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineE - decals: - 3339: -42,64 - 3340: -42,63 - 3341: -42,62 - node: color: '#EFB341FF' id: BrickTileWhiteLineE @@ -832,6 +856,7 @@ entities: 2166: -12,57 5518: -10,57 5519: -9,57 + 9040: -28,55 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN @@ -839,6 +864,7 @@ entities: 2695: 8,33 2696: 9,33 2697: 10,33 + 8953: -9,25 - node: color: '#A46106FF' id: BrickTileWhiteLineN @@ -867,11 +893,6 @@ entities: 54: -13,-4 55: -14,-4 83: -4,-3 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineN - decals: - 3338: -43,65 - node: color: '#EFB341FF' id: BrickTileWhiteLineN @@ -895,6 +916,13 @@ entities: 2180: -17,62 2181: -16,62 2182: -15,62 + 9035: -29,52 + 9036: -27,53 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineS + decals: + 8954: -9,20 - node: color: '#A46106FF' id: BrickTileWhiteLineS @@ -910,11 +938,6 @@ entities: 22: -5,-6 23: -4,-6 82: -4,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineS - decals: - 3342: -43,61 - node: color: '#EFB341FF' id: BrickTileWhiteLineS @@ -935,6 +958,7 @@ entities: 2183: -14,59 2184: -14,60 2185: -14,61 + 9038: -30,53 - node: color: '#52B4E9FF' id: BrickTileWhiteLineW @@ -942,6 +966,8 @@ entities: 7326: -14,14 7327: -14,13 7328: -14,12 + 8949: -10,23 + 8950: -10,24 - node: color: '#9FED58FF' id: BrickTileWhiteLineW @@ -963,9 +989,6 @@ entities: color: '#DE3A3AFF' id: BrickTileWhiteLineW decals: - 3343: -44,62 - 3344: -44,63 - 3345: -44,64 7321: -14,8 7322: -14,9 7323: -14,10 @@ -1089,6 +1112,8 @@ entities: id: Delivery decals: 8759: -14,1 + 8860: -42,63 + 8861: -42,64 - node: color: '#FFFFFFFF' id: Dirt @@ -1099,6 +1124,7 @@ entities: 7297: -50,7 7298: -48,7 7299: -47,7 + 9311: -50,67 - node: cleanable: True color: '#FFFFFFFF' @@ -1708,10 +1734,6 @@ entities: 7985: -46,61 7986: -46,62 7987: -47,62 - 7988: -44,62 - 7989: -43,62 - 7990: -43,63 - 7991: -44,63 7997: -63,60 7998: -64,59 7999: -64,60 @@ -1752,17 +1774,89 @@ entities: 8641: 19,32 8642: 20,31 8643: 20,29 + 8867: -44,61 + 8868: -43,67 + 8869: -43,67 + 8871: -44,67 + 8872: -40,67 + 8873: -39,65 + 8874: -39,64 + 8875: -39,61 + 8876: -39,61 + 8877: -39,62 + 8878: -41,63 + 8879: -43,64 + 8880: -40,65 + 8881: -41,66 + 8882: -42,66 + 8883: -41,66 + 8884: -40,61 + 8885: -40,63 + 8886: -43,62 + 8887: -44,63 + 8888: -44,65 + 8889: -39,66 + 8890: -39,66 + 8891: -39,66 + 8892: -44,62 + 8893: -43,64 + 8894: -41,62 + 8923: -42,65 + 8964: -7,24 + 8965: -7,24 + 8966: -7,23 + 8967: -9,22 + 8968: -9,21 + 8969: -7,20 + 8970: -9,20 + 8971: -10,23 + 8972: -10,23 + 8974: -9,25 + 8975: -10,25 + 8976: -8,21 + 8977: -8,21 + 9011: 2,43 + 9101: 3,42 + 9102: 1,43 + 9103: 1,42 + 9104: 3,44 + 9105: 2,38 + 9106: 3,40 + 9352: -46,64 + 9353: -46,65 + 9424: -55,77 + 9425: -56,76 + 9426: -53,76 + 9427: -52,76 + 9428: -52,75 + 9430: -52,71 + 9431: -55,73 + 9432: -55,73 + 9433: -56,71 + 9434: -55,71 + 9435: -53,71 + 9436: -54,71 + 9437: -51,70 + 9438: -51,68 + 9439: -51,67 + 9440: -52,67 + 9441: -53,69 + 9442: -51,72 + 9443: -52,74 + 9444: -51,75 + 9445: -52,79 + 9446: -48,69 + 9447: -48,69 + 9448: -48,68 + 9449: -47,67 + 9450: -49,69 + 9451: -49,70 + 9459: -53,74 + 9460: -53,73 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 1623: -30,52 - 1624: -29,53 - 1625: -28,54 - 1626: -26,54 - 1627: -26,55 - 1628: -26,55 - 1629: -26,53 1630: -40,45 1637: -35,35 1638: -37,37 @@ -1843,7 +1937,6 @@ entities: 1759: -28,12 1760: -29,10 1761: -25,10 - 1762: -24,16 1763: -26,18 1764: -29,17 1765: -28,16 @@ -2020,25 +2113,8 @@ entities: 5516: -35,36 5517: -35,36 6881: -1,43 - 6882: -1,42 - 6883: 0,42 - 6884: 0,43 - 6885: 0,43 - 6886: 1,42 - 6887: 1,42 - 6888: 2,43 6889: 2,44 - 6890: 3,44 6891: 4,44 - 6892: 4,43 - 6893: 4,42 - 6894: 4,43 - 6895: 3,43 - 6896: 3,42 - 6897: 2,42 - 6898: 2,43 - 6899: 0,43 - 6900: 0,43 6916: 18,45 6917: 18,46 6919: 10,52 @@ -3131,7 +3207,6 @@ entities: 2951: 12,37 2952: 11,34 2953: 4,40 - 2954: 2,42 2955: 0,41 2956: 1,40 2957: 0,40 @@ -3142,17 +3217,11 @@ entities: 2962: 0,38 2963: 2,36 2964: 4,36 - 2965: 2,38 2966: 0,37 2967: -1,37 2968: 1,38 - 2969: 4,39 - 2970: 2,40 2971: 0,39 - 2972: 2,37 - 2973: 3,40 2974: 2,39 - 2975: 3,36 2976: 2,36 2977: 2,39 2978: -1,39 @@ -3261,16 +3330,6 @@ entities: 3572: -50,65 3573: -47,64 3574: -45,64 - 3575: -43,64 - 3576: -43,65 - 3577: -43,64 - 3578: -43,62 - 3579: -42,62 - 3580: -42,64 - 3581: -44,65 - 3582: -43,62 - 3583: -43,61 - 3584: -43,63 3585: -47,64 3586: -49,65 3587: -50,65 @@ -4050,16 +4109,6 @@ entities: 5360: -9,17 5361: -7,18 5362: -7,19 - 5363: -7,21 - 5364: -7,22 - 5365: -7,23 - 5366: -8,25 - 5367: -9,25 - 5368: -9,24 - 5369: -8,24 - 5370: -8,25 - 5371: -9,25 - 5372: -10,25 5373: -8,15 5374: -9,15 5375: -10,14 @@ -4254,8 +4303,6 @@ entities: 5587: -22,62 5588: -16,64 5589: -18,62 - 5590: -27,53 - 5591: -27,53 5592: -51,62 5593: -51,62 5594: -51,63 @@ -4266,9 +4313,6 @@ entities: 5599: -51,64 5600: -53,65 5601: -53,65 - 5602: -44,63 - 5603: -44,62 - 5604: -44,62 5605: -56,61 5606: -54,61 5607: -54,61 @@ -5225,14 +5269,8 @@ entities: 6572: 7,31 6573: 6,36 6574: 6,37 - 6575: 3,36 - 6576: 2,37 6577: 0,36 6578: -1,37 - 6579: 2,40 - 6580: 4,39 - 6581: 4,37 - 6582: 4,37 6583: 3,37 6584: 10,40 6585: 10,40 @@ -5554,9 +5592,6 @@ entities: 7197: -42,-13 7272: -43,1 7273: -43,1 - 7281: -43,66 - 7282: -43,66 - 7283: -43,66 7289: -73,15 7290: -74,15 7291: -74,15 @@ -5748,14 +5783,6 @@ entities: 8350: -5,16 8351: -8,18 8352: -7,18 - 8353: -7,20 - 8354: -7,23 - 8355: -8,24 - 8356: -7,24 - 8357: -9,25 - 8358: -8,25 - 8359: -9,25 - 8360: -10,24 8361: -13,25 8362: -13,27 8363: -13,27 @@ -5941,6 +5968,65 @@ entities: 8756: -97,8 8757: -97,8 8758: -97,8 + 8895: -43,64 + 8896: -43,67 + 8897: -41,61 + 8898: -41,62 + 8899: -43,61 + 8900: -39,64 + 8920: -42,65 + 8921: -42,65 + 8922: -42,65 + 8924: -44,65 + 8926: -40,66 + 8927: -40,66 + 8978: -7,24 + 8980: -9,22 + 8981: -9,20 + 8982: -9,20 + 8983: -9,25 + 8984: -9,25 + 8985: -7,20 + 8998: -8,22 + 8999: -9,23 + 9093: 2,37 + 9094: 2,40 + 9095: 3,40 + 9096: 3,40 + 9097: 3,40 + 9098: 2,38 + 9099: 3,36 + 9100: 2,37 + 9113: -30,55 + 9114: -30,55 + 9115: -29,54 + 9116: -28,54 + 9121: -27,53 + 9122: -26,55 + 9123: -30,53 + 9124: -30,52 + 9354: -53,67 + 9355: -53,67 + 9356: -51,68 + 9357: -52,68 + 9358: -52,70 + 9359: -53,70 + 9360: -52,71 + 9361: -51,72 + 9362: -51,74 + 9363: -51,74 + 9364: -52,75 + 9365: -53,76 + 9366: -51,76 + 9367: -51,77 + 9368: -55,77 + 9369: -56,76 + 9370: -52,78 + 9371: -53,78 + 9372: -53,79 + 9373: -52,79 + 9456: -53,74 + 9457: -53,73 - node: cleanable: True angle: 3.141592653589793 rad @@ -5961,6 +6047,7 @@ entities: 2584: -17,26 2585: -17,26 2586: -17,24 + 9002: -9,24 - node: cleanable: True color: '#FFFFFFFF' @@ -6068,17 +6155,58 @@ entities: 8468: -49,-14 8469: -49,-13 8470: -44,-13 + 8901: -43,63 + 8902: -41,66 + 8914: -43,62 + 8915: -44,61 + 8928: -42,67 + 8929: -42,67 + 8930: -43,65 + 8931: -44,64 + 8986: -7,25 + 9004: -10,20 + 9012: 2,43 + 9014: 2,42 + 9015: 3,40 + 9067: 3,42 + 9068: 1,42 + 9069: 0,43 + 9070: 3,44 + 9071: 4,43 + 9072: 1,42 + 9073: 1,42 + 9074: 3,44 + 9125: -27,55 + 9126: -27,55 + 9127: -29,54 + 9128: -29,54 + 9129: -29,54 + 9130: -26,54 + 9136: -26,55 + 9137: -30,53 + 9374: -51,79 + 9375: -51,79 + 9376: -53,79 + 9377: -51,76 + 9378: -52,77 + 9379: -53,77 + 9380: -53,77 + 9381: -52,67 + 9382: -51,67 + 9383: -53,68 + 9384: -51,70 + 9385: -51,71 + 9386: -53,71 + 9387: -56,73 + 9388: -56,73 + 9389: -55,73 + 9458: -53,74 - node: color: '#FFFFFFFF' id: DirtLight decals: - 1616: -30,52 - 1617: -29,53 1618: -27,54 1619: -27,54 - 1620: -28,55 - 1621: -30,54 - 1622: -29,53 1631: -44,50 1632: -44,50 1633: -44,49 @@ -6908,10 +7036,7 @@ entities: 3116: 9,33 3117: 11,33 3118: 12,33 - 3119: 3,36 3120: 4,36 - 3121: 4,38 - 3122: 2,40 3123: 0,39 3124: -1,38 3125: 0,36 @@ -7015,30 +7140,14 @@ entities: 3742: -48,58 3743: -47,61 3744: -47,62 - 3745: -43,63 - 3746: -44,62 - 3747: -44,62 - 3748: -44,64 - 3749: -43,64 - 3750: -43,63 - 3751: -43,62 - 3752: -42,61 - 3753: -42,64 - 3754: -43,65 - 3755: -44,64 - 3756: -44,63 3757: -48,65 3758: -47,65 3759: -48,65 - 3760: -46,64 3761: -48,64 3762: -49,64 3763: -51,64 3764: -53,65 3765: -45,64 - 3766: -46,65 - 3767: -46,65 - 3768: -46,64 3769: -52,64 3770: -52,64 3771: -53,63 @@ -7404,8 +7513,6 @@ entities: 7270: -41,-14 7274: -43,1 7275: -43,1 - 7284: -43,66 - 7285: -43,66 8022: 12,23 8023: 12,22 8178: -106,9 @@ -7434,6 +7541,74 @@ entities: 8291: -104,12 8293: -100,12 8294: -99,11 + 8903: -43,67 + 8904: -43,67 + 8905: -42,66 + 8906: -42,66 + 8907: -41,65 + 8910: -45,64 + 8911: -45,64 + 8912: -42,62 + 8913: -43,62 + 8925: -43,62 + 8932: -40,62 + 8933: -39,63 + 8934: -39,63 + 8935: -39,63 + 8936: -42,65 + 8937: -43,65 + 8987: -7,24 + 8988: -7,24 + 8989: -9,21 + 8990: -10,20 + 8991: -9,21 + 8992: -9,21 + 8993: -10,24 + 8994: -8,24 + 9026: 2,43 + 9027: 2,43 + 9028: -1,43 + 9029: 3,40 + 9030: 3,40 + 9031: 3,41 + 9032: 3,41 + 9075: 3,44 + 9076: 1,42 + 9077: 1,43 + 9078: 1,43 + 9079: 3,42 + 9080: 3,42 + 9081: 3,42 + 9082: 0,43 + 9107: -26,54 + 9108: -26,54 + 9109: -29,54 + 9110: -28,54 + 9112: -30,53 + 9131: -27,53 + 9132: -27,53 + 9133: -28,55 + 9134: -28,55 + 9135: -29,55 + 9390: -56,73 + 9391: -55,74 + 9392: -55,74 + 9393: -56,71 + 9394: -53,69 + 9395: -53,70 + 9396: -53,70 + 9397: -51,67 + 9398: -53,68 + 9399: -51,71 + 9400: -51,70 + 9401: -52,70 + 9402: -52,73 + 9403: -52,72 + 9404: -51,72 + 9405: -52,76 + 9406: -52,75 + 9407: -51,76 + 9408: -53,79 - node: cleanable: True angle: 3.141592653589793 rad @@ -7458,24 +7633,10 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 1598: -29,54 - 1599: -29,54 - 1600: -30,54 - 1601: -30,53 - 1602: -30,55 1603: -28,53 - 1604: -28,52 1605: -27,54 - 1606: -27,55 - 1607: -28,55 - 1608: -29,54 - 1609: -29,53 - 1610: -30,53 1611: -28,53 1612: -27,54 - 1613: -26,54 - 1614: -27,55 - 1615: -29,55 1635: -31,47 1636: -37,40 1690: -35,38 @@ -7509,21 +7670,6 @@ entities: 2625: 13,34 2626: 13,30 2627: 12,17 - 6901: -1,42 - 6902: 0,42 - 6903: 1,43 - 6904: 1,42 - 6905: 2,42 - 6906: 2,43 - 6907: 3,44 - 6908: 1,43 - 6909: 1,43 - 6910: 3,44 - 6911: 3,44 - 6912: 4,43 - 6913: 4,42 - 6914: 3,42 - 6915: 2,42 - node: cleanable: True color: '#FFFFFFFF' @@ -8119,12 +8265,7 @@ entities: 3273: 0,37 3274: -1,39 3275: 1,40 - 3276: 3,40 - 3277: 4,37 3278: 4,36 - 3279: 3,36 - 3280: 2,37 - 3281: 2,38 3282: 0,37 3283: 1,36 3284: 0,37 @@ -8212,15 +8353,6 @@ entities: 3929: -49,61 3930: -49,59 3931: -48,58 - 3932: -44,62 - 3933: -44,61 - 3934: -43,63 - 3935: -44,65 - 3936: -44,64 - 3937: -43,62 - 3938: -42,61 - 3939: -42,64 - 3940: -43,65 3941: -48,64 3942: -48,65 3943: -50,65 @@ -8598,7 +8730,6 @@ entities: 7276: -43,1 7277: -43,1 7278: -43,1 - 7286: -43,66 8024: 12,23 8207: -103,5 8208: -103,5 @@ -8709,6 +8840,42 @@ entities: 8503: -34,-3 8504: -34,-3 8505: -34,-4 + 8908: -44,65 + 8909: -44,64 + 8938: -41,65 + 8995: -8,25 + 8996: -9,24 + 8997: -8,24 + 9019: 2,43 + 9020: 2,42 + 9021: 2,42 + 9022: 2,42 + 9023: 2,44 + 9083: 0,43 + 9084: 4,43 + 9085: 4,42 + 9086: 4,42 + 9087: 2,44 + 9088: 3,44 + 9089: 2,40 + 9090: 2,40 + 9091: 2,38 + 9092: 3,36 + 9409: -52,76 + 9410: -52,76 + 9411: -55,77 + 9412: -56,76 + 9413: -56,77 + 9414: -55,73 + 9415: -55,74 + 9416: -55,71 + 9417: -56,71 + 9418: -52,67 + 9419: -53,68 + 9420: -53,68 + 9421: -52,73 + 9422: -53,76 + 9423: -51,79 - node: cleanable: True angle: 3.141592653589793 rad @@ -8829,14 +8996,11 @@ entities: decals: 3406: -53,59 3407: -51,59 - 3408: -46,64 - 3409: -46,65 3410: -45,64 3435: -50,55 3436: -50,53 3437: -59,53 3438: -59,55 - 7279: -43,66 - node: cleanable: True color: '#FFFFFFFF' @@ -8947,7 +9111,6 @@ entities: 8659: -4.754177,45.977943 8664: 10.955127,39.177742 8665: 22.111813,31.118761 - 8673: -9.533908,23.973284 8674: -24.222372,20.880875 8690: -45.022686,25.915012 8691: -63.93808,16.115654 @@ -9111,6 +9274,11 @@ entities: 3465: -63,55 3466: -62,55 3467: -61,55 + 8851: -40,67 + 8852: -41,67 + 8853: -42,67 + 8854: -43,67 + 9339: -55,77 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -9173,6 +9341,12 @@ entities: 3469: -62,50 3470: -61,50 3471: -65,52 + 8842: -43,61 + 8843: -42,61 + 8844: -41,61 + 8845: -40,61 + 9340: -54,76 + 9343: -52,67 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -9239,6 +9413,19 @@ entities: 3476: -66,54 3477: -66,53 3484: -64,51 + 8837: -44,62 + 8839: -44,64 + 8840: -44,65 + 8841: -44,66 + 8864: -44,63 + 9324: -53,68 + 9325: -53,69 + 9326: -53,70 + 9327: -53,72 + 9338: -53,79 + 9341: -56,73 + 9452: -53,73 + 9453: -53,74 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -9303,6 +9490,20 @@ entities: 3473: -60,53 3474: -60,52 3475: -60,51 + 8846: -39,62 + 8847: -39,63 + 8848: -39,64 + 8849: -39,65 + 8850: -39,66 + 9330: -51,68 + 9331: -51,69 + 9332: -51,71 + 9333: -51,72 + 9334: -51,73 + 9335: -51,74 + 9336: -51,76 + 9337: -51,79 + 9342: -55,73 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -9324,6 +9525,37 @@ entities: 4243: -80,23 4246: -79,25 4407: -60,32 + - node: + color: '#96DAFFFF' + id: HalfTileWhiteCornerSE + decals: + 9062: 4,42 + - node: + color: '#96DAFFFF' + id: HalfTileWhiteCornerSW + decals: + 9061: -1,42 + - node: + color: '#96DAFFFF' + id: HalfTileWhiteLineE + decals: + 9063: 4,43 + - node: + color: '#96DAFFFF' + id: HalfTileWhiteLineN + decals: + 9056: 3,44 + 9057: 0,43 + 9058: 1,43 + 9064: 3,40 + 9065: 2,40 + - node: + color: '#96DAFFFF' + id: HalfTileWhiteLineS + decals: + 9059: 1,42 + 9060: 3,42 + 9066: 3,36 - node: color: '#FFFFFFFF' id: LoadingArea @@ -9711,6 +9943,7 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 3483: -64,52 + 9349: -53,76 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -9788,6 +10021,7 @@ entities: 3297: -3,10 3388: -53,65 3478: -66,55 + 8833: -44,67 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -9810,6 +10044,9 @@ entities: 3298: 1,8 3389: -51,60 3479: -60,50 + 8834: -39,61 + 9347: -51,67 + 9351: -46,64 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -9833,6 +10070,10 @@ entities: 3300: -3,8 3481: -66,52 3482: -64,50 + 8835: -44,61 + 9345: -56,71 + 9346: -53,67 + 9348: -56,76 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -9861,6 +10102,9 @@ entities: decals: 3299: 1,10 3480: -60,55 + 8836: -39,67 + 9344: -55,74 + 9350: -46,65 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -10038,12 +10282,6 @@ entities: 5505: -35,37 5506: -35,35 5507: -35,36 - - node: - cleanable: True - color: '#FFFFFFFF' - id: body - decals: - 2612: 2.8074994,42.80365 - node: cleanable: True color: '#FFFFFFFF' @@ -10088,15 +10326,6 @@ entities: decals: 7318: -12.9947195,8.064248 7319: -13.0103445,16.085691 - - node: - cleanable: True - color: '#A40000FF' - id: splatter - decals: - 2608: 1.6512494,42.225525 - 2609: 3.7762494,43.506775 - 2610: 2.3387494,43.413025 - 2611: 3.9168744,42.038025 - type: GridAtmosphere version: 2 data: @@ -10138,13 +10367,13 @@ entities: 0: 63044 -2,-3: 0: 33033 + -2,-2: + 0: 60931 -2,-1: 0: 32766 -2,-5: 0: 22000 1: 5 - -2,-2: - 0: 60928 -2,0: 0: 6007 -1,-3: @@ -10199,7 +10428,7 @@ entities: -2,3: 0: 56781 -2,4: - 0: 46076 + 0: 41980 -1,1: 0: 36863 -1,3: @@ -10570,9 +10799,9 @@ entities: -4,8: 0: 53759 -3,5: - 0: 5461 + 0: 56797 -3,6: - 0: 61951 + 0: 61917 -3,7: 0: 65535 -3,8: @@ -10580,7 +10809,7 @@ entities: -2,5: 0: 48059 -2,6: - 0: 47291 + 0: 14779 -2,7: 0: 64435 -2,8: @@ -10592,7 +10821,7 @@ entities: -1,9: 0: 48059 0,10: - 0: 65295 + 0: 65423 -1,10: 0: 47931 0,11: @@ -10698,7 +10927,8 @@ entities: -9,10: 0: 65311 -8,11: - 0: 57309 + 0: 4881 + 2: 52428 -9,11: 0: 65535 -7,8: @@ -10708,15 +10938,16 @@ entities: -7,10: 0: 52733 -7,11: - 0: 56829 + 2: 4369 + 0: 52460 -7,7: 0: 62702 - -7,12: - 0: 53244 -6,8: 0: 61183 -6,10: 0: 36606 + -7,12: + 0: 53208 -6,7: 0: 62139 -6,9: @@ -10834,7 +11065,7 @@ entities: -12,10: 0: 65459 -13,10: - 0: 64187 + 0: 64191 -12,11: 0: 49087 -13,11: @@ -11004,7 +11235,7 @@ entities: -15,10: 0: 61166 -14,9: - 0: 47325 + 0: 14557 -14,10: 0: 58110 -14,11: @@ -11078,9 +11309,9 @@ entities: -8,15: 1: 3999 -9,15: - 1: 11055 + 1: 12143 -7,13: - 0: 30577 + 0: 30581 -7,14: 1: 256 0: 64 @@ -11183,8 +11414,7 @@ entities: -13,13: 0: 64505 -12,14: - 0: 15153 - 1: 128 + 0: 13105 -13,14: 0: 43955 -12,15: @@ -11195,28 +11425,21 @@ entities: 0: 12407 -11,13: 0: 65294 - -11,14: - 1: 2000 - 0: 2080 -11,15: - 0: 26480 - 2: 4096 + 0: 65520 -11,16: - 0: 87 - 3: 32 + 0: 65535 -10,12: 0: 56784 -10,13: 0: 65293 - -10,14: - 1: 18224 - 0: 8256 -10,15: - 1: 26214 + 0: 13104 -10,16: - 1: 26214 + 0: 9011 + 3: 4096 -9,16: - 1: 8994 + 1: 10082 -17,12: 0: 6014 -16,13: @@ -11250,7 +11473,7 @@ entities: -14,15: 0: 47615 -14,12: - 0: 26208 + 0: 28256 -14,16: 0: 35003 1: 4096 @@ -11335,41 +11558,47 @@ entities: -17,16: 1: 2184 -12,17: - 0: 3 - 1: 61704 + 0: 819 + 1: 32768 -13,17: - 0: 12843 + 0: 15295 -12,18: - 1: 4368 + 1: 29938 -13,18: - 1: 2048 + 1: 34944 0: 13107 -12,19: - 1: 273 + 1: 18295 -13,19: - 1: 128 - 0: 12835 + 1: 136 + 0: 13107 + -12,20: + 1: 1124 + 0: 16 -11,17: - 1: 61711 + 1: 61696 + -11,18: + 1: 113 -10,17: - 1: 61959 + 1: 61952 + -10,18: + 1: 9 -9,17: - 1: 12835 + 1: 12899 -16,17: 1: 15 -15,17: - 1: 7 + 1: 9767 -15,19: + 1: 576 0: 24576 - -14,19: - 0: 47240 - 1: 17 -14,17: - 1: 4881 - 0: 34952 + 0: 63624 + 1: 17 -14,18: - 1: 12545 - 0: 34952 + 0: 35771 + -14,19: + 0: 47359 -14,20: 0: 64395 -13,20: @@ -11409,8 +11638,6 @@ entities: 0: 2867 -13,23: 0: 36 - -12,20: - 0: 16 -12,22: 0: 1 -21,4: @@ -11634,123 +11861,36 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 27.225372 + Nitrogen: 102.419266 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.6852 + Nitrogen: 81.57766 - volume: 2500 temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Nitrogen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Plasma: 6666.982 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11760,6 +11900,7 @@ entities: - type: GridPathfinding - type: NightLightning - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 5005 components: - type: MetaData @@ -11769,214 +11910,1029 @@ entities: - type: GridTree - type: Broadphase - type: OccluderTree -- proto: AcousticGuitarInstrument - entities: - - uid: 14704 - components: - - type: Transform - pos: 28.538687,-28.497456 - parent: 1 -- proto: AirAlarm - entities: - - uid: 316 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1 - - type: DeviceList - devices: - - 1749 - - 1741 - - 1747 - - 1750 - - 12320 - - 12321 - - 12353 - - 12352 - - 12416 - - 12413 - - 12332 - - 12331 - - 12414 - - 12415 - - 12384 - - 14970 - - uid: 317 + - uid: 14161 components: + - type: MetaData + name: grid - type: Transform - pos: 3.5,-7.5 - parent: 1 - - uid: 8960 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14162 components: + - type: MetaData + name: grid - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,56.5 - parent: 1 - - type: DeviceList - devices: - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - - 8757 - - 8764 - - 8778 - - 8779 - - 8765 - - 8766 - - 8690 - - 8686 - - 8697 - - 8754 - - 8761 - - 8755 - - 8762 - - 8756 - - 8763 - - uid: 8962 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14330 components: + - type: MetaData + name: grid - type: Transform - pos: -47.5,66.5 - parent: 1 - - uid: 8965 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14398 components: + - type: MetaData + name: grid - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,88.5 - parent: 1 - - type: DeviceList - devices: - - 5742 - - 5579 - - 5501 - - 5496 - - 8883 - - 8884 - - 8887 - - 8888 - - 8886 - - 8885 - - 8925 - - 8967 - - 8928 - - 8924 - - uid: 12503 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14675 components: + - type: MetaData + name: grid - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,9.5 - parent: 1 - - type: DeviceList - devices: - - 13775 - - 13786 - - 13785 - - uid: 13040 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14711 components: + - type: MetaData + name: grid - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,45.5 - parent: 1 - - type: DeviceList - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - 11119 - - 11122 - - 11270 - - 11272 - - 11175 - - 11172 - - 11145 - - 11146 - - 11319 - - 11318 - - 11317 - - 8573 - - 8574 - - uid: 13047 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14819 components: + - type: MetaData + name: grid - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 1 - - type: DeviceList - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - - 11303 - - 11306 - - 11305 - - 11304 - - 11321 - - 11320 - - 11555 - - 11557 - - uid: 13051 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14835 components: + - type: MetaData + name: grid - type: Transform - pos: -68.5,7.5 - parent: 1 - - type: DeviceList - devices: - - 5213 - - 5214 - - 5215 - - uid: 13053 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14932 components: + - type: MetaData + name: grid - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-3.5 - parent: 1 - - type: DeviceList - devices: - - 5216 - - 5217 - - 5218 - - 11842 - - 11841 - - 11840 - - 11843 - - 4749 - - 4807 - - 4802 - - 4750 - - 4800 - - 3967 - - 4912 - - 4913 - - 4126 - - uid: 13055 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14940 components: + - type: MetaData + name: grid - type: Transform - pos: -45.5,7.5 + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14944 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14946 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14950 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 14951 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15420 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15422 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15424 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15426 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15428 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel + - uid: 15431 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.43985805,0.83991814 + parent: 5005 + - type: MapGrid + chunks: + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel +- proto: AcousticGuitarInstrument + entities: + - uid: 14704 + components: + - type: Transform + pos: 28.538687,-28.497456 + parent: 1 +- proto: ActionToggleInternals + entities: + - uid: 15348 + mapInit: true + paused: true + components: + - type: Transform + parent: 15347 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 15347 +- proto: AirAlarm + entities: + - uid: 316 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 1749 + - 1741 + - 1747 + - 1750 + - 14970 + - 11949 + - 11951 + - 12409 + - 11950 + - type: Fixtures + fixtures: {} + - uid: 317 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 12406 + - 11948 + - type: Fixtures + fixtures: {} + - uid: 8960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,56.5 + parent: 1 + - type: DeviceList + devices: + - 8573 + - 8574 + - 8578 + - 8576 + - 8575 + - 12467 + - 12721 + - 8707 + - 12253 + - type: Fixtures + fixtures: {} + - uid: 8962 + components: + - type: Transform + pos: -47.5,66.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,88.5 + parent: 1 + - type: DeviceList + devices: + - 5742 + - 5579 + - 5501 + - 5496 + - type: Fixtures + fixtures: {} + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 1 + - type: DeviceList + devices: + - 10348 + - 14981 + - 14982 + - type: Fixtures + fixtures: {} + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 12630 + - 10955 + - 10954 + - 12622 + - type: Fixtures + fixtures: {} + - uid: 12503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 13775 + - 13786 + - 13785 + - type: Fixtures + fixtures: {} + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 7995 + - 7996 + - 7997 + - 8003 + - 8002 + - 8001 + - 8573 + - 8574 + - 11625 + - 11611 + - 11610 + - 11624 + - type: Fixtures + fixtures: {} + - uid: 13047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,30.5 + parent: 1 + - type: DeviceList + devices: + - 5240 + - 5241 + - 5242 + - 7995 + - 7996 + - 7997 + - 5233 + - 5232 + - 5231 + - 11629 + - 11628 + - type: Fixtures + fixtures: {} + - uid: 13051 + components: + - type: Transform + pos: -68.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 5213 + - 5214 + - 5215 + - 11212 + - 11200 + - type: Fixtures + fixtures: {} + - uid: 13053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 1 + - type: DeviceList + devices: + - 5216 + - 5217 + - 5218 + - 4912 + - 4913 + - 4126 + - 11207 + - 12506 + - 11210 + - 12327 + - type: Fixtures + fixtures: {} + - uid: 13055 + components: + - type: Transform + pos: -45.5,7.5 parent: 1 - type: DeviceList devices: - - 11968 - - 11970 - - 11926 - - 11925 - - 11789 - - 11790 - 4112 - 4111 - 4110 - 5212 - 5211 - 5210 + - 11208 + - 11202 + - type: Fixtures + fixtures: {} - uid: 13057 components: - type: Transform @@ -11995,14 +12951,12 @@ entities: - 3717 - 3716 - 3726 - - 12016 - - 12018 - - 11970 - - 12079 - - 12063 - - 11996 - - 11998 - - 12001 + - 11539 + - 11545 + - 12349 + - 11538 + - type: Fixtures + fixtures: {} - uid: 13058 components: - type: Transform @@ -12019,18 +12973,10 @@ entities: - 4109 - 4108 - 4107 - - 12079 - - 12080 - - 12063 - - 12064 - - 11968 - - 11970 - - 11926 - - 11925 - - 12140 - - 12139 - - 11642 - - 11645 + - 11201 + - 12326 + - type: Fixtures + fixtures: {} - uid: 13061 components: - type: Transform @@ -12044,12 +12990,8 @@ entities: - 4107 - 4108 - 4109 - - 12296 - - 12297 - - 12139 - - 12140 - - 12130 - - 12128 + - type: Fixtures + fixtures: {} - uid: 13063 components: - type: Transform @@ -12071,12 +13013,10 @@ entities: - 5227 - 5226 - 5225 - - 11642 - - 11645 - - 11641 - - 11644 - - 11643 - - 11640 + - 11570 + - 12369 + - type: Fixtures + fixtures: {} - uid: 13065 components: - type: Transform @@ -12093,18 +13033,18 @@ entities: - 5228 - 5229 - 5230 - - 11592 - - 11596 - - 11593 - - 11597 - - 11594 - - 11599 - 9786 - 9787 - 9788 - 9789 - 9784 - 9785 + - 11108 + - 8847 + - 11106 + - 11107 + - type: Fixtures + fixtures: {} - uid: 13067 components: - type: Transform @@ -12113,18 +13053,16 @@ entities: parent: 1 - type: DeviceList devices: - - 11238 - - 11237 - - 11239 - - 11236 - - 11240 - 9784 - 9785 - 9790 - 9791 - 9792 - 9793 - - 11235 + - 8901 + - 11105 + - type: Fixtures + fixtures: {} - uid: 13069 components: - type: Transform @@ -12137,10 +13075,12 @@ entities: - 9791 - 9793 - 9792 - - 11196 - - 11192 - - 11209 - - 11208 + - 8748 + - 8755 + - 12249 + - 8687 + - type: Fixtures + fixtures: {} - uid: 13071 components: - type: Transform @@ -12148,14 +13088,16 @@ entities: parent: 1 - type: DeviceList devices: - - 12172 - - 12173 - 5228 - 5229 - 5230 - 5236 - 5235 - 5234 + - 12225 + - 2895 + - type: Fixtures + fixtures: {} - uid: 13073 components: - type: Transform @@ -12167,12 +13109,10 @@ entities: - 5237 - 5238 - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 + - 11984 + - 11983 + - type: Fixtures + fixtures: {} - uid: 13074 components: - type: Transform @@ -12181,10 +13121,12 @@ entities: - type: DeviceList devices: - 9819 - - 12257 - - 12261 - - 12258 - - 12190 + - 12044 + - 12019 + - 12045 + - 12415 + - type: Fixtures + fixtures: {} - uid: 13077 components: - type: Transform @@ -12195,12 +13137,6 @@ entities: - 5237 - 5238 - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - 3064 - 3122 - 2814 @@ -12210,10 +13146,10 @@ entities: - 3177 - 2866 - 2865 - - 12485 - - 12482 - - 12486 - - 12481 + - 12578 + - 3005 + - type: Fixtures + fixtures: {} - uid: 13079 components: - type: Transform @@ -12231,18 +13167,14 @@ entities: - 6502 - 6503 - 6504 - - 13010 - - 13004 - - 13011 - - 13005 - - 13012 - - 13006 - - 13013 - - 13007 - - 13031 - - 13034 - - 13032 - - 13033 + - 12043 + - 12021 + - 12042 + - 12708 + - 12416 + - 12570 + - type: Fixtures + fixtures: {} - uid: 13096 components: - type: Transform @@ -12257,15 +13189,11 @@ entities: - 3177 - 3176 - 3175 - - 12506 - - 12507 - 12508 - - 12509 - - 12510 - - 12484 - - 12488 - - 12487 - - 12483 + - 2449 + - 2448 + - type: Fixtures + fixtures: {} - uid: 13099 components: - type: Transform @@ -12280,10 +13208,8 @@ entities: - 1767 - 1753 - 1752 - - 12586 - - 12582 - - 12583 - - 12587 + - type: Fixtures + fixtures: {} - uid: 13100 components: - type: Transform @@ -12292,16 +13218,14 @@ entities: parent: 1 - type: DeviceList devices: - - 12585 - - 12588 - - 12589 - - 12584 - 1753 - 1752 - - 12595 - - 12596 - - 12605 - - 12606 + - 11940 + - 12402 + - 11846 + - 11809 + - type: Fixtures + fixtures: {} - uid: 13103 components: - type: Transform @@ -12313,12 +13237,8 @@ entities: - 1768 - 1755 - 1754 - - 12656 - - 12652 - - 12658 - - 12654 - - 12587 - - 12583 + - type: Fixtures + fixtures: {} - uid: 13105 components: - type: Transform @@ -12327,14 +13247,14 @@ entities: parent: 1 - type: DeviceList devices: - - 12658 - - 12654 - - 12715 - - 12710 - - 12716 - - 12713 - 1755 - 1754 + - 11943 + - 12698 + - 12403 + - 12555 + - type: Fixtures + fixtures: {} - uid: 13299 components: - type: Transform @@ -12356,23 +13276,15 @@ entities: - 13307 - 2053 - 2054 - - 12736 - - 2102 - - 3023 - - 3019 - - 2674 - - 2490 - - 2666 - - 2487 - - 2671 - - 2488 - - 2670 - - 2489 - - 3022 - - 3021 - 15082 - 15083 - 8324 + - 1798 + - 2875 + - 3001 + - 2902 + - type: Fixtures + fixtures: {} - uid: 13304 components: - type: Transform @@ -12390,27 +13302,22 @@ entities: - 2879 - 2869 - 2870 - - 12859 - - 12858 - - 3021 - - 3022 - - 3023 - - 3019 - - 3020 - - 3024 - - 12766 - - 12765 - - 12759 - - 12760 - - 12761 - - 12762 - - 12763 - 13307 - 13308 - 13309 - 15079 - 15080 - 15081 + - 2900 + - 3023 + - 12223 + - 12444 + - 3002 + - 2872 + - 12229 + - 2871 + - type: Fixtures + fixtures: {} - uid: 13790 components: - type: Transform @@ -12427,6 +13334,34 @@ entities: - 13782 - 13784 - 13778 + - type: Fixtures + fixtures: {} + - uid: 13998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,33.5 + parent: 1 + - type: DeviceList + devices: + - 12202 + - 14148 + - 12207 + - 12208 + - type: Fixtures + fixtures: {} + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,60.5 + parent: 1 + - type: DeviceList + devices: + - 14131 + - 14140 + - type: Fixtures + fixtures: {} - uid: 14286 components: - type: Transform @@ -12444,10 +13379,9 @@ entities: - 14038 - 14045 - 14148 - - 14149 - - 14160 - - 14161 - 14040 + - type: Fixtures + fixtures: {} - uid: 14297 components: - type: Transform @@ -12469,6 +13403,8 @@ entities: - 10666 - 14046 - 14047 + - type: Fixtures + fixtures: {} - uid: 14301 components: - type: Transform @@ -12496,6 +13432,42 @@ entities: - 14115 - 14159 - 14158 + - type: Fixtures + fixtures: {} + - uid: 15086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,55.5 + parent: 1 + - type: DeviceList + devices: + - 15200 + - 15201 + - type: Fixtures + fixtures: {} + - uid: 15213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 1 + - type: DeviceList + devices: + - 15359 + - 15339 + - 15211 + - 15210 + - type: Fixtures + fixtures: {} + - uid: 15382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,72.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1153 @@ -12675,11 +13647,35 @@ entities: - type: Transform pos: -49.5,65.5 parent: 1 + - uid: 7314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,68.5 + parent: 1 - uid: 7431 components: - type: Transform pos: -49.5,64.5 parent: 1 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,71.5 + parent: 1 + - uid: 15385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,66.5 + parent: 1 + - uid: 15386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,66.5 + parent: 1 - proto: AirlockArmoryLocked entities: - uid: 7876 @@ -12773,15 +13769,15 @@ entities: - type: Transform pos: -40.5,-0.5 parent: 1 - - uid: 3622 + - uid: 3639 components: - type: Transform - pos: -42.5,-2.5 + pos: -37.5,-0.5 parent: 1 - - uid: 3639 + - uid: 11316 components: - type: Transform - pos: -37.5,-0.5 + pos: -42.5,-2.5 parent: 1 - proto: AirlockChapelLocked entities: @@ -12873,6 +13869,14 @@ entities: - type: Transform pos: -106.5,8.5 parent: 1 +- proto: AirlockCommandLocked + entities: + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,52.5 + parent: 1 - proto: AirlockEngineeringGlassLocked entities: - uid: 10679 @@ -13095,46 +14099,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-8.5 parent: 1 - - uid: 7196 - components: - - type: Transform - pos: -52.5,66.5 - parent: 1 - - uid: 7199 - components: - - type: Transform - pos: -50.5,66.5 - parent: 1 - - uid: 7203 - components: - - type: Transform - pos: -50.5,70.5 - parent: 1 - - uid: 7206 - components: - - type: Transform - pos: -52.5,70.5 - parent: 1 - - uid: 7219 - components: - - type: Transform - pos: -52.5,77.5 - parent: 1 - - uid: 7220 - components: - - type: Transform - pos: -50.5,77.5 - parent: 1 - - uid: 7334 - components: - - type: Transform - pos: -52.5,81.5 - parent: 1 - - uid: 7335 - components: - - type: Transform - pos: -50.5,81.5 - parent: 1 - proto: AirlockExternalGlassCargoLocked entities: - uid: 7343 @@ -13649,11 +14613,6 @@ entities: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1613 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1 - uid: 2841 components: - type: Transform @@ -13742,7 +14701,8 @@ entities: - uid: 6072 components: - type: Transform - pos: -18.5,51.5 + rot: 3.141592653589793 rad + pos: -26.5,50.5 parent: 1 - uid: 6074 components: @@ -13759,6 +14719,14 @@ entities: - type: Transform pos: -50.5,43.5 parent: 1 + - uid: 7408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,48.5 + parent: 1 + - type: AccessReader + accessListsOriginal: [] - uid: 7585 components: - type: Transform @@ -13835,6 +14803,14 @@ entities: - type: Transform pos: -16.5,-6.5 parent: 1 +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 3338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 1 - proto: AirlockMaintSalvageLocked entities: - uid: 5382 @@ -13938,6 +14914,20 @@ entities: - type: Transform pos: 3.5,18.5 parent: 1 + - uid: 15023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,41.5 + parent: 1 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 12382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,26.5 + parent: 1 - proto: AirlockQuartermasterLocked entities: - uid: 3666 @@ -14026,30 +15016,22 @@ entities: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 5477 - components: - - type: Transform - pos: -50.5,69.5 - parent: 1 - - uid: 5481 - components: - - type: Transform - pos: -52.5,69.5 - parent: 1 - uid: 5739 components: - type: Transform pos: -55.5,62.5 parent: 1 - - uid: 5743 + - uid: 7122 components: - type: Transform - pos: -50.5,78.5 + rot: 3.141592653589793 rad + pos: -52.5,81.5 parent: 1 - - uid: 5744 + - uid: 7182 components: - type: Transform - pos: -52.5,78.5 + rot: 3.141592653589793 rad + pos: -50.5,81.5 parent: 1 - uid: 7336 components: @@ -14143,6 +15125,8 @@ entities: - type: Transform pos: -39.5,24.5 parent: 1 + - type: AccessReader + accessListsOriginal: [] - proto: AirlockVirologyLocked entities: - uid: 1147 @@ -14157,6 +15141,17 @@ entities: parent: 1 - proto: AirSensor entities: + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,22.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 10376 - uid: 13786 components: - type: Transform @@ -14181,6 +15176,31 @@ entities: - type: DeviceNetwork deviceLists: - 13790 + - uid: 15200 + components: + - type: Transform + pos: -27.5,54.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 15086 + - uid: 15339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 15213 + - uid: 15383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,75.5 + parent: 1 - proto: AltarChaos entities: - uid: 5926 @@ -14240,192 +15260,291 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 348 components: - type: Transform pos: 2.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 937 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1674 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2081 components: - type: Transform pos: 4.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2514 components: - type: Transform pos: 22.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2697 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,17.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3211 components: - type: Transform pos: -24.5,19.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3527 components: - type: Transform pos: -29.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3776 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-5.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3872 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4340 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,20.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4341 components: - type: Transform pos: -41.5,12.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4610 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4611 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,27.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 5103 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 6204 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,49.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 6259 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,9.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 6528 components: - type: Transform pos: -4.5,57.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7743 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,85.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7842 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,63.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7843 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 9395 components: - type: Transform pos: -31.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 9417 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,38.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 9494 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,40.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 10426 components: - type: Transform pos: -42.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 10702 components: - type: Transform pos: -107.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 10998 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,44.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 11058 components: - type: Transform pos: -68.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 11059 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,36.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 11060 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 11904 components: - type: Transform pos: -93.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} + - uid: 14986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 15096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,52.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 15212 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 15234 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,44.5 parent: 1 + - type: Fixtures + fixtures: {} + - uid: 15397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,69.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: APECircuitboard entities: - uid: 13662 @@ -14433,6 +15552,261 @@ entities: - type: Transform pos: -15.288552,-14.404373 parent: 1 +- proto: ArrowCard + entities: + - uid: 9662 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9666 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13009 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13010 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13020 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13021 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False +- proto: ArrowImprovised + entities: + - uid: 9044 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9045 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9046 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9047 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9088 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 9195 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13022 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13023 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13024 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13025 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13026 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13027 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False +- proto: ArrowImprovisedUranium + entities: + - uid: 13989 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13990 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13991 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13992 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13993 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13994 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13995 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False + - uid: 13996 + components: + - type: Transform + parent: 13988 + - type: Physics + canCollide: False +- proto: ArrowRegular + entities: + - uid: 13011 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13012 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13013 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13014 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13015 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13016 + components: + - type: Transform + parent: 9043 + - type: Physics + canCollide: False + - uid: 13028 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13029 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13030 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13031 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13032 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13033 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13034 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False + - uid: 13134 + components: + - type: Transform + parent: 13019 + - type: Physics + canCollide: False +- proto: Ashtray + entities: + - uid: 7363 + components: + - type: Transform + pos: -55.474026,76.59666 + parent: 1 - proto: AsteroidRock entities: - uid: 87 @@ -15112,6 +16486,26 @@ entities: - type: Transform pos: 6.5,-15.5 parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 9121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,75.5 + parent: 1 + - uid: 15366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 1 + - uid: 15368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,74.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - uid: 3569 @@ -15196,6 +16590,46 @@ entities: parent: 1 - proto: AtmosFixBlockerMarker entities: + - uid: 10754 + components: + - type: Transform + pos: -83.5,49.5 + parent: 1 + - uid: 10757 + components: + - type: Transform + pos: -80.5,50.5 + parent: 1 + - uid: 10758 + components: + - type: Transform + pos: -83.5,51.5 + parent: 1 + - uid: 10759 + components: + - type: Transform + pos: -81.5,52.5 + parent: 1 + - uid: 10761 + components: + - type: Transform + pos: -81.5,49.5 + parent: 1 + - uid: 10762 + components: + - type: Transform + pos: -84.5,50.5 + parent: 1 + - uid: 10861 + components: + - type: Transform + pos: -82.5,51.5 + parent: 1 + - uid: 11508 + components: + - type: Transform + pos: -81.5,51.5 + parent: 1 - uid: 13045 components: - type: Transform @@ -15405,13 +16839,6 @@ entities: - type: Transform pos: -11.5,0.5 parent: 1 -- proto: BannerSyndicate - entities: - - uid: 11851 - components: - - type: Transform - pos: -28.5,55.5 - parent: 1 - proto: Barricade entities: - uid: 720 @@ -15429,11 +16856,6 @@ entities: - type: Transform pos: 18.5,32.5 parent: 1 - - uid: 2731 - components: - - type: Transform - pos: -28.5,53.5 - parent: 1 - uid: 2794 components: - type: Transform @@ -15490,16 +16912,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,34.5 parent: 1 - - uid: 7509 - components: - - type: Transform - pos: -28.5,52.5 - parent: 1 - - uid: 7510 - components: - - type: Transform - pos: -27.5,55.5 - parent: 1 - uid: 9300 components: - type: Transform @@ -15532,11 +16944,29 @@ entities: - type: Transform pos: -53.5,22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7368 components: - type: Transform pos: -33.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} +- proto: BaseBallBat + entities: + - uid: 15024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.52093,67.51877 + parent: 1 + - uid: 15364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.30218,67.61252 + parent: 1 - proto: BaseComputer entities: - uid: 5338 @@ -15570,6 +17000,16 @@ entities: - type: Transform pos: 10.680454,33.64544 parent: 1 + - uid: 3622 + components: + - type: Transform + pos: -9.724702,20.746464 + parent: 1 + - uid: 5793 + components: + - type: Transform + pos: -9.599702,20.590214 + parent: 1 - proto: Bed entities: - uid: 616 @@ -15667,6 +17107,11 @@ entities: - type: Transform pos: -54.5,84.5 parent: 1 + - uid: 7349 + components: + - type: Transform + pos: -55.5,74.5 + parent: 1 - uid: 7527 components: - type: Transform @@ -15849,70 +17294,10 @@ entities: - type: Transform pos: 15.5,-6.5 parent: 1 - - uid: 7204 - components: - - type: Transform - pos: -53.5,71.5 - parent: 1 - - uid: 7207 - components: - - type: Transform - pos: -53.5,72.5 - parent: 1 - - uid: 7208 - components: - - type: Transform - pos: -53.5,73.5 - parent: 1 - - uid: 7209 - components: - - type: Transform - pos: -53.5,74.5 - parent: 1 - - uid: 7210 - components: - - type: Transform - pos: -53.5,75.5 - parent: 1 - - uid: 7211 - components: - - type: Transform - pos: -53.5,76.5 - parent: 1 - - uid: 7212 - components: - - type: Transform - pos: -49.5,71.5 - parent: 1 - - uid: 7213 - components: - - type: Transform - pos: -49.5,72.5 - parent: 1 - - uid: 7214 - components: - - type: Transform - pos: -49.5,73.5 - parent: 1 - - uid: 7215 - components: - - type: Transform - pos: -49.5,74.5 - parent: 1 - - uid: 7216 - components: - - type: Transform - pos: -49.5,75.5 - parent: 1 - - uid: 7217 - components: - - type: Transform - pos: -49.5,76.5 - parent: 1 - - uid: 13360 + - uid: 10753 components: - type: Transform - pos: -82.5,51.5 + pos: -82.5,49.5 parent: 1 - uid: 13366 components: @@ -15939,6 +17324,26 @@ entities: - type: Transform pos: -31.5,-14.5 parent: 1 +- proto: BlastDoorBridge + entities: + - uid: 15390 + components: + - type: Transform + pos: -49.5,76.5 + parent: 1 + - uid: 15392 + components: + - type: Transform + pos: -49.5,75.5 + parent: 1 + - uid: 15393 + components: + - type: Transform + pos: -49.5,74.5 + parent: 1 + - type: AccessReader + accessListsOriginal: + - - Command - proto: BlastDoorOpen entities: - uid: 15173 @@ -16008,6 +17413,18 @@ entities: - type: Transform pos: 23.683538,-11.353635 parent: 1 +- proto: BodyBagFolded + entities: + - uid: 15353 + components: + - type: Transform + pos: 4.3964334,43.82637 + parent: 1 + - uid: 15354 + components: + - type: Transform + pos: 4.5683084,43.685745 + parent: 1 - proto: BookBase entities: - uid: 15231 @@ -16199,6 +17616,18 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,51.5 parent: 1 +- proto: BowImprovised + entities: + - uid: 13251 + components: + - type: Transform + pos: -43.06973,66.56374 + parent: 1 + - uid: 13937 + components: + - type: Transform + pos: -43.304104,66.54812 + parent: 1 - proto: BoxBeaker entities: - uid: 261 @@ -16213,6 +17642,21 @@ entities: - type: Transform pos: 4.501326,17.543652 parent: 1 + - uid: 9116 + components: + - type: Transform + pos: -55.675457,72.51952 + parent: 1 + - uid: 11800 + components: + - type: Transform + pos: 10.074501,28.531914 + parent: 1 + - uid: 12390 + components: + - type: Transform + pos: 9.480751,28.610039 + parent: 1 - uid: 15780 components: - type: Transform @@ -16276,6 +17720,14 @@ entities: - type: Transform pos: -61.137554,41.601273 parent: 1 +- proto: BoxFolderBlueEmpty + entities: + - uid: 10346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.404493,52.558662 + parent: 1 - proto: BoxFolderRed entities: - uid: 311 @@ -16389,16 +17841,13 @@ entities: parent: 1 - proto: BoxLethalshot entities: - - uid: 8376 - components: - - type: Transform - pos: -41.582264,61.530586 - parent: 1 - - uid: 8377 + - uid: 14095 components: - type: Transform - pos: -41.582264,61.530586 - parent: 1 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxMouthSwab entities: - uid: 2364 @@ -16413,6 +17862,15 @@ entities: - type: Transform pos: 20.242428,-8.30875 parent: 1 +- proto: BoxShotgunSlug + entities: + - uid: 14096 + components: + - type: Transform + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxSterileMask entities: - uid: 2363 @@ -16450,6 +17908,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - uid: 4986 components: - type: Transform @@ -16464,6 +17924,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - uid: 4987 components: - type: Transform @@ -16478,6 +17940,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 1990 @@ -17409,6 +18873,11 @@ entities: - type: Transform pos: -17.5,-11.5 parent: 1 + - uid: 1891 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1 - uid: 2082 components: - type: Transform @@ -17789,11 +19258,6 @@ entities: - type: Transform pos: 8.5,19.5 parent: 1 - - uid: 2164 - components: - - type: Transform - pos: 9.5,19.5 - parent: 1 - uid: 2165 components: - type: Transform @@ -17809,11 +19273,6 @@ entities: - type: Transform pos: 10.5,17.5 parent: 1 - - uid: 2174 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1 - uid: 2175 components: - type: Transform @@ -18639,16 +20098,6 @@ entities: - type: Transform pos: -8.5,30.5 parent: 1 - - uid: 2626 - components: - - type: Transform - pos: -8.5,29.5 - parent: 1 - - uid: 2627 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1 - uid: 2628 components: - type: Transform @@ -22134,6 +23583,56 @@ entities: - type: Transform pos: -20.5,64.5 parent: 1 + - uid: 7191 + components: + - type: Transform + pos: -51.5,75.5 + parent: 1 + - uid: 7192 + components: + - type: Transform + pos: -51.5,76.5 + parent: 1 + - uid: 7194 + components: + - type: Transform + pos: -52.5,76.5 + parent: 1 + - uid: 7195 + components: + - type: Transform + pos: -53.5,76.5 + parent: 1 + - uid: 7196 + components: + - type: Transform + pos: -51.5,72.5 + parent: 1 + - uid: 7198 + components: + - type: Transform + pos: -51.5,73.5 + parent: 1 + - uid: 7207 + components: + - type: Transform + pos: -53.5,69.5 + parent: 1 + - uid: 7208 + components: + - type: Transform + pos: -51.5,70.5 + parent: 1 + - uid: 7209 + components: + - type: Transform + pos: -51.5,69.5 + parent: 1 + - uid: 7210 + components: + - type: Transform + pos: -52.5,69.5 + parent: 1 - uid: 7284 components: - type: Transform @@ -22469,6 +23968,11 @@ entities: - type: Transform pos: -49.5,83.5 parent: 1 + - uid: 7917 + components: + - type: Transform + pos: -39.5,66.5 + parent: 1 - uid: 7920 components: - type: Transform @@ -22489,6 +23993,31 @@ entities: - type: Transform pos: -56.5,53.5 parent: 1 + - uid: 8354 + components: + - type: Transform + pos: -39.5,62.5 + parent: 1 + - uid: 8355 + components: + - type: Transform + pos: -39.5,65.5 + parent: 1 + - uid: 8356 + components: + - type: Transform + pos: -39.5,63.5 + parent: 1 + - uid: 8357 + components: + - type: Transform + pos: -39.5,64.5 + parent: 1 + - uid: 8362 + components: + - type: Transform + pos: -39.5,61.5 + parent: 1 - uid: 8378 components: - type: Transform @@ -23009,26 +24538,6 @@ entities: - type: Transform pos: -52.5,65.5 parent: 1 - - uid: 8484 - components: - - type: Transform - pos: -52.5,66.5 - parent: 1 - - uid: 8485 - components: - - type: Transform - pos: -52.5,67.5 - parent: 1 - - uid: 8486 - components: - - type: Transform - pos: -52.5,68.5 - parent: 1 - - uid: 8487 - components: - - type: Transform - pos: -52.5,69.5 - parent: 1 - uid: 8488 components: - type: Transform @@ -23044,11 +24553,6 @@ entities: - type: Transform pos: -50.5,68.5 parent: 1 - - uid: 8491 - components: - - type: Transform - pos: -50.5,69.5 - parent: 1 - uid: 8492 components: - type: Transform @@ -23229,6 +24733,16 @@ entities: - type: Transform pos: 19.5,39.5 parent: 1 + - uid: 9029 + components: + - type: Transform + pos: -51.5,74.5 + parent: 1 + - uid: 9042 + components: + - type: Transform + pos: -40.5,63.5 + parent: 1 - uid: 9346 components: - type: Transform @@ -25799,6 +27313,51 @@ entities: - type: Transform pos: -73.5,56.5 parent: 1 + - uid: 14987 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - uid: 14988 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 14989 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 14990 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 14991 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 14992 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 14993 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 14994 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 14995 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 - uid: 15005 components: - type: Transform @@ -25854,11 +27413,46 @@ entities: - type: Transform pos: -46.5,-2.5 parent: 1 + - uid: 15102 + components: + - type: Transform + pos: -26.5,52.5 + parent: 1 + - uid: 15104 + components: + - type: Transform + pos: -26.5,53.5 + parent: 1 + - uid: 15105 + components: + - type: Transform + pos: -26.5,54.5 + parent: 1 + - uid: 15106 + components: + - type: Transform + pos: -27.5,54.5 + parent: 1 + - uid: 15109 + components: + - type: Transform + pos: -28.5,54.5 + parent: 1 - uid: 15113 components: - type: Transform pos: -31.5,56.5 parent: 1 + - uid: 15115 + components: + - type: Transform + pos: -27.5,55.5 + parent: 1 + - uid: 15116 + components: + - type: Transform + pos: -27.5,56.5 + parent: 1 - uid: 15237 components: - type: Transform @@ -26009,35 +27603,85 @@ entities: - type: Transform pos: 10.5,33.5 parent: 1 - - uid: 15380 + - uid: 15335 components: - type: Transform - pos: -16.5,53.5 + pos: 3.5,44.5 parent: 1 - - uid: 15430 + - uid: 15336 components: - type: Transform - pos: -41.5,63.5 + pos: 3.5,43.5 parent: 1 - - uid: 15431 + - uid: 15337 components: - type: Transform - pos: -40.5,63.5 + pos: 2.5,43.5 parent: 1 - - uid: 15432 + - uid: 15338 components: - type: Transform - pos: -42.5,61.5 + pos: 1.5,43.5 parent: 1 - - uid: 15433 + - uid: 15369 components: - type: Transform - pos: -42.5,60.5 + pos: -56.5,74.5 parent: 1 - - uid: 15434 + - uid: 15370 components: - type: Transform - pos: -42.5,66.5 + pos: -56.5,73.5 + parent: 1 + - uid: 15371 + components: + - type: Transform + pos: -55.5,73.5 + parent: 1 + - uid: 15372 + components: + - type: Transform + pos: -55.5,72.5 + parent: 1 + - uid: 15373 + components: + - type: Transform + pos: -55.5,71.5 + parent: 1 + - uid: 15374 + components: + - type: Transform + pos: -54.5,71.5 + parent: 1 + - uid: 15375 + components: + - type: Transform + pos: -53.5,71.5 + parent: 1 + - uid: 15378 + components: + - type: Transform + pos: -52.5,71.5 + parent: 1 + - uid: 15380 + components: + - type: Transform + pos: -16.5,53.5 + parent: 1 + - uid: 15381 + components: + - type: Transform + pos: -51.5,71.5 + parent: 1 + - uid: 15430 + components: + - type: Transform + pos: -41.5,63.5 + parent: 1 + - uid: 15432 + components: + - type: Transform + pos: -42.5,61.5 parent: 1 - uid: 15517 components: @@ -26160,13 +27804,16 @@ entities: parent: 1 - type: Stack count: 5 -- proto: Cablecuffs - entities: - - uid: 2258 + - uid: 14073 components: - type: Transform - pos: 0.18249932,43.256775 - parent: 1 + parent: 14068 + - type: Stack + count: 5 + - type: Physics + canCollide: False +- proto: Cablecuffs + entities: - uid: 12773 components: - type: Transform @@ -27119,61 +28766,6 @@ entities: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 3332 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1 - - uid: 3333 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1 - - uid: 3334 - components: - - type: Transform - pos: -6.5,21.5 - parent: 1 - - uid: 3335 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1 - - uid: 3336 - components: - - type: Transform - pos: -6.5,23.5 - parent: 1 - - uid: 3337 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1 - - uid: 3338 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - uid: 3339 - components: - - type: Transform - pos: -7.5,25.5 - parent: 1 - - uid: 3340 - components: - - type: Transform - pos: -8.5,25.5 - parent: 1 - - uid: 3341 - components: - - type: Transform - pos: -9.5,25.5 - parent: 1 - - uid: 3342 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1 - uid: 3343 components: - type: Transform @@ -27324,11 +28916,6 @@ entities: - type: Transform pos: -12.5,27.5 parent: 1 - - uid: 3386 - components: - - type: Transform - pos: -12.5,28.5 - parent: 1 - uid: 3387 components: - type: Transform @@ -29809,11 +31396,6 @@ entities: - type: Transform pos: -57.5,12.5 parent: 1 - - uid: 8554 - components: - - type: Transform - pos: -57.5,11.5 - parent: 1 - uid: 8555 components: - type: Transform @@ -31054,11 +32636,6 @@ entities: - type: Transform pos: -63.5,28.5 parent: 1 - - uid: 10724 - components: - - type: Transform - pos: -63.5,27.5 - parent: 1 - uid: 10872 components: - type: Transform @@ -31194,6 +32771,11 @@ entities: - type: Transform pos: -72.5,34.5 parent: 1 + - uid: 11776 + components: + - type: Transform + pos: -12.5,28.5 + parent: 1 - uid: 11821 components: - type: Transform @@ -31229,6 +32811,11 @@ entities: - type: Transform pos: -5.5,60.5 parent: 1 + - uid: 12507 + components: + - type: Transform + pos: -57.5,11.5 + parent: 1 - uid: 12834 components: - type: Transform @@ -31514,176 +33101,6 @@ entities: - type: Transform pos: -73.5,18.5 parent: 1 - - uid: 15405 - components: - - type: Transform - pos: -36.5,56.5 - parent: 1 - - uid: 15406 - components: - - type: Transform - pos: -36.5,57.5 - parent: 1 - - uid: 15407 - components: - - type: Transform - pos: -36.5,58.5 - parent: 1 - - uid: 15408 - components: - - type: Transform - pos: -36.5,59.5 - parent: 1 - - uid: 15409 - components: - - type: Transform - pos: -36.5,60.5 - parent: 1 - - uid: 15410 - components: - - type: Transform - pos: -36.5,61.5 - parent: 1 - - uid: 15411 - components: - - type: Transform - pos: -36.5,62.5 - parent: 1 - - uid: 15412 - components: - - type: Transform - pos: -36.5,63.5 - parent: 1 - - uid: 15413 - components: - - type: Transform - pos: -36.5,64.5 - parent: 1 - - uid: 15414 - components: - - type: Transform - pos: -36.5,65.5 - parent: 1 - - uid: 15415 - components: - - type: Transform - pos: -36.5,66.5 - parent: 1 - - uid: 15416 - components: - - type: Transform - pos: -36.5,67.5 - parent: 1 - - uid: 15417 - components: - - type: Transform - pos: -36.5,68.5 - parent: 1 - - uid: 15418 - components: - - type: Transform - pos: -36.5,69.5 - parent: 1 - - uid: 15419 - components: - - type: Transform - pos: -37.5,69.5 - parent: 1 - - uid: 15420 - components: - - type: Transform - pos: -38.5,69.5 - parent: 1 - - uid: 15421 - components: - - type: Transform - pos: -39.5,69.5 - parent: 1 - - uid: 15422 - components: - - type: Transform - pos: -40.5,69.5 - parent: 1 - - uid: 15423 - components: - - type: Transform - pos: -41.5,69.5 - parent: 1 - - uid: 15424 - components: - - type: Transform - pos: -42.5,69.5 - parent: 1 - - uid: 15425 - components: - - type: Transform - pos: -43.5,69.5 - parent: 1 - - uid: 15426 - components: - - type: Transform - pos: -44.5,69.5 - parent: 1 - - uid: 15462 - components: - - type: Transform - pos: -44.5,58.5 - parent: 1 - - uid: 15463 - components: - - type: Transform - pos: -41.5,57.5 - parent: 1 - - uid: 15466 - components: - - type: Transform - pos: -37.5,57.5 - parent: 1 - - uid: 15468 - components: - - type: Transform - pos: -38.5,57.5 - parent: 1 - - uid: 15469 - components: - - type: Transform - pos: -40.5,58.5 - parent: 1 - - uid: 15470 - components: - - type: Transform - pos: -38.5,59.5 - parent: 1 - - uid: 15471 - components: - - type: Transform - pos: -39.5,58.5 - parent: 1 - - uid: 15476 - components: - - type: Transform - pos: -43.5,58.5 - parent: 1 - - uid: 15477 - components: - - type: Transform - pos: -41.5,58.5 - parent: 1 - - uid: 15479 - components: - - type: Transform - pos: -38.5,58.5 - parent: 1 - - uid: 15485 - components: - - type: Transform - pos: -43.5,57.5 - parent: 1 - - uid: 15486 - components: - - type: Transform - pos: -42.5,57.5 - parent: 1 - uid: 15811 components: - type: Transform @@ -32098,11 +33515,6 @@ entities: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 2210 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1 - uid: 2211 components: - type: Transform @@ -32138,11 +33550,6 @@ entities: - type: Transform pos: 4.5,33.5 parent: 1 - - uid: 2218 - components: - - type: Transform - pos: 4.5,34.5 - parent: 1 - uid: 2219 components: - type: Transform @@ -32238,6 +33645,11 @@ entities: - type: Transform pos: -24.5,19.5 parent: 1 + - uid: 3558 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1 - uid: 3682 components: - type: Transform @@ -32628,15 +34040,15 @@ entities: - type: Transform pos: -46.5,23.5 parent: 1 - - uid: 5047 + - uid: 4782 components: - type: Transform - pos: -88.5,20.5 + pos: -40.5,-6.5 parent: 1 - - uid: 5079 + - uid: 5047 components: - type: Transform - pos: -40.5,-6.5 + pos: -88.5,20.5 parent: 1 - uid: 5080 components: @@ -32818,6 +34230,11 @@ entities: - type: Transform pos: -20.5,22.5 parent: 1 + - uid: 7211 + components: + - type: Transform + pos: -53.5,69.5 + parent: 1 - uid: 7808 components: - type: Transform @@ -34088,6 +35505,106 @@ entities: - type: Transform pos: -71.5,25.5 parent: 1 + - uid: 14996 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - uid: 14997 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 14998 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1 + - uid: 14999 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - uid: 15000 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 15001 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 15002 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 15098 + components: + - type: Transform + pos: -25.5,51.5 + parent: 1 + - uid: 15100 + components: + - type: Transform + pos: -25.5,52.5 + parent: 1 + - uid: 15101 + components: + - type: Transform + pos: -26.5,52.5 + parent: 1 + - uid: 15214 + components: + - type: Transform + pos: 3.5,34.5 + parent: 1 + - uid: 15215 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1 + - uid: 15216 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1 + - uid: 15217 + components: + - type: Transform + pos: 3.5,37.5 + parent: 1 + - uid: 15218 + components: + - type: Transform + pos: 3.5,38.5 + parent: 1 + - uid: 15219 + components: + - type: Transform + pos: 3.5,39.5 + parent: 1 + - uid: 15227 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1 + - uid: 15228 + components: + - type: Transform + pos: 3.5,41.5 + parent: 1 + - uid: 15229 + components: + - type: Transform + pos: 3.5,42.5 + parent: 1 + - uid: 15230 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1 - uid: 15235 components: - type: Transform @@ -34098,6 +35615,31 @@ entities: - type: Transform pos: 16.5,44.5 parent: 1 + - uid: 15303 + components: + - type: Transform + pos: 3.5,44.5 + parent: 1 + - uid: 15333 + components: + - type: Transform + pos: 3.5,45.5 + parent: 1 + - uid: 15334 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 + - uid: 15398 + components: + - type: Transform + pos: -52.5,69.5 + parent: 1 + - uid: 15399 + components: + - type: Transform + pos: -51.5,69.5 + parent: 1 - proto: CableMVStack entities: - uid: 2888 @@ -34169,6 +35711,13 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,25.5 parent: 1 +- proto: CandleBlack + entities: + - uid: 8837 + components: + - type: Transform + pos: -55.269207,72.67577 + parent: 1 - proto: CannabisSeeds entities: - uid: 29 @@ -34191,6 +35740,26 @@ entities: - type: Transform pos: 26.766502,24.344301 parent: 1 +- proto: CardSword + entities: + - uid: 13946 + components: + - type: Transform + parent: 14029 + - type: Clothing + inSlot: suitstorage + inSlotFlag: SUITSTORAGE + - type: Physics + canCollide: False + - uid: 13947 + components: + - type: Transform + parent: 13970 + - type: Clothing + inSlot: suitstorage + inSlotFlag: SUITSTORAGE + - type: Physics + canCollide: False - proto: CargoMailTeleporter entities: - uid: 14400 @@ -34602,6 +36171,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-1.5 parent: 1 + - uid: 11808 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 - uid: 12607 components: - type: Transform @@ -35692,42 +37266,12 @@ entities: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 5771 - components: - - type: Transform - pos: -6.5,21.5 - parent: 1 - - uid: 5772 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1 - - uid: 5774 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1 - - uid: 5775 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - uid: 5778 - components: - - type: Transform - pos: -9.5,25.5 - parent: 1 - uid: 6292 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,38.5 parent: 1 - - uid: 7122 - components: - - type: Transform - pos: -48.5,68.5 - parent: 1 - uid: 7225 components: - type: Transform @@ -35743,71 +37287,6 @@ entities: - type: Transform pos: -53.5,80.5 parent: 1 - - uid: 7346 - components: - - type: Transform - pos: -52.5,69.5 - parent: 1 - - uid: 7348 - components: - - type: Transform - pos: -52.5,67.5 - parent: 1 - - uid: 7349 - components: - - type: Transform - pos: -50.5,68.5 - parent: 1 - - uid: 7351 - components: - - type: Transform - pos: -50.5,69.5 - parent: 1 - - uid: 7353 - components: - - type: Transform - pos: -51.5,68.5 - parent: 1 - - uid: 7354 - components: - - type: Transform - pos: -50.5,67.5 - parent: 1 - - uid: 7355 - components: - - type: Transform - pos: -49.5,68.5 - parent: 1 - - uid: 7358 - components: - - type: Transform - pos: -48.5,67.5 - parent: 1 - - uid: 7360 - components: - - type: Transform - pos: -47.5,67.5 - parent: 1 - - uid: 7361 - components: - - type: Transform - pos: -46.5,68.5 - parent: 1 - - uid: 7363 - components: - - type: Transform - pos: -50.5,70.5 - parent: 1 - - uid: 7366 - components: - - type: Transform - pos: -50.5,71.5 - parent: 1 - - uid: 7367 - components: - - type: Transform - pos: -52.5,76.5 - parent: 1 - uid: 7402 components: - type: Transform @@ -35818,11 +37297,6 @@ entities: - type: Transform pos: 15.5,47.5 parent: 1 - - uid: 7404 - components: - - type: Transform - pos: -50.5,73.5 - parent: 1 - uid: 7405 components: - type: Transform @@ -35848,21 +37322,11 @@ entities: - type: Transform pos: 15.5,39.5 parent: 1 - - uid: 7412 - components: - - type: Transform - pos: -50.5,75.5 - parent: 1 - uid: 7415 components: - type: Transform pos: 15.5,35.5 parent: 1 - - uid: 7416 - components: - - type: Transform - pos: -50.5,76.5 - parent: 1 - uid: 7417 components: - type: Transform @@ -35873,26 +37337,11 @@ entities: - type: Transform pos: 18.5,35.5 parent: 1 - - uid: 7419 - components: - - type: Transform - pos: -50.5,77.5 - parent: 1 - uid: 7420 components: - type: Transform pos: 20.5,35.5 parent: 1 - - uid: 7421 - components: - - type: Transform - pos: -52.5,70.5 - parent: 1 - - uid: 7422 - components: - - type: Transform - pos: -52.5,71.5 - parent: 1 - uid: 7423 components: - type: Transform @@ -35913,16 +37362,6 @@ entities: - type: Transform pos: 23.5,31.5 parent: 1 - - uid: 7428 - components: - - type: Transform - pos: -52.5,73.5 - parent: 1 - - uid: 7429 - components: - - type: Transform - pos: -52.5,74.5 - parent: 1 - uid: 7430 components: - type: Transform @@ -35943,11 +37382,6 @@ entities: - type: Transform pos: 23.5,23.5 parent: 1 - - uid: 7436 - components: - - type: Transform - pos: -52.5,77.5 - parent: 1 - uid: 7437 components: - type: Transform @@ -35998,11 +37432,6 @@ entities: - type: Transform pos: 11.5,48.5 parent: 1 - - uid: 7456 - components: - - type: Transform - pos: -52.5,78.5 - parent: 1 - uid: 7457 components: - type: Transform @@ -36038,11 +37467,6 @@ entities: - type: Transform pos: 0.5,47.5 parent: 1 - - uid: 7467 - components: - - type: Transform - pos: -51.5,79.5 - parent: 1 - uid: 7469 components: - type: Transform @@ -36053,21 +37477,11 @@ entities: - type: Transform pos: -3.5,47.5 parent: 1 - - uid: 7471 - components: - - type: Transform - pos: -50.5,79.5 - parent: 1 - uid: 7472 components: - type: Transform pos: -5.5,47.5 parent: 1 - - uid: 7473 - components: - - type: Transform - pos: -50.5,80.5 - parent: 1 - uid: 7474 components: - type: Transform @@ -36083,11 +37497,6 @@ entities: - type: Transform pos: -7.5,50.5 parent: 1 - - uid: 7478 - components: - - type: Transform - pos: -52.5,80.5 - parent: 1 - uid: 7479 components: - type: Transform @@ -36109,12 +37518,6 @@ entities: - type: Transform pos: -13.5,51.5 parent: 1 - - uid: 7483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,49.5 - parent: 1 - uid: 7484 components: - type: Transform @@ -36125,12 +37528,6 @@ entities: - type: Transform pos: -2.5,46.5 parent: 1 - - uid: 7486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 1 - uid: 7487 components: - type: Transform @@ -36705,42 +38102,12 @@ entities: - type: Transform pos: -27.5,50.5 parent: 1 - - uid: 10339 - components: - - type: Transform - pos: -26.5,50.5 - parent: 1 - - uid: 10340 - components: - - type: Transform - pos: -25.5,50.5 - parent: 1 - uid: 10341 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,26.5 parent: 1 - - uid: 10342 - components: - - type: Transform - pos: -24.5,51.5 - parent: 1 - - uid: 10345 - components: - - type: Transform - pos: -21.5,51.5 - parent: 1 - - uid: 10346 - components: - - type: Transform - pos: -20.5,51.5 - parent: 1 - - uid: 10348 - components: - - type: Transform - pos: -24.5,49.5 - parent: 1 - uid: 10350 components: - type: Transform @@ -37435,119 +38802,25 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,37.5 parent: 1 - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,43.5 - parent: 1 - - uid: 15228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,42.5 - parent: 1 - - uid: 15229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,42.5 - parent: 1 - - uid: 15230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,44.5 - parent: 1 - - uid: 15454 - components: - - type: Transform - pos: -37.5,61.5 - parent: 1 - - uid: 15455 - components: - - type: Transform - pos: -42.5,68.5 - parent: 1 - - uid: 15458 - components: - - type: Transform - pos: -38.5,64.5 - parent: 1 - - uid: 15459 - components: - - type: Transform - pos: -37.5,67.5 - parent: 1 - - uid: 15460 - components: - - type: Transform - pos: -38.5,58.5 - parent: 1 - - uid: 15461 - components: - - type: Transform - pos: -44.5,57.5 - parent: 1 - - uid: 15472 - components: - - type: Transform - pos: -42.5,58.5 - parent: 1 - - uid: 15473 - components: - - type: Transform - pos: -40.5,57.5 - parent: 1 - - uid: 15474 - components: - - type: Transform - pos: -39.5,58.5 - parent: 1 - - uid: 15478 - components: - - type: Transform - pos: -43.5,58.5 - parent: 1 - - uid: 15480 - components: - - type: Transform - pos: -41.5,57.5 - parent: 1 - - uid: 15481 - components: - - type: Transform - pos: -39.5,57.5 - parent: 1 - - uid: 15482 - components: - - type: Transform - pos: -41.5,58.5 - parent: 1 - - uid: 15483 - components: - - type: Transform - pos: -43.5,57.5 - parent: 1 - - uid: 15487 + - uid: 15416 components: - type: Transform - pos: -39.5,68.5 + pos: -48.5,68.5 parent: 1 - - uid: 15491 + - uid: 15417 components: - type: Transform - pos: -38.5,57.5 + pos: -47.5,68.5 parent: 1 - - uid: 15492 + - uid: 15418 components: - type: Transform - pos: -37.5,58.5 + pos: -47.5,69.5 parent: 1 - - uid: 15493 + - uid: 15419 components: - type: Transform - pos: -37.5,59.5 + pos: -47.5,67.5 parent: 1 - uid: 15495 components: @@ -37787,12 +39060,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,47.5 parent: 1 - - uid: 2070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - uid: 2639 components: - type: Transform @@ -38037,6 +39304,12 @@ entities: rot: 3.141592653589793 rad pos: -59.5,88.5 parent: 1 + - uid: 7361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,76.5 + parent: 1 - uid: 7538 components: - type: Transform @@ -38083,6 +39356,11 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,58.5 parent: 1 + - uid: 8353 + components: + - type: Transform + pos: -55.5,77.5 + parent: 1 - uid: 9223 components: - type: Transform @@ -38422,6 +39700,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,16.5 parent: 1 + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.646577,23.666752 + parent: 1 - uid: 3728 components: - type: Transform @@ -38446,12 +39730,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,14.5 parent: 1 - - uid: 5716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - uid: 5910 components: - type: Transform @@ -38653,6 +39931,12 @@ entities: parent: 1 - proto: ChairFoldingSpawnFolded entities: + - uid: 1479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.396577,24.573002 + parent: 1 - uid: 2508 components: - type: Transform @@ -38794,6 +40078,17 @@ entities: rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 1 + - uid: 7519 + components: + - type: Transform + pos: -28.440058,53.45632 + parent: 1 + - uid: 7520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.326136,23.550146 + parent: 1 - uid: 7539 components: - type: Transform @@ -39132,6 +40427,13 @@ entities: - type: Transform pos: -0.54882574,19.874796 parent: 1 +- proto: ChemistryBottleFormaldehyde + entities: + - uid: 11799 + components: + - type: Transform + pos: 10.699501,28.547539 + parent: 1 - proto: ChemistryHotplate entities: - uid: 1967 @@ -39224,6 +40526,13 @@ entities: - type: Transform pos: -7.7008357,61.63202 parent: 1 +- proto: CigPackMixed + entities: + - uid: 7346 + components: + - type: Transform + pos: -55.7709,76.40916 + parent: 1 - proto: CircuitImprinterMachineCircuitboard entities: - uid: 258 @@ -39239,6 +40548,34 @@ entities: parent: 1401 - type: Physics canCollide: False +- proto: ClosetBomb + entities: + - uid: 14065 + components: + - type: Transform + pos: -39.5,67.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.8856695 + Nitrogen: 7.0937095 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14068 + - 14066 + - 14067 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetChefFilled entities: - uid: 6935 @@ -39252,18 +40589,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: ClosetEmergencyFilledRandom entities: - uid: 294 @@ -39277,18 +40604,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 908 components: - type: Transform @@ -39300,18 +40617,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1142 components: - type: Transform @@ -39323,18 +40630,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1151 components: - type: Transform @@ -39346,18 +40643,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2942 components: - type: Transform @@ -39369,18 +40656,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2943 components: - type: Transform @@ -39392,18 +40669,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2945 components: - type: Transform @@ -39415,18 +40682,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2949 components: - type: Transform @@ -39438,18 +40695,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2964 components: - type: Transform @@ -39461,18 +40708,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 3321 components: - type: Transform @@ -39484,18 +40721,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5274 components: - type: Transform @@ -39507,18 +40734,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5277 components: - type: Transform @@ -39530,18 +40747,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5385 components: - type: Transform @@ -39553,18 +40760,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5403 components: - type: Transform @@ -39576,18 +40773,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5404 components: - type: Transform @@ -39599,18 +40786,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5414 components: - type: Transform @@ -39622,18 +40799,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5498 components: - type: Transform @@ -39645,18 +40812,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5605 components: - type: Transform @@ -39668,18 +40825,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5608 components: - type: Transform @@ -39691,68 +40838,12 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5710 - components: - - type: Transform - pos: -34.5,10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5729 - components: - - type: Transform - pos: -20.5,10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5779 + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 5710 components: - type: Transform - pos: -4.5,10.5 + pos: -34.5,10.5 parent: 1 - type: EntityStorage air: @@ -39760,22 +40851,12 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5782 + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 5729 components: - type: Transform - pos: -9.5,24.5 + pos: -20.5,10.5 parent: 1 - type: EntityStorage air: @@ -39783,22 +40864,12 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10369 + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 5779 components: - type: Transform - pos: -30.5,49.5 + pos: -4.5,10.5 parent: 1 - type: EntityStorage air: @@ -39806,22 +40877,12 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10376 + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 10369 components: - type: Transform - pos: -20.5,50.5 + pos: -30.5,49.5 parent: 1 - type: EntityStorage air: @@ -39829,18 +40890,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10379 components: - type: Transform @@ -39852,18 +40903,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10381 components: - type: Transform @@ -39875,18 +40916,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10384 components: - type: Transform @@ -39898,18 +40929,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10385 components: - type: Transform @@ -39921,18 +40942,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 12891 components: - type: Transform @@ -39944,18 +40955,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14235 components: - type: Transform @@ -39967,18 +40968,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14236 components: - type: Transform @@ -39990,18 +40981,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14244 components: - type: Transform @@ -40013,18 +40994,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14582 components: - type: Transform @@ -40036,18 +41007,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 15967 components: - type: Transform @@ -40071,18 +41032,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2917 components: - type: Transform @@ -40094,18 +41045,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2941 components: - type: Transform @@ -40117,18 +41058,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2944 components: - type: Transform @@ -40140,26 +41071,16 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2948 components: - type: Transform pos: 14.5,-4.5 parent: 1 - type: EntityStorage - open: True removedMasks: 20 + open: True - uid: 2965 components: - type: Transform @@ -40171,18 +41092,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5389 components: - type: Transform @@ -40194,18 +41105,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5405 components: - type: Transform @@ -40217,18 +41118,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5406 components: - type: Transform @@ -40240,18 +41131,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5415 components: - type: Transform @@ -40263,18 +41144,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5497 components: - type: Transform @@ -40286,18 +41157,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5604 components: - type: Transform @@ -40309,18 +41170,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5607 components: - type: Transform @@ -40332,18 +41183,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5708 components: - type: Transform @@ -40355,18 +41196,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5731 components: - type: Transform @@ -40378,18 +41209,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5780 components: - type: Transform @@ -40401,41 +41222,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5783 - components: - - type: Transform - pos: -8.5,24.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10368 components: - type: Transform @@ -40447,41 +41235,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10377 - components: - - type: Transform - pos: -19.5,50.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10380 components: - type: Transform @@ -40493,18 +41248,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10382 components: - type: Transform @@ -40516,18 +41261,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10386 components: - type: Transform @@ -40539,18 +41274,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10800 components: - type: Transform @@ -40562,18 +41287,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 12890 components: - type: Transform @@ -40585,18 +41300,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14237 components: - type: Transform @@ -40608,18 +41313,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14243 components: - type: Transform @@ -40631,18 +41326,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14583 components: - type: Transform @@ -40654,18 +41339,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 15963 components: - type: Transform @@ -40708,18 +41383,25 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: ClosetL3SecurityFilled + entities: + - uid: 14098 + components: + - type: Transform + pos: -46.5,65.5 + parent: 1 + - uid: 15395 + components: + - type: Transform + pos: -52.5,73.5 + parent: 1 + - uid: 15407 + components: + - type: Transform + pos: -52.5,74.5 + parent: 1 - proto: ClosetL3VirologyFilled entities: - uid: 1150 @@ -40733,18 +41415,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1181 components: - type: Transform @@ -40756,18 +41428,15 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: ClosetMaintenance + entities: + - uid: 15346 + components: + - type: Transform + pos: 2.5,44.5 + parent: 1 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1114 @@ -40781,18 +41450,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2807 components: - type: Transform @@ -40809,18 +41468,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2946 components: - type: Transform @@ -40832,18 +41481,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2947 components: - type: Transform @@ -40855,18 +41494,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2953 components: - type: Transform @@ -40878,18 +41507,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2954 components: - type: Transform @@ -40901,18 +41520,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2966 components: - type: Transform @@ -40924,18 +41533,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5364 components: - type: Transform @@ -40947,18 +41546,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5392 components: - type: Transform @@ -40970,18 +41559,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5413 components: - type: Transform @@ -40993,18 +41572,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5422 components: - type: Transform @@ -41016,18 +41585,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5499 components: - type: Transform @@ -41039,18 +41598,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 1.7459902 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459902 + Nitrogen: 6.568249 - uid: 5606 components: - type: Transform @@ -41062,18 +41611,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5609 components: - type: Transform @@ -41085,18 +41624,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5709 components: - type: Transform @@ -41108,18 +41637,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5733 components: - type: Transform @@ -41131,18 +41650,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5735 components: - type: Transform @@ -41154,18 +41663,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5781 components: - type: Transform @@ -41177,18 +41676,13 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 7486 + components: + - type: Transform + pos: -25.5,46.5 + parent: 1 - uid: 10363 components: - type: Transform @@ -41200,18 +41694,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10367 components: - type: Transform @@ -41223,41 +41707,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10378 - components: - - type: Transform - pos: -21.5,50.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10393 components: - type: Transform @@ -41269,18 +41720,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10394 components: - type: Transform @@ -41292,18 +41733,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10408 components: - type: Transform @@ -41315,18 +41746,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 10474 components: - type: Transform @@ -41338,18 +41759,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 2.0141742 + Nitrogen: 7.577132 - uid: 10802 components: - type: Transform @@ -41361,18 +41772,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 12892 components: - type: Transform @@ -41384,18 +41785,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 12900 components: - type: Transform @@ -41407,18 +41798,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 12901 components: - type: Transform @@ -41430,18 +41811,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14234 components: - type: Transform @@ -41453,18 +41824,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14238 components: - type: Transform @@ -41476,18 +41837,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14314 components: - type: Transform @@ -41499,18 +41850,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14584 components: - type: Transform @@ -41522,18 +41863,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 15068 components: - type: Transform @@ -41545,18 +41876,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 15915 components: - type: Transform @@ -41567,6 +41888,13 @@ entities: - type: Transform pos: 20.5,43.5 parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 3334 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 - proto: ClosetSteelBase entities: - uid: 630 @@ -41580,18 +41908,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 631 components: - type: Transform @@ -41603,18 +41921,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 6325 components: - type: Transform @@ -41626,18 +41934,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: ClosetToolFilled entities: - uid: 1118 @@ -41651,18 +41949,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: ClothingBackpackClown entities: - uid: 4232 @@ -41670,21987 +41958,22006 @@ entities: - type: Transform pos: -40.570293,28.017475 parent: 1 -- proto: ClothingBeltPlantFilled - entities: - - uid: 10744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.493065,25.398989 - parent: 1 -- proto: ClothingBeltUtility - entities: - - uid: 5650 - components: - - type: Transform - pos: -23.493784,26.550022 - parent: 1 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 9736 - components: - - type: Transform - pos: -27.635717,35.723694 - parent: 1 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 14361 - components: - - type: Transform - pos: -60.445595,14.632732 - parent: 1 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 14362 - components: - - type: Transform - pos: -60.42997,10.429607 - parent: 1 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 14363 - components: - - type: Transform - pos: -62.33622,10.476482 - parent: 1 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 14364 - components: - - type: Transform - pos: -62.30497,14.523357 - parent: 1 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 14935 - components: - - type: Transform - pos: -59.51448,91.46834 - parent: 1 -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 5938 - components: - - type: MetaData - desc: These specially insulated grey gloves belong to the king of tiders. A small tag is inscribed with the initials, "H.M." - name: grey gloves of the tider king - - type: Transform - pos: -7.521523,39.691025 - parent: 1 - - type: Insulated -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 611 - components: - - type: Transform - pos: -26.510632,26.559929 - parent: 1 -- proto: ClothingHandsGlovesJanitor - entities: - - uid: 10847 - components: - - type: Transform - pos: -77.41216,51.27648 - parent: 1 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 12776 - components: - - type: Transform - pos: 15.627547,28.610893 - parent: 1 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 14936 - components: - - type: Transform - pos: -76.52277,13.482821 - parent: 1 -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 917 - components: - - type: Transform - pos: 27.553495,-1.4451299 - parent: 1 -- proto: ClothingHeadHatCone - entities: - - uid: 717 - components: - - type: Transform - pos: 24.462656,-1.4106827 - parent: 1 - - uid: 718 - components: - - type: Transform - pos: 24.447031,-2.4575577 - parent: 1 - - uid: 719 - components: - - type: Transform - pos: 24.462656,-3.4575577 - parent: 1 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 12916 - components: - - type: Transform - pos: 3.488522,44.563385 - parent: 1 -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 1836 - components: - - type: Transform - pos: 20.792824,-2.5214906 - parent: 1 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 5443 - components: - - type: Transform - pos: -6.6627684,-13.319158 - parent: 1 -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 15279 - components: - - type: Transform - pos: -57.70341,92.69456 - parent: 1 -- proto: ClothingMaskClown - entities: - - uid: 2306 - components: - - type: Transform - pos: 19.76093,15.739809 - parent: 1 - - uid: 2788 - components: - - type: Transform - pos: -25.506933,57.41912 - parent: 1 - - uid: 10850 - components: - - type: Transform - pos: -76.56348,55.74363 - parent: 1 -- proto: ClothingMaskGas - entities: - - uid: 323 - components: - - type: Transform - pos: -4.562405,-5.3679457 - parent: 1 - - uid: 332 - components: - - type: Transform - pos: -4.156155,-5.3366957 - parent: 1 - - uid: 7378 - components: - - type: MetaData - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - - type: Transform - pos: -5.3370404,44.58554 - parent: 1 - - uid: 7379 - components: - - type: MetaData - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - - type: Transform - pos: -6.630641,44.601288 - parent: 1 - - uid: 7380 - components: - - type: MetaData - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - - type: Transform - pos: -6.224393,44.64804 - parent: 1 - - uid: 7381 - components: - - type: MetaData - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - - type: Transform - pos: -5.8370404,44.632416 - parent: 1 -- proto: ClothingMultipleHeadphones - entities: - - uid: 10545 - components: - - type: Transform - pos: -53.41692,13.576396 - parent: 1 -- proto: ClothingNeckAromanticPin - entities: - - uid: 10536 - components: - - type: Transform - pos: -25.61458,26.466957 - parent: 1 -- proto: ClothingNeckBling - entities: - - uid: 10875 - components: - - type: Transform - pos: -22.564632,53.645256 - parent: 1 -- proto: ClothingNeckIntersexPin - entities: - - uid: 10539 - components: - - type: Transform - pos: 28.525753,9.397884 - parent: 1 -- proto: ClothingNeckLesbianPin - entities: - - uid: 10540 - components: - - type: Transform - pos: 6.5544667,-2.4496374 - parent: 1 -- proto: ClothingNeckLGBTPin - entities: - - uid: 10535 - components: - - type: Transform - pos: -34.543724,28.416185 - parent: 1 -- proto: ClothingNeckMantleHOS - entities: - - uid: 7085 - components: - - type: Transform - pos: -60.468678,63.752388 - parent: 1 -- proto: ClothingNeckMantleRD - entities: - - uid: 3698 - components: - - type: Transform - parent: 245 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 10541 - components: - - type: Transform - pos: -27.46916,-8.556879 - parent: 1 -- proto: ClothingNeckStethoscope - entities: - - uid: 2329 - components: - - type: Transform - pos: 10.447677,31.662287 - parent: 1 -- proto: ClothingNeckTransPin - entities: - - uid: 10543 - components: - - type: Transform - pos: -54.52713,17.537136 - parent: 1 -- proto: ClothingOuterEVASuitSyndicate - entities: - - uid: 15280 - components: - - type: Transform - pos: -57.469036,92.47581 - parent: 1 -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 5444 - components: - - type: Transform - pos: -6.5221434,-13.381658 - parent: 1 -- proto: ClothingOuterRobesCult - entities: - - uid: 1837 - components: - - type: Transform - pos: 20.402199,-2.4433656 - parent: 1 -- proto: ClothingOuterSanta - entities: - - uid: 9162 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9169 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9170 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9171 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9172 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9173 - components: - - type: Transform - pos: -59.601444,52.709152 - parent: 1 - - uid: 9174 - components: - - type: Transform - pos: -59.413944,52.537277 - parent: 1 - - uid: 9186 - components: - - type: Transform - pos: -59.413944,52.537277 - parent: 1 - - uid: 9187 - components: - - type: Transform - pos: -59.413944,52.537277 - parent: 1 - - uid: 9189 - components: - - type: Transform - pos: -59.413944,52.537277 - parent: 1 -- proto: ClothingOuterSuitMonkey - entities: - - uid: 916 - components: - - type: Transform - pos: 27.147245,-2.3826299 - parent: 1 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 15494 - components: - - type: Transform - pos: -35.545906,68.57638 - parent: 1 -- proto: ClothingShoesBootsMag - entities: - - uid: 7382 - components: - - type: Transform - pos: -12.423142,46.687256 - parent: 1 - - uid: 7383 - components: - - type: Transform - pos: -12.595017,46.437256 - parent: 1 - - uid: 7384 - components: - - type: Transform - pos: -13.391892,46.687256 - parent: 1 - - uid: 7385 - components: - - type: Transform - pos: -13.579392,46.45288 - parent: 1 - - uid: 14163 - components: - - type: Transform - pos: -77.410675,42.617188 - parent: 1 -- proto: ClothingShoesBootsPerformer - entities: - - uid: 10959 - components: - - type: Transform - pos: -72.29666,45.642494 - parent: 1 -- proto: ClothingShoesWizard +- proto: ClothingBeltHolster entities: - - uid: 6833 + - uid: 7020 components: - type: Transform - pos: -36.71934,52.678024 - parent: 1 - - uid: 6834 + pos: -42.41401,66.771065 + parent: 1 + - type: Storage + storedItems: + 7078: + position: 0,0 + _rotation: South + 7079: + position: 1,0 + _rotation: South + 7080: + position: 2,0 + _rotation: South + 7081: + position: 3,0 + _rotation: South + 7083: + position: 0,1 + _rotation: South + 7084: + position: 1,1 + _rotation: South + 7086: + position: 2,1 + _rotation: South + 7103: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7078 + - 7079 + - 7080 + - 7081 + - 7083 + - 7084 + - 7086 + - 7103 + - uid: 7104 components: - type: Transform - pos: -36.359966,52.553024 - parent: 1 -- proto: ClothingUniformJumpskirtJanimaidmini - entities: - - uid: 10843 + pos: -42.460884,66.677315 + parent: 1 + - type: Storage + storedItems: + 7105: + position: 0,0 + _rotation: South + 7106: + position: 1,0 + _rotation: South + 7108: + position: 2,0 + _rotation: South + 7114: + position: 3,0 + _rotation: South + 7115: + position: 0,1 + _rotation: South + 7116: + position: 1,1 + _rotation: South + 7117: + position: 2,1 + _rotation: South + 7912: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7105 + - 7106 + - 7108 + - 7114 + - 7115 + - 7116 + - 7117 + - 7912 + - uid: 13940 components: - type: Transform - pos: -77.59966,51.440544 - parent: 1 -- proto: ClothingUniformJumpskirtPerformer + pos: -42.44526,66.72419 + parent: 1 + - type: Storage + storedItems: + 13941: + position: 0,0 + _rotation: South + 13962: + position: 1,0 + _rotation: South + 13963: + position: 2,0 + _rotation: South + 13964: + position: 3,0 + _rotation: South + 13966: + position: 0,1 + _rotation: South + 13967: + position: 1,1 + _rotation: South + 13968: + position: 2,1 + _rotation: South + 13969: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13941 + - 13962 + - 13963 + - 13964 + - 13966 + - 13967 + - 13968 + - 13969 +- proto: ClothingBeltPlantFilled entities: - - uid: 10960 + - uid: 10744 components: - type: Transform - pos: -72.56229,45.579994 + rot: -1.5707963267948966 rad + pos: 27.493065,25.398989 parent: 1 -- proto: ClothingUniformJumpsuitAncient +- proto: ClothingBeltQuiver entities: - - uid: 5559 - components: - - type: Transform - pos: -45.64481,17.603561 - parent: 1 - - uid: 15103 + - uid: 9043 components: - type: Transform - pos: -45.285435,17.619186 - parent: 1 -- proto: ComfyChair - entities: - - uid: 6341 + pos: -43.249016,66.63354 + parent: 1 + - type: Storage + storedItems: + 9044: + position: 0,0 + _rotation: South + 9045: + position: 1,0 + _rotation: South + 9046: + position: 2,0 + _rotation: South + 9047: + position: 3,0 + _rotation: South + 9088: + position: 4,0 + _rotation: South + 9195: + position: 5,0 + _rotation: South + 9662: + position: 6,0 + _rotation: South + 9666: + position: 7,0 + _rotation: South + 13009: + position: 0,2 + _rotation: South + 13010: + position: 1,2 + _rotation: South + 13011: + position: 2,2 + _rotation: South + 13012: + position: 3,2 + _rotation: South + 13013: + position: 4,2 + _rotation: South + 13014: + position: 5,2 + _rotation: South + 13015: + position: 6,2 + _rotation: South + 13016: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 9044 + - 9045 + - 9046 + - 9047 + - 9088 + - 9195 + - 9662 + - 9666 + - 13009 + - 13010 + - 13011 + - 13012 + - 13013 + - 13014 + - 13015 + - 13016 + - uid: 13019 components: - type: Transform - pos: -0.5,52.5 - parent: 1 - - uid: 6342 + pos: -42.999016,66.63354 + parent: 1 + - type: Storage + storedItems: + 13020: + position: 0,0 + _rotation: South + 13021: + position: 1,0 + _rotation: South + 13022: + position: 2,0 + _rotation: South + 13023: + position: 3,0 + _rotation: South + 13024: + position: 4,0 + _rotation: South + 13025: + position: 5,0 + _rotation: South + 13026: + position: 6,0 + _rotation: South + 13027: + position: 7,0 + _rotation: South + 13028: + position: 0,2 + _rotation: South + 13029: + position: 1,2 + _rotation: South + 13030: + position: 2,2 + _rotation: South + 13031: + position: 3,2 + _rotation: South + 13032: + position: 4,2 + _rotation: South + 13033: + position: 5,2 + _rotation: South + 13034: + position: 6,2 + _rotation: South + 13134: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13020 + - 13021 + - 13022 + - 13023 + - 13024 + - 13025 + - 13026 + - 13027 + - 13028 + - 13029 + - 13030 + - 13031 + - 13032 + - 13033 + - 13034 + - 13134 + - uid: 13983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,50.5 - parent: 1 - - uid: 7537 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13988 components: - type: Transform - pos: -22.5,47.5 - parent: 1 - - uid: 7931 + parent: 13984 + - type: Storage + storedItems: + 13989: + position: 0,0 + _rotation: South + 13990: + position: 1,0 + _rotation: South + 13991: + position: 2,0 + _rotation: South + 13992: + position: 3,0 + _rotation: South + 13993: + position: 4,0 + _rotation: South + 13994: + position: 5,0 + _rotation: South + 13995: + position: 6,0 + _rotation: South + 13996: + position: 7,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13989 + - 13990 + - 13991 + - 13992 + - 13993 + - 13994 + - 13995 + - 13996 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtility + entities: + - uid: 5650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,64.5 + pos: -23.493784,26.550022 parent: 1 - - uid: 9313 +- proto: ClothingEyesGlassesNoir + entities: + - uid: 8373 components: - type: Transform - pos: 27.5,29.5 - parent: 1 - - uid: 9634 + parent: 14029 + - type: Clothing + inSlot: eyes + inSlotFlag: EYES + - type: Physics + canCollide: False + - uid: 14031 components: - type: Transform - pos: 28.5,29.5 - parent: 1 - - uid: 10877 + parent: 13970 + - type: Clothing + inSlot: eyes + inSlotFlag: EYES + - type: Physics + canCollide: False +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 9736 components: - type: Transform - pos: -8.5,56.5 + pos: -27.635717,35.723694 parent: 1 - - uid: 10905 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 14361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,61.5 + pos: -60.445595,14.632732 parent: 1 - - uid: 15162 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 14362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,52.5 + pos: -60.42997,10.429607 parent: 1 - - uid: 15163 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 14363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,52.5 + pos: -62.33622,10.476482 parent: 1 -- proto: CommandmentCircuitBoard +- proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 13807 + - uid: 14364 components: - type: Transform - pos: -109.39159,7.395344 + pos: -62.30497,14.523357 parent: 1 -- proto: ComputerAlert +- proto: ClothingHandsGlovesColorBlack entities: - - uid: 6518 + - uid: 14935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,65.5 + pos: -59.51448,91.46834 parent: 1 - - uid: 11908 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 5938 components: + - type: MetaData + desc: These specially insulated grey gloves belong to the king of tiders. A small tag is inscribed with the initials, "H.M." + name: grey gloves of the tider king - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,29.5 + pos: -7.521523,39.691025 parent: 1 -- proto: ComputerAnalysisConsole + - type: Insulated +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 341 + - uid: 611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 + pos: -26.510632,26.559929 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 347: - - - ArtifactAnalyzerSender - - ArtifactAnalyzerReceiver -- proto: ComputerBroken +- proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 591 + - uid: 14067 components: - type: Transform - pos: 13.5,-7.5 - parent: 1 - - uid: 5324 + parent: 14065 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 10847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,38.5 + pos: -77.41216,51.27648 parent: 1 - - uid: 9069 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 12776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,42.5 + pos: 15.627547,28.610893 parent: 1 - - uid: 9080 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 14936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,40.5 + pos: -76.52277,13.482821 parent: 1 -- proto: ComputerCargoBounty +- proto: ClothingHeadHatAnimalMonkey entities: - - uid: 8995 + - uid: 917 components: - type: Transform - pos: -33.5,-5.5 + pos: 27.553495,-1.4451299 parent: 1 -- proto: ComputerCargoOrders +- proto: ClothingHeadHatCone entities: - - uid: 3619 + - uid: 717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,1.5 + pos: 24.462656,-1.4106827 parent: 1 - - uid: 3746 + - uid: 718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-7.5 + pos: 24.447031,-2.4575577 parent: 1 -- proto: ComputerCargoOrdersEngineering - entities: - - uid: 11921 + - uid: 719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,30.5 + pos: 24.462656,-3.4575577 parent: 1 -- proto: ComputerCargoOrdersMedical +- proto: ClothingHeadHatHoodCulthood entities: - - uid: 11973 + - uid: 1836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 + pos: 20.792824,-2.5214906 parent: 1 -- proto: ComputerCargoOrdersScience +- proto: ClothingHeadHelmetEVA entities: - - uid: 14401 + - uid: 5443 components: - type: Transform - pos: -6.5,-7.5 + pos: -6.6627684,-13.319158 parent: 1 -- proto: ComputerCargoOrdersSecurity +- proto: ClothingHeadHelmetRiot entities: - - uid: 185 + - uid: 5494 components: - type: Transform - pos: -61.5,55.5 + pos: -38.592735,61.956276 parent: 1 -- proto: ComputerCargoOrdersService - entities: - - uid: 414 + - uid: 14052 components: - type: Transform - pos: -41.5,52.5 + pos: -38.248985,62.0969 parent: 1 - - uid: 6915 + - uid: 14083 components: - type: Transform - pos: -37.5,47.5 + pos: -38.38961,62.018776 parent: 1 -- proto: ComputerComms +- proto: ClothingHeadHelmetScrap entities: - - uid: 10884 + - uid: 13982 components: + - type: MetaData + desc: Защищает голову от лишних отверстий и светлых идей. + name: блестящий шлем службы безопасности - type: Transform - pos: -16.5,66.5 - parent: 1 - - uid: 13767 + parent: 14029 + - type: Clothing + inSlot: head + inSlotFlag: HEAD + - type: Physics + canCollide: False + - type: ExplosionResistance + modifiers: {} + damageCoefficient: 0.95 + - uid: 14032 components: + - type: MetaData + desc: Защищает голову от лишних отверстий и светлых идей. + name: блестящий шлем службы безопасности - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 -- proto: ComputerCrewMonitoring + parent: 13970 + - type: Clothing + inSlot: head + inSlotFlag: HEAD + - type: Physics + canCollide: False + - type: ExplosionResistance + modifiers: {} + damageCoefficient: 0.95 +- proto: ClothingHeadHelmetSyndicate entities: - - uid: 1973 + - uid: 15279 components: - type: Transform - pos: -0.5,34.5 + pos: -57.70341,92.69456 parent: 1 - - uid: 10886 +- proto: ClothingMaskBreath + entities: + - uid: 15350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,64.5 + pos: 4.5902505,42.53824 parent: 1 -- proto: ComputerCriminalRecords +- proto: ClothingMaskBreathMedicalSecurity entities: - - uid: 2992 + - uid: 8376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,58.5 - parent: 1 - - uid: 7901 + parent: 14029 + - type: Clothing + inSlot: mask + inSlotFlag: MASK + - type: Physics + canCollide: False + - uid: 13948 components: - type: Transform - pos: -13.5,65.5 - parent: 1 -- proto: ComputerFrame + parent: 13970 + - type: Clothing + inSlot: mask + inSlotFlag: MASK + - type: Physics + canCollide: False +- proto: ClothingMaskClown entities: - - uid: 1324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - - uid: 9067 + - uid: 2306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 + pos: 19.76093,15.739809 parent: 1 -- proto: ComputerId - entities: - - uid: 7562 + - uid: 2788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,37.5 + pos: -25.506933,57.41912 parent: 1 - - uid: 10885 + - uid: 10850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,64.5 + pos: -76.56348,55.74363 parent: 1 -- proto: ComputerMedicalRecords +- proto: ClothingMaskGas entities: - - uid: 1980 + - uid: 323 components: - type: Transform - pos: 0.5,34.5 + pos: -4.562405,-5.3679457 parent: 1 -- proto: ComputerPowerMonitoring - entities: - - uid: 10712 + - uid: 332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,15.5 + pos: -4.156155,-5.3366957 parent: 1 - - uid: 10713 + - uid: 7378 components: + - type: MetaData + desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,27.5 + pos: -5.3370404,44.58554 parent: 1 - - uid: 10894 + - uid: 7379 components: + - type: MetaData + desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,60.5 + pos: -6.630641,44.601288 parent: 1 -- proto: ComputerRadar - entities: - - uid: 10705 + - uid: 7380 components: + - type: MetaData + desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-13.5 + pos: -6.224393,44.64804 parent: 1 - - uid: 10887 + - uid: 7381 components: + - type: MetaData + desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,61.5 + pos: -5.8370404,44.632416 parent: 1 -- proto: ComputerResearchAndDevelopment +- proto: ClothingMultipleHeadphones entities: - - uid: 248 + - uid: 10545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: -53.41692,13.576396 parent: 1 - - uid: 251 +- proto: ClothingNeckAromanticPin + entities: + - uid: 10536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: -25.61458,26.466957 parent: 1 -- proto: ComputerRoboticsControl +- proto: ClothingNeckBling entities: - - uid: 5518 + - uid: 10875 components: - type: Transform - pos: -13.5,-1.5 + pos: -22.564632,53.645256 parent: 1 - - uid: 13861 +- proto: ClothingNeckIntersexPin + entities: + - uid: 10539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,59.5 + pos: 28.525753,9.397884 parent: 1 -- proto: ComputerSalvageExpedition +- proto: ClothingNeckLesbianPin entities: - - uid: 10739 + - uid: 10540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-3.5 + pos: 6.5544667,-2.4496374 parent: 1 -- proto: ComputerSalvageJobBoard +- proto: ClothingNeckLGBTPin entities: - - uid: 9604 + - uid: 10535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 + pos: -34.543724,28.416185 parent: 1 -- proto: ComputerShuttleCargo +- proto: ClothingNeckMantle entities: - - uid: 3618 + - uid: 13945 components: - type: Transform - pos: -39.5,-1.5 - parent: 1 - - uid: 3673 + parent: 14029 + - type: Clothing + inSlot: neck + inSlotFlag: NECK + - type: Physics + canCollide: False + - uid: 13985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 1 -- proto: ComputerSolarControl + parent: 13970 + - type: Clothing + inSlot: neck + inSlotFlag: NECK + - type: Physics + canCollide: False +- proto: ClothingNeckMantleHOS entities: - - uid: 907 + - uid: 7085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 + pos: -60.468678,63.752388 parent: 1 -- proto: ComputerStationRecords +- proto: ClothingNeckMantleRD entities: - - uid: 7963 + - uid: 3698 components: - type: Transform - pos: -53.5,58.5 - parent: 1 - - uid: 10899 + parent: 245 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 10541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,61.5 + pos: -27.46916,-8.556879 parent: 1 -- proto: ComputerSurveillanceCameraMonitor +- proto: ClothingNeckStethoscope entities: - - uid: 7956 + - uid: 2329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,57.5 + pos: 10.447677,31.662287 parent: 1 - - uid: 7979 +- proto: ClothingNeckTransPin + entities: + - uid: 10543 components: - type: Transform - pos: -54.5,58.5 + pos: -54.52713,17.537136 parent: 1 - - uid: 9304 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 14062 components: - type: Transform - pos: -19.5,65.5 + rot: 3.141592653589793 rad + pos: -38.29586,61.612526 parent: 1 - - uid: 10888 + - uid: 14075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,60.5 + rot: 3.141592653589793 rad + pos: -38.530235,61.487526 parent: 1 - - uid: 13086 +- proto: ClothingOuterArmorReflective + entities: + - uid: 13949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + pos: -40.452984,64.464195 parent: 1 -- proto: ComputerTechnologyDiskTerminal +- proto: ClothingOuterArmorRiot entities: - - uid: 234 + - uid: 14078 components: - type: Transform - pos: -9.5,-5.5 + pos: -38.596912,62.433685 parent: 1 -- proto: ComputerTelevision - entities: - - uid: 9686 + - uid: 14084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,27.5 + pos: -38.342735,62.56565 parent: 1 -- proto: ContainmentFieldGenerator +- proto: ClothingOuterArmorTemplar entities: - - uid: 9985 + - uid: 8368 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,18.5 - parent: 1 - - uid: 9986 + - type: MetaData + desc: Слишком яркая, чтобы смотреть на нее долго + name: блестящая броня службы безопасности + - type: Transform + parent: 14029 + - type: Armor + modifiers: + flatReductions: {} + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.8 + Heat: 0.7 + - type: Clothing + inSlot: outerClothing + inSlotFlag: OUTERCLOTHING + - type: Physics + canCollide: False + - type: AllowSuitStorage + whitelist: + components: + - Item + - type: ExplosionResistance + modifiers: {} + damageCoefficient: 0.9 + - uid: 8370 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,18.5 - parent: 1 - - uid: 9987 + - type: MetaData + desc: Слишком яркая, чтобы смотреть на нее долго + name: блестящая броня службы безопасности + - type: Transform + parent: 13970 + - type: Armor + modifiers: + flatReductions: {} + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.8 + Heat: 0.7 + - type: Clothing + inSlot: outerClothing + inSlotFlag: OUTERCLOTHING + - type: Physics + canCollide: False + - type: AllowSuitStorage + whitelist: + components: + - Item + - type: ExplosionResistance + modifiers: {} + damageCoefficient: 0.9 +- proto: ClothingOuterEVASuitSyndicate + entities: + - uid: 15280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,18.5 + pos: -57.469036,92.47581 parent: 1 - - uid: 9988 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 5444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,18.5 + pos: -6.5221434,-13.381658 parent: 1 - - uid: 10644 +- proto: ClothingOuterHardsuitLing + entities: + - uid: 14066 components: + - type: MetaData + desc: Из-за входного отверстия сзади, данный экземпляр более не годится для работы без атмосферы - type: Transform - pos: -93.5,21.5 - parent: 1 - - uid: 10645 + parent: 14065 + - type: InsideEntityStorage + - type: TemperatureProtection + coolingCoefficient: 1 + heatingCoefficient: 1 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]0%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + missingComponents: + - PressureProtection +- proto: ClothingOuterRobesCult + entities: + - uid: 1837 components: - type: Transform - pos: -93.5,29.5 + pos: 20.402199,-2.4433656 parent: 1 - - uid: 10646 +- proto: ClothingOuterSanta + entities: + - uid: 9162 components: - type: Transform - pos: -101.5,29.5 + pos: -59.601444,52.709152 parent: 1 - - uid: 10647 + - uid: 9169 components: - type: Transform - pos: -101.5,21.5 - parent: 1 -- proto: ConveyorBelt - entities: - - uid: 6789 + pos: -59.601444,52.709152 + parent: 1 + - uid: 9170 components: - type: Transform - pos: -39.5,-8.5 + pos: -59.601444,52.709152 parent: 1 - - uid: 6793 + - uid: 9171 components: - type: Transform - pos: -39.5,-9.5 + pos: -59.601444,52.709152 parent: 1 - - uid: 7282 + - uid: 9172 components: - type: Transform - pos: -39.5,-7.5 + pos: -59.601444,52.709152 parent: 1 - - uid: 13825 + - uid: 9173 components: - type: Transform - pos: -35.5,-14.5 + pos: -59.601444,52.709152 parent: 1 - - uid: 13826 + - uid: 9174 components: - type: Transform - pos: -35.5,-13.5 + pos: -59.413944,52.537277 parent: 1 - - uid: 13827 + - uid: 9186 components: - type: Transform - pos: -35.5,-12.5 + pos: -59.413944,52.537277 parent: 1 - - uid: 13828 + - uid: 9187 components: - type: Transform - pos: -35.5,-11.5 + pos: -59.413944,52.537277 parent: 1 - - uid: 13829 + - uid: 9189 components: - type: Transform - pos: -35.5,-10.5 + pos: -59.413944,52.537277 parent: 1 - - uid: 13830 +- proto: ClothingOuterSuitMonkey + entities: + - uid: 916 components: - type: Transform - pos: -31.5,-14.5 + pos: 27.147245,-2.3826299 parent: 1 - - uid: 13831 +- proto: ClothingShoesBootsMag + entities: + - uid: 7382 components: - type: Transform - pos: -31.5,-13.5 + pos: -12.423142,46.687256 parent: 1 - - uid: 13832 + - uid: 7383 components: - type: Transform - pos: -31.5,-12.5 + pos: -12.595017,46.437256 parent: 1 - - uid: 13833 + - uid: 7384 components: - type: Transform - pos: -31.5,-11.5 + pos: -13.391892,46.687256 parent: 1 - - uid: 13834 + - uid: 7385 components: - type: Transform - pos: -31.5,-10.5 + pos: -13.579392,46.45288 parent: 1 - - uid: 14225 + - uid: 14163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,53.5 + pos: -77.410675,42.617188 parent: 1 - - uid: 14226 +- proto: ClothingShoesBootsPerformer + entities: + - uid: 10959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,54.5 + pos: -72.29666,45.642494 parent: 1 - - uid: 14227 +- proto: ClothingShoesWizard + entities: + - uid: 6833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,55.5 + pos: -36.71934,52.678024 parent: 1 - - uid: 14228 + - uid: 6834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,56.5 + pos: -36.359966,52.553024 parent: 1 - - uid: 14229 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 10843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,57.5 + pos: -77.59966,51.440544 parent: 1 - - uid: 14230 +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 10960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,58.5 + pos: -72.56229,45.579994 parent: 1 -- proto: CowToolboxFilled +- proto: ClothingUniformJumpsuitAncient entities: - - uid: 14933 + - uid: 5559 components: - type: Transform - pos: -92.450035,40.48285 + pos: -45.64481,17.603561 parent: 1 -- proto: CrateAirlockKit - entities: - - uid: 9079 + - uid: 15103 components: - type: Transform - pos: 5.5,-19.5 + pos: -45.285435,17.619186 parent: 1 -- proto: CrateArtifactContainer +- proto: ComfyChair entities: - - uid: 349 + - uid: 6341 components: - type: Transform - pos: 5.5,-8.5 + pos: -0.5,52.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEmptySpawner - entities: - - uid: 15654 + - uid: 6342 components: - type: Transform - pos: -39.5,-3.5 + rot: 3.141592653589793 rad + pos: -0.5,50.5 parent: 1 - - uid: 15655 + - uid: 7537 components: - type: Transform - pos: -37.5,-5.5 + pos: -22.5,47.5 parent: 1 - - uid: 15656 + - uid: 7931 components: - type: Transform - pos: -41.5,-11.5 + rot: 1.5707963267948966 rad + pos: -61.5,64.5 parent: 1 - - uid: 15658 + - uid: 9313 components: - type: Transform - pos: -21.5,-0.5 + pos: 27.5,29.5 parent: 1 - - uid: 15659 + - uid: 9634 components: - type: Transform - pos: 22.5,-4.5 + pos: 28.5,29.5 parent: 1 - - uid: 15663 + - uid: 10877 components: - type: Transform - pos: 2.5,46.5 + pos: -8.5,56.5 parent: 1 - - uid: 15664 + - uid: 10905 components: - type: Transform - pos: -5.5,36.5 + rot: 1.5707963267948966 rad + pos: -8.5,61.5 parent: 1 - - uid: 15733 + - uid: 15162 components: - type: Transform - pos: -26.5,49.5 + rot: 3.141592653589793 rad + pos: 16.5,52.5 parent: 1 - - uid: 15781 + - uid: 15163 components: - type: Transform - pos: -75.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,52.5 parent: 1 -- proto: CrateEngineeringAMEJar +- proto: CommandmentCircuitBoard entities: - - uid: 9074 + - uid: 13807 components: - type: Transform - pos: -76.5,22.5 + pos: -109.39159,7.395344 parent: 1 -- proto: CrateEngineeringAMEShielding +- proto: ComputerAlert entities: - - uid: 10657 + - uid: 6518 components: - type: Transform - pos: -71.5,23.5 + rot: -1.5707963267948966 rad + pos: -14.5,65.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 2.0141742 - - 7.577132 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableBulk + - uid: 11908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,29.5 + parent: 1 +- proto: ComputerAnalysisConsole entities: - - uid: 10145 + - uid: 341 components: - type: Transform - pos: -69.5,25.5 + rot: 3.141592653589793 rad + pos: 0.5,-11.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10723 + - type: DeviceLinkSource + linkedPorts: + 347: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 15345 components: - type: Transform - pos: -63.5,26.5 + rot: 3.141592653589793 rad + pos: -0.5,42.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFilledSpawner +- proto: ComputerBroken entities: - - uid: 1469 + - uid: 591 components: - type: Transform - pos: -44.5,17.5 + pos: 13.5,-7.5 parent: 1 - - uid: 3222 + - uid: 5324 components: - type: Transform - pos: -7.5,12.5 + rot: 3.141592653589793 rad + pos: 22.5,38.5 parent: 1 - - uid: 3629 + - uid: 9069 components: - type: Transform - pos: -28.5,40.5 + rot: 3.141592653589793 rad + pos: 18.5,42.5 parent: 1 - - uid: 5556 + - uid: 9080 components: - type: Transform - pos: -42.5,17.5 + rot: 3.141592653589793 rad + pos: 17.5,40.5 parent: 1 - - uid: 15652 + - uid: 15352 components: - type: Transform - pos: -43.5,-10.5 + rot: 1.5707963267948966 rad + pos: -29.5,53.5 parent: 1 - - uid: 15653 +- proto: ComputerCargoBounty + entities: + - uid: 8995 components: - type: Transform - pos: -34.5,-5.5 + pos: -33.5,-5.5 parent: 1 - - uid: 15657 +- proto: ComputerCargoOrders + entities: + - uid: 3619 components: - type: Transform - pos: -26.5,-8.5 + rot: -1.5707963267948966 rad + pos: -36.5,1.5 parent: 1 - - uid: 15660 + - uid: 3746 components: - type: Transform - pos: 22.5,32.5 + rot: -1.5707963267948966 rad + pos: -43.5,-7.5 parent: 1 -- proto: CrateFreezer +- proto: ComputerCargoOrdersEngineering entities: - - uid: 2303 + - uid: 11921 components: - type: Transform - pos: -28.5,44.5 + rot: 3.141592653589793 rad + pos: -63.5,30.5 parent: 1 - - uid: 4236 +- proto: ComputerCargoOrdersMedical + entities: + - uid: 11973 components: - type: Transform - pos: -27.5,44.5 + rot: 3.141592653589793 rad + pos: 10.5,22.5 parent: 1 -- proto: CrateLockBoxEngineering +- proto: ComputerCargoOrdersScience entities: - - uid: 11972 + - uid: 14401 components: - type: Transform - pos: -65.5,30.5 + pos: -6.5,-7.5 parent: 1 -- proto: CrateLockBoxMedical +- proto: ComputerCargoOrdersSecurity entities: - - uid: 14187 + - uid: 185 components: - type: Transform - pos: 11.5,22.5 + pos: -61.5,55.5 parent: 1 -- proto: CrateLockBoxScience + - type: AccessReader + accessListsOriginal: + - - Security +- proto: ComputerCargoOrdersService entities: - - uid: 38 + - uid: 414 components: - type: Transform - pos: -7.5,-7.5 + pos: -41.5,52.5 parent: 1 -- proto: CrateLockBoxSecurity - entities: - - uid: 14402 + - type: AccessReader + accessListsOriginal: + - - Service + - - Theatre + - uid: 6915 components: - type: Transform - pos: -60.5,55.5 + pos: -37.5,47.5 parent: 1 -- proto: CrateLockBoxService + - type: AccessReader + accessListsOriginal: + - - Service + - - Theatre +- proto: ComputerComms entities: - - uid: 14420 + - uid: 10884 components: - type: Transform - pos: -31.5,45.5 + pos: -16.5,66.5 parent: 1 - - uid: 14421 + - uid: 13767 components: - type: Transform - pos: -39.5,51.5 + rot: 3.141592653589793 rad + pos: -8.5,59.5 parent: 1 -- proto: CrateMaterialGlass +- proto: ComputerCrewMonitoring entities: - - uid: 4734 + - uid: 1973 components: - type: Transform - pos: 12.5,-19.5 + pos: -0.5,34.5 parent: 1 - - uid: 9981 + - uid: 10886 components: - type: Transform - pos: -82.5,19.5 + rot: 1.5707963267948966 rad + pos: -20.5,64.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15895 +- proto: ComputerCriminalRecords + entities: + - uid: 2992 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: -48.5,58.5 parent: 1 -- proto: CrateMaterialSteel + - uid: 7901 + components: + - type: Transform + pos: -13.5,65.5 + parent: 1 +- proto: ComputerFrame entities: - - uid: 9980 + - uid: 1324 components: - type: Transform - pos: -82.5,20.5 + rot: 1.5707963267948966 rad + pos: 1.5,38.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15557 + - uid: 2627 components: - type: Transform - pos: 10.5,-20.5 + rot: -1.5707963267948966 rad + pos: -6.5,23.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1492 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15558 + - uid: 9067 components: - type: Transform - pos: 9.5,-20.5 + rot: 3.141592653589793 rad + pos: 22.5,40.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1492 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMindShieldImplants +- proto: ComputerId entities: - - uid: 8648 + - uid: 7562 components: - type: Transform - pos: -43.5,63.5 + rot: 1.5707963267948966 rad + pos: -20.5,37.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCCow - entities: - - uid: 6919 + - uid: 10885 components: - type: Transform - pos: -34.5,42.5 + rot: -1.5707963267948966 rad + pos: -12.5,64.5 parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 11.733055 - - 44.138634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateScience +- proto: ComputerMedicalRecords entities: - - uid: 7398 + - uid: 1980 components: - type: Transform - pos: 11.5,50.5 + pos: 0.5,34.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceJanitorialSupplies +- proto: ComputerPowerMonitoring entities: - - uid: 7074 + - uid: 10712 components: - type: Transform - pos: -53.5,35.5 + rot: 3.141592653589793 rad + pos: -74.5,15.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7565 - - 7136 - - 7134 - - 7133 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCart + - uid: 10713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,27.5 + parent: 1 + - uid: 10894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,60.5 + parent: 1 +- proto: ComputerRadar entities: - - uid: 1405 + - uid: 10705 components: - type: Transform - pos: 0.5,31.5 + rot: 1.5707963267948966 rad + pos: -49.5,-13.5 parent: 1 - - uid: 2302 + - uid: 10887 components: - type: Transform - pos: -39.5,35.5 + rot: 1.5707963267948966 rad + pos: -21.5,61.5 parent: 1 - - uid: 2637 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 248 components: - type: Transform - pos: -20.5,53.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 4072 + - uid: 251 components: - type: Transform - pos: -34.5,7.5 + rot: 1.5707963267948966 rad + pos: -8.5,2.5 parent: 1 - - uid: 4073 +- proto: ComputerRoboticsControl + entities: + - uid: 5518 components: - type: Transform - pos: -61.5,31.5 + pos: -13.5,-1.5 parent: 1 -- proto: CrateTrashCartJani + - uid: 13861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,59.5 + parent: 1 +- proto: ComputerSalvageExpedition entities: - - uid: 5642 + - uid: 10739 components: - type: Transform - pos: -50.5,35.5 + rot: 3.141592653589793 rad + pos: -34.5,-3.5 parent: 1 -- proto: CrayonMime +- proto: ComputerSalvageJobBoard entities: - - uid: 4216 + - uid: 9604 components: - type: Transform - pos: -40.465607,23.673563 + rot: 3.141592653589793 rad + pos: -38.5,-13.5 parent: 1 -- proto: Crematorium +- proto: ComputerShuttleCargo entities: - - uid: 1828 + - uid: 3618 components: - type: Transform - pos: 20.5,2.5 + pos: -39.5,-1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer + - uid: 3673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 1 +- proto: ComputerSolarControl entities: - - uid: 1065 + - uid: 907 components: - type: Transform - pos: -1.5,17.5 + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 parent: 1 -- proto: Crowbar +- proto: ComputerStationRecords entities: - - uid: 375 + - uid: 7963 components: - type: Transform - pos: 2.5126948,-11.447319 + pos: -53.5,58.5 parent: 1 - - uid: 2376 + - uid: 10899 components: - type: Transform - pos: 4.494688,39.490654 + rot: -1.5707963267948966 rad + pos: -11.5,61.5 parent: 1 - - uid: 5649 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 7956 components: - type: Transform - pos: -24.42766,29.496252 + rot: 1.5707963267948966 rad + pos: -48.5,57.5 parent: 1 -- proto: CryogenicSleepUnit - entities: - - uid: 3315 + - uid: 7979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,25.5 + pos: -54.5,58.5 parent: 1 - - uid: 3316 + - uid: 9304 components: - type: Transform - pos: -15.5,24.5 + pos: -19.5,65.5 parent: 1 - - uid: 4501 + - uid: 10888 components: - type: Transform - pos: -15.5,25.5 + rot: 1.5707963267948966 rad + pos: -21.5,60.5 parent: 1 - - uid: 8249 + - uid: 13086 components: - type: Transform - pos: -15.5,29.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - - uid: 13854 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + pos: -9.5,-5.5 parent: 1 -- proto: CryogenicSleepUnitSpawnerLateJoin +- proto: ComputerTelevision entities: - - uid: 2842 + - uid: 9686 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,27.5 + pos: 28.5,27.5 parent: 1 - - uid: 2845 +- proto: ContainmentFieldGenerator + entities: + - uid: 9985 components: - type: Transform - pos: -15.5,26.5 + rot: -1.5707963267948966 rad + pos: -82.5,18.5 parent: 1 - - uid: 8251 + - uid: 9986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,28.5 + rot: -1.5707963267948966 rad + pos: -81.5,18.5 parent: 1 - - uid: 13855 + - uid: 9987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,26.5 + rot: -1.5707963267948966 rad + pos: -80.5,18.5 parent: 1 - - uid: 13869 + - uid: 9988 components: - type: Transform - pos: -15.5,28.5 + rot: -1.5707963267948966 rad + pos: -79.5,18.5 parent: 1 -- proto: CryoPod - entities: - - uid: 1333 + - uid: 10644 components: - type: Transform - pos: 9.5,36.5 + pos: -93.5,21.5 parent: 1 -- proto: DefaultStationBeaconAME - entities: - - uid: 5683 + - uid: 10645 components: - type: Transform - pos: -64.5,20.5 + pos: -93.5,29.5 parent: 1 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 5583 + - uid: 10646 components: - type: Transform - pos: -14.5,-12.5 + pos: -101.5,29.5 parent: 1 -- proto: DefaultStationBeaconArmory - entities: - - uid: 3406 + - uid: 10647 components: - type: Transform - pos: -42.5,62.5 + pos: -101.5,21.5 parent: 1 -- proto: DefaultStationBeaconArrivals +- proto: ConveyorBelt entities: - - uid: 5590 + - uid: 6789 components: - type: Transform - pos: -57.5,-0.5 + pos: -39.5,-8.5 parent: 1 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 5694 + - uid: 6793 components: - type: Transform - pos: 3.5,-10.5 + pos: -39.5,-9.5 parent: 1 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 5695 + - uid: 7282 components: - type: Transform - pos: -81.5,35.5 + pos: -39.5,-7.5 parent: 1 -- proto: DefaultStationBeaconBar - entities: - - uid: 5696 + - uid: 13825 components: - type: Transform - pos: -35.5,37.5 + pos: -35.5,-14.5 parent: 1 -- proto: DefaultStationBeaconBotany - entities: - - uid: 5697 + - uid: 13826 components: - type: Transform - pos: -42.5,46.5 + pos: -35.5,-13.5 parent: 1 -- proto: DefaultStationBeaconBridge - entities: - - uid: 5714 + - uid: 13827 components: - type: Transform - pos: -16.5,61.5 + pos: -35.5,-12.5 parent: 1 -- proto: DefaultStationBeaconBrig - entities: - - uid: 5715 + - uid: 13828 components: - type: Transform - pos: -54.5,54.5 + pos: -35.5,-11.5 parent: 1 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 5767 + - uid: 13829 components: - type: Transform - pos: -6.5,60.5 + pos: -35.5,-10.5 parent: 1 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 5769 + - uid: 13830 components: - type: Transform - pos: -34.5,-7.5 + pos: -31.5,-14.5 parent: 1 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 7444 + - uid: 13831 components: - type: Transform - pos: -37.5,0.5 + pos: -31.5,-13.5 parent: 1 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 5720 + - uid: 13832 components: - type: Transform - pos: -72.5,16.5 + pos: -31.5,-12.5 parent: 1 -- proto: DefaultStationBeaconChapel - entities: - - uid: 7447 + - uid: 13833 components: - type: Transform - pos: 14.5,-2.5 + pos: -31.5,-11.5 parent: 1 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 7448 + - uid: 13834 components: - type: Transform - pos: -1.5,24.5 + pos: -31.5,-10.5 parent: 1 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 5747 + - uid: 14225 components: - type: Transform - pos: 15.5,29.5 + rot: 3.141592653589793 rad + pos: -73.5,53.5 parent: 1 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 7451 + - uid: 14226 components: - type: Transform - pos: -62.5,42.5 + rot: 3.141592653589793 rad + pos: -73.5,54.5 parent: 1 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 9066 + - uid: 14227 components: - type: Transform - pos: 8.5,34.5 + rot: 3.141592653589793 rad + pos: -73.5,55.5 parent: 1 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 8038 + - uid: 14228 components: - type: Transform - pos: -71.5,48.5 + rot: 3.141592653589793 rad + pos: -73.5,56.5 parent: 1 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 8286 + - uid: 14229 components: - type: Transform - pos: -71.5,55.5 + rot: 3.141592653589793 rad + pos: -73.5,57.5 parent: 1 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 9073 + - uid: 14230 components: - type: Transform - pos: -11.5,48.5 + rot: 3.141592653589793 rad + pos: -73.5,58.5 parent: 1 -- proto: DefaultStationBeaconHOPOffice +- proto: CowToolboxFilled entities: - - uid: 9077 + - uid: 14933 components: - type: Transform - pos: -21.5,38.5 + pos: -92.450035,40.48285 parent: 1 -- proto: DefaultStationBeaconHOSRoom +- proto: CrateAirlockKit entities: - - uid: 9086 + - uid: 9079 components: - type: Transform - pos: -59.5,63.5 + pos: 5.5,-19.5 parent: 1 -- proto: DefaultStationBeaconJanitorsCloset +- proto: CrateArtifactContainer entities: - - uid: 9203 + - uid: 349 components: - type: Transform - pos: -51.5,37.5 + pos: 5.5,-8.5 parent: 1 -- proto: DefaultStationBeaconKitchen + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: CrateEmptySpawner entities: - - uid: 9204 + - uid: 4730 components: - type: Transform - pos: -34.5,43.5 + pos: -25.5,43.5 parent: 1 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 9209 + - uid: 15654 components: - type: Transform - pos: -26.5,10.5 + pos: -39.5,-3.5 parent: 1 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 9212 + - uid: 15655 components: - type: Transform - pos: -2.5,32.5 + pos: -37.5,-5.5 parent: 1 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 9214 + - uid: 15656 components: - type: Transform - pos: 0.5,15.5 + pos: -41.5,-11.5 parent: 1 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 9217 + - uid: 15658 components: - type: Transform - pos: -51.5,86.5 + pos: -21.5,-0.5 parent: 1 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 9224 + - uid: 15659 components: - type: Transform - pos: -69.5,31.5 + pos: 22.5,-4.5 parent: 1 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 9246 + - uid: 15663 components: - type: Transform - pos: -44.5,-7.5 + pos: 2.5,46.5 parent: 1 -- proto: DefaultStationBeaconRND - entities: - - uid: 9247 + - uid: 15664 components: - type: Transform - pos: -6.5,0.5 + pos: -5.5,36.5 parent: 1 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 9248 + - uid: 15781 components: - type: Transform - pos: 1.5,1.5 + pos: -75.5,39.5 parent: 1 -- proto: DefaultStationBeaconSalvage +- proto: CrateEngineeringAMEJar entities: - - uid: 9249 + - uid: 9074 components: - type: Transform - pos: -41.5,-12.5 + pos: -76.5,22.5 parent: 1 -- proto: DefaultStationBeaconServerRoom +- proto: CrateEngineeringAMEShielding entities: - - uid: 9250 + - uid: 10657 components: - type: Transform - pos: -12.5,-8.5 + pos: -71.5,23.5 parent: 1 -- proto: DefaultStationBeaconSingularity + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 2.0141742 + Nitrogen: 7.577132 +- proto: CrateEngineeringCableBulk entities: - - uid: 9254 + - uid: 10145 components: - type: Transform - pos: -81.5,26.5 + pos: -69.5,25.5 parent: 1 -- proto: DefaultStationBeaconSolars - entities: - - uid: 5676 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 10723 components: - type: Transform - pos: 28.5,-7.5 + pos: -63.5,26.5 parent: 1 -- proto: DefaultStationBeaconTechVault + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: CrateFilledSpawner entities: - - uid: 9253 + - uid: 1469 components: - type: Transform - pos: -49.5,28.5 + pos: -44.5,17.5 parent: 1 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 9259 + - uid: 3222 components: - type: Transform - pos: -23.5,28.5 + pos: -7.5,12.5 parent: 1 -- proto: DefaultStationBeaconVault - entities: - - uid: 9261 + - uid: 3629 components: - type: Transform - pos: -21.5,56.5 + pos: -28.5,40.5 parent: 1 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 9262 + - uid: 5556 components: - type: Transform - pos: -46.5,60.5 + pos: -42.5,17.5 parent: 1 -- proto: Defibrillator - entities: - - uid: 15776 + - uid: 15652 components: - type: Transform - pos: 4.440308,37.660927 + pos: -43.5,-10.5 parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1962 + - uid: 15653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,27.5 + pos: -34.5,-5.5 parent: 1 - - uid: 2373 + - uid: 15657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,21.5 + pos: -26.5,-8.5 parent: 1 - - uid: 2374 + - uid: 15660 components: - type: Transform - pos: -4.5,35.5 + pos: 22.5,32.5 parent: 1 - - uid: 2375 +- proto: CrateFreezer + entities: + - uid: 2303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,32.5 + pos: -28.5,44.5 parent: 1 - - uid: 5011 + - uid: 4236 components: - type: Transform - pos: 4.5,7.5 + pos: -27.5,44.5 parent: 1 - - uid: 5013 +- proto: CrateLockBoxEngineering + entities: + - uid: 11972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,19.5 + pos: -65.5,30.5 parent: 1 - - uid: 5014 +- proto: CrateLockBoxMedical + entities: + - uid: 14187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,30.5 + pos: 11.5,22.5 parent: 1 - - uid: 5054 +- proto: CrateLockBoxScience + entities: + - uid: 38 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,16.5 + pos: -7.5,-7.5 parent: 1 - - uid: 15779 +- proto: CrateLockBoxSecurity + entities: + - uid: 14402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-8.5 + pos: -60.5,55.5 parent: 1 -- proto: DeployableBarrier +- proto: CrateLockBoxService entities: - - uid: 7962 + - uid: 14420 components: - type: Transform - pos: -65.5,52.5 + pos: -31.5,45.5 parent: 1 - - uid: 7972 + - uid: 14421 components: - type: Transform - pos: -65.5,53.5 + pos: -39.5,51.5 parent: 1 - - uid: 8019 +- proto: CrateMaterialGlass + entities: + - uid: 4734 components: - type: Transform - pos: -64.5,53.5 + pos: 12.5,-19.5 parent: 1 - - uid: 8020 + - uid: 9981 components: - type: Transform - pos: -64.5,52.5 + pos: -82.5,19.5 parent: 1 -- proto: DeskBell + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 15895 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 +- proto: CrateMaterialSteel entities: - - uid: 4988 + - uid: 9980 components: - type: Transform - pos: -47.244946,56.398804 + pos: -82.5,20.5 parent: 1 - - uid: 4989 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - uid: 15557 components: - type: Transform - pos: -45.550537,43.981125 + pos: 10.5,-20.5 parent: 1 - - uid: 4990 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1492 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - uid: 15558 components: - type: Transform - pos: -39.378662,43.49675 + pos: 9.5,-20.5 parent: 1 - - uid: 4991 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1492 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 +- proto: CrateMedicalSurgery + entities: + - uid: 15344 components: - type: Transform - pos: -36.738037,41.679382 + pos: 4.5,44.5 parent: 1 - - uid: 4992 +- proto: CrateNPCCow + entities: + - uid: 6919 + components: + - type: Transform + pos: -34.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + Oxygen: 11.733055 + Nitrogen: 44.138634 +- proto: CrateScience + entities: + - uid: 7398 components: - type: Transform - pos: -33.70732,38.156784 + pos: 11.5,50.5 parent: 1 - - uid: 4993 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7074 components: - type: Transform - pos: -24.25037,9.298397 + pos: -53.5,35.5 parent: 1 - - uid: 4994 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7565 + - 7136 + - 7134 + - 7133 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCart + entities: + - uid: 1405 components: - type: Transform - pos: -36.891582,2.4105499 + pos: 0.5,31.5 parent: 1 - - uid: 4995 + - uid: 2302 components: - type: Transform - pos: -7.7214417,3.4652395 + pos: -39.5,35.5 parent: 1 - - uid: 4997 + - uid: 2637 components: - type: Transform - pos: -10.2346735,11.798739 + pos: -20.5,53.5 parent: 1 - - uid: 4998 + - uid: 4072 components: - type: Transform - pos: -0.23595914,28.693384 + pos: -34.5,7.5 parent: 1 - - uid: 4999 + - uid: 4073 components: - type: Transform - pos: -1.0953342,32.52913 + pos: -61.5,31.5 parent: 1 - - uid: 5000 +- proto: CrateTrashCartJani + entities: + - uid: 5642 components: - type: Transform - pos: -19.786932,36.45546 + pos: -50.5,35.5 parent: 1 - - uid: 5001 +- proto: CrateWeaponSecure + entities: + - uid: 8369 components: - type: Transform - pos: -54.116062,17.501276 + pos: -41.5,64.5 parent: 1 - - uid: 5003 + - type: AccessReader + accessListsOriginal: + - - Armory + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9041 + - 8371 + - 8372 + - 8374 + - 8375 + - 8377 + - 9035 + - 9036 + - 9037 + - 9039 + - 9040 + - 9130 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14012 components: - type: Transform - pos: -0.74886024,7.6462955 + pos: -41.5,63.5 parent: 1 -- proto: DiseaseDiagnoser + - type: AccessReader + accessListsOriginal: + - - Armory + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14014 + - 14024 + - 14023 + - 14022 + - 14021 + - 14020 + - 14019 + - 14018 + - 14017 + - 14016 + - 14015 + - 14013 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonMime entities: - - uid: 2362 + - uid: 4216 components: - type: Transform - pos: 11.5,16.5 + pos: -40.465607,23.673563 parent: 1 -- proto: DisposalBend +- proto: Crematorium entities: - - uid: 8668 + - uid: 1828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,55.5 + pos: 20.5,2.5 parent: 1 - - uid: 8669 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: CrewMonitoringServer + entities: + - uid: 1065 components: - type: Transform - pos: -48.5,55.5 + pos: -1.5,17.5 parent: 1 - - uid: 8670 +- proto: Crowbar + entities: + - uid: 375 components: - type: Transform - pos: -50.5,65.5 + pos: 2.5126948,-11.447319 parent: 1 - - uid: 12920 + - uid: 2376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 4.494688,39.490654 parent: 1 - - uid: 12921 + - uid: 5649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 + pos: -24.42766,29.496252 parent: 1 - - uid: 12946 +- proto: CrowbarRed + entities: + - uid: 15388 components: - type: Transform - pos: 11.5,19.5 + pos: -46.69209,69.73778 parent: 1 - - uid: 12947 + - uid: 15389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: -46.62959,69.6284 parent: 1 - - uid: 13154 +- proto: CryogenicSleepUnit + entities: + - uid: 3315 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-2.5 - parent: 1 - - uid: 13155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 + pos: -17.5,25.5 parent: 1 - - uid: 13244 + - uid: 3316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-10.5 + pos: -15.5,24.5 parent: 1 - - uid: 13271 + - uid: 4501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,32.5 + pos: -15.5,25.5 parent: 1 - - uid: 13284 + - uid: 8249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,15.5 + pos: -15.5,29.5 parent: 1 - - uid: 13324 + - uid: 13854 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,29.5 + pos: -17.5,24.5 parent: 1 - - uid: 13325 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 2842 components: - type: Transform - pos: -2.5,30.5 + rot: 3.141592653589793 rad + pos: -17.5,27.5 parent: 1 - - uid: 13388 + - uid: 2845 components: - type: Transform - pos: -3.5,31.5 + pos: -15.5,26.5 parent: 1 - - uid: 13389 + - uid: 8251 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,31.5 + pos: -17.5,28.5 parent: 1 - - uid: 13390 + - uid: 13855 components: - type: Transform - pos: -6.5,32.5 + rot: 3.141592653589793 rad + pos: -17.5,26.5 parent: 1 - - uid: 13397 + - uid: 13869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,30.5 + pos: -15.5,28.5 parent: 1 - - uid: 13446 +- proto: CryoPod + entities: + - uid: 1333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,28.5 + pos: 9.5,36.5 parent: 1 - - uid: 13447 +- proto: DefaultStationBeaconAME + entities: + - uid: 5683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,28.5 + pos: -64.5,20.5 parent: 1 - - uid: 13473 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 5583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,42.5 + pos: -14.5,-12.5 parent: 1 - - uid: 13474 +- proto: DefaultStationBeaconArmory + entities: + - uid: 3406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,45.5 + pos: -42.5,62.5 parent: 1 - - uid: 13495 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 5590 components: - type: Transform - pos: -17.5,59.5 + pos: -57.5,-0.5 parent: 1 - - uid: 13496 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 5694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,55.5 + pos: 3.5,-10.5 parent: 1 - - uid: 13497 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 5695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,55.5 + pos: -81.5,35.5 parent: 1 - - uid: 13516 +- proto: DefaultStationBeaconBar + entities: + - uid: 5696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,20.5 + pos: -35.5,37.5 parent: 1 - - uid: 13531 +- proto: DefaultStationBeaconBotany + entities: + - uid: 5697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,40.5 + pos: -42.5,46.5 parent: 1 - - uid: 13532 +- proto: DefaultStationBeaconBridge + entities: + - uid: 5714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,40.5 + pos: -16.5,61.5 parent: 1 - - uid: 13535 +- proto: DefaultStationBeaconBrig + entities: + - uid: 5715 components: - type: Transform - pos: -37.5,42.5 + pos: -54.5,54.5 parent: 1 - - uid: 13538 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 5767 components: - type: Transform - pos: -56.5,33.5 + pos: -6.5,60.5 parent: 1 - - uid: 13542 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 5769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,46.5 + pos: -34.5,-7.5 parent: 1 - - uid: 13555 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 7444 components: - type: Transform - pos: -57.5,47.5 + pos: -37.5,0.5 parent: 1 - - uid: 13557 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 5720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,47.5 + pos: -72.5,16.5 parent: 1 - - uid: 13558 +- proto: DefaultStationBeaconChapel + entities: + - uid: 7447 components: - type: Transform - pos: -66.5,50.5 + pos: 14.5,-2.5 parent: 1 - - uid: 13559 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 7448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,50.5 + pos: -1.5,24.5 parent: 1 - - uid: 13561 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 5747 components: - type: Transform - pos: -67.5,52.5 + pos: 15.5,29.5 parent: 1 - - uid: 13562 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 7451 components: - type: Transform - pos: -70.5,54.5 + pos: -62.5,42.5 parent: 1 - - uid: 13563 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 9066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,52.5 + pos: 8.5,34.5 parent: 1 - - uid: 13592 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 8038 components: - type: Transform - pos: -64.5,33.5 + pos: -71.5,48.5 parent: 1 - - uid: 13593 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 8286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,28.5 + pos: -71.5,55.5 parent: 1 - - uid: 13594 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 9073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,33.5 + pos: -11.5,48.5 parent: 1 -- proto: DisposalJunction +- proto: DefaultStationBeaconHOPOffice entities: - - uid: 8673 + - uid: 9077 components: - type: Transform - pos: -50.5,58.5 + pos: -21.5,38.5 parent: 1 - - uid: 12951 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,19.5 + pos: -59.5,63.5 parent: 1 - - uid: 13156 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,2.5 + pos: -51.5,37.5 parent: 1 - - uid: 13187 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 9204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: -34.5,43.5 parent: 1 - - uid: 13204 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 9209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,5.5 + pos: -26.5,10.5 parent: 1 - - uid: 13245 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 + pos: -2.5,32.5 parent: 1 - - uid: 13283 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,46.5 + pos: 0.5,15.5 parent: 1 - - uid: 13287 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 9217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,15.5 + pos: -51.5,86.5 parent: 1 - - uid: 13296 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,37.5 + pos: -69.5,31.5 parent: 1 - - uid: 13326 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,30.5 + pos: -44.5,-7.5 parent: 1 - - uid: 13425 +- proto: DefaultStationBeaconRND + entities: + - uid: 9247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,32.5 + pos: -6.5,0.5 parent: 1 - - uid: 13455 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 9248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,32.5 + pos: 1.5,1.5 parent: 1 - - uid: 13476 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9249 components: - type: Transform - pos: -16.5,45.5 + pos: -41.5,-12.5 parent: 1 - - uid: 13530 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 9250 components: - type: Transform - pos: -38.5,39.5 + pos: -12.5,-8.5 parent: 1 - - uid: 13539 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 9254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,33.5 + pos: -81.5,26.5 parent: 1 - - uid: 13545 +- proto: DefaultStationBeaconSolars + entities: + - uid: 5676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,46.5 + pos: 28.5,-7.5 parent: 1 -- proto: DisposalJunctionFlipped +- proto: DefaultStationBeaconTechVault entities: - - uid: 12953 + - uid: 9253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,23.5 + pos: -49.5,28.5 parent: 1 - - uid: 12954 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,29.5 + pos: -23.5,28.5 parent: 1 - - uid: 13108 +- proto: DefaultStationBeaconVault + entities: + - uid: 9261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 + pos: -21.5,56.5 parent: 1 - - uid: 13132 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,5.5 + pos: -46.5,60.5 parent: 1 - - uid: 13157 +- proto: Defibrillator + entities: + - uid: 15776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 + pos: 4.440308,37.660927 parent: 1 - - uid: 13288 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 + rot: 3.141592653589793 rad + pos: 7.5,27.5 parent: 1 - - uid: 13396 + - type: Fixtures + fixtures: {} + - uid: 2373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 + rot: 3.141592653589793 rad + pos: 10.5,21.5 parent: 1 - - uid: 13443 + - type: Fixtures + fixtures: {} + - uid: 2374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,32.5 + pos: -4.5,35.5 parent: 1 - - uid: 13454 + - type: Fixtures + fixtures: {} + - uid: 2375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 + rot: 3.141592653589793 rad + pos: 7.5,32.5 parent: 1 - - uid: 13517 + - type: Fixtures + fixtures: {} + - uid: 5011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,32.5 + pos: 4.5,7.5 parent: 1 - - uid: 13540 + - type: Fixtures + fixtures: {} + - uid: 5013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,32.5 + rot: 1.5707963267948966 rad + pos: -39.5,19.5 parent: 1 - - uid: 13547 + - type: Fixtures + fixtures: {} + - uid: 5014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,46.5 + rot: 3.141592653589793 rad + pos: -49.5,30.5 parent: 1 -- proto: DisposalPipe - entities: - - uid: 582 + - type: Fixtures + fixtures: {} + - uid: 5054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 + rot: 1.5707963267948966 rad + pos: 5.5,16.5 parent: 1 - - uid: 1591 + - type: Fixtures + fixtures: {} + - uid: 9149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-11.5 + pos: -53.5,72.5 parent: 1 - - uid: 1592 + - type: Fixtures + fixtures: {} + - uid: 15779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-11.5 + pos: -55.5,-8.5 parent: 1 - - uid: 1593 + - type: Fixtures + fixtures: {} +- proto: DeployableBarrier + entities: + - uid: 7962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 + pos: -65.5,52.5 parent: 1 - - uid: 5318 + - uid: 7972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,5.5 + pos: -65.5,53.5 parent: 1 - - uid: 5576 + - uid: 8019 components: - type: Transform - pos: -50.5,59.5 + pos: -64.5,53.5 parent: 1 - - uid: 8653 + - uid: 8020 components: - type: Transform - pos: -50.5,57.5 + pos: -64.5,52.5 parent: 1 - - uid: 8654 + - uid: 14118 components: - type: Transform - pos: -50.5,56.5 + pos: -45.5,65.5 parent: 1 - - uid: 8655 + - type: AccessReader + accessListsOriginal: + - - Security +- proto: DeskBell + entities: + - uid: 4988 components: - type: Transform - pos: -50.5,60.5 + pos: -47.244946,56.398804 parent: 1 - - uid: 8656 + - uid: 4989 components: - type: Transform - pos: -50.5,61.5 + pos: -45.550537,43.981125 parent: 1 - - uid: 8657 + - uid: 4990 components: - type: Transform - pos: -50.5,62.5 + pos: -39.378662,43.49675 parent: 1 - - uid: 8658 + - uid: 4991 components: - type: Transform - pos: -50.5,63.5 + pos: -36.738037,41.679382 parent: 1 - - uid: 8659 + - uid: 4992 components: - type: Transform - pos: -50.5,64.5 + pos: -33.70732,38.156784 parent: 1 - - uid: 8660 + - uid: 4993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,55.5 + pos: -24.25037,9.298397 parent: 1 - - uid: 8661 + - uid: 4994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,54.5 + pos: -36.891582,2.4105499 parent: 1 - - uid: 8662 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,53.5 + pos: -7.7214417,3.4652395 parent: 1 - - uid: 8663 + - uid: 4997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,52.5 + pos: -10.2346735,11.798739 parent: 1 - - uid: 8664 + - uid: 4998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,51.5 + pos: -0.23595914,28.693384 parent: 1 - - uid: 8665 + - uid: 4999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,50.5 + pos: -1.0953342,32.52913 parent: 1 - - uid: 8666 + - uid: 5000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,49.5 + pos: -19.786932,36.45546 parent: 1 - - uid: 8667 + - uid: 5001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,48.5 + pos: -54.116062,17.501276 parent: 1 - - uid: 11148 + - uid: 5003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,46.5 + pos: -0.74886024,7.6462955 parent: 1 - - uid: 12922 +- proto: DiseaseDiagnoser + entities: + - uid: 2362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,15.5 + pos: 11.5,16.5 parent: 1 - - uid: 12923 +- proto: DisposalBend + entities: + - uid: 8668 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,16.5 + pos: -50.5,55.5 parent: 1 - - uid: 12924 + - uid: 8669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,17.5 + pos: -48.5,55.5 parent: 1 - - uid: 12925 + - uid: 8670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 + pos: -50.5,65.5 parent: 1 - - uid: 12926 + - uid: 12365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 + rot: 1.5707963267948966 rad + pos: -20.5,45.5 parent: 1 - - uid: 12927 + - uid: 12920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 + rot: 1.5707963267948966 rad + pos: 0.5,23.5 parent: 1 - - uid: 12928 + - uid: 12921 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,22.5 + pos: 3.5,14.5 parent: 1 - - uid: 12929 + - uid: 12946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,24.5 + pos: 11.5,19.5 parent: 1 - - uid: 12930 + - uid: 12947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,25.5 + rot: -1.5707963267948966 rad + pos: 5.5,29.5 parent: 1 - - uid: 12931 + - uid: 13154 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,26.5 + pos: -18.5,-2.5 parent: 1 - - uid: 12932 + - uid: 13155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,27.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 1 - - uid: 12933 + - uid: 13244 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,28.5 + pos: -57.5,-10.5 parent: 1 - - uid: 12934 + - uid: 13271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,29.5 + rot: 3.141592653589793 rad + pos: -56.5,32.5 parent: 1 - - uid: 12935 + - uid: 13284 components: - type: Transform - pos: 11.5,15.5 + rot: -1.5707963267948966 rad + pos: -55.5,15.5 parent: 1 - - uid: 12936 + - uid: 13324 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: -2.5,29.5 parent: 1 - - uid: 12937 + - uid: 13325 components: - type: Transform - pos: 11.5,17.5 + pos: -2.5,30.5 parent: 1 - - uid: 12938 + - uid: 13388 components: - type: Transform - pos: 11.5,18.5 + pos: -3.5,31.5 parent: 1 - - uid: 12939 + - uid: 13389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,31.5 parent: 1 - - uid: 12940 + - uid: 13390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,19.5 + pos: -6.5,32.5 parent: 1 - - uid: 12941 + - uid: 13397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,19.5 + pos: -8.5,30.5 parent: 1 - - uid: 12942 + - uid: 13446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 + rot: 3.141592653589793 rad + pos: -26.5,28.5 parent: 1 - - uid: 12943 + - uid: 13447 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,19.5 + pos: -22.5,28.5 parent: 1 - - uid: 12944 + - uid: 13473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 + rot: 3.141592653589793 rad + pos: -20.5,42.5 parent: 1 - - uid: 12945 + - uid: 13495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: -17.5,59.5 parent: 1 - - uid: 12948 + - uid: 13496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,29.5 + rot: 3.141592653589793 rad + pos: -17.5,55.5 parent: 1 - - uid: 12949 + - uid: 13497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,23.5 + pos: -12.5,55.5 parent: 1 - - uid: 12950 + - uid: 13516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,23.5 + pos: -37.5,20.5 parent: 1 - - uid: 13109 + - uid: 13531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,5.5 + rot: 1.5707963267948966 rad + pos: -38.5,40.5 parent: 1 - - uid: 13110 + - uid: 13532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,5.5 + pos: -37.5,40.5 parent: 1 - - uid: 13111 + - uid: 13535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,5.5 + pos: -37.5,42.5 parent: 1 - - uid: 13112 + - uid: 13538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,5.5 + pos: -56.5,33.5 parent: 1 - - uid: 13113 + - uid: 13542 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,5.5 + pos: -44.5,46.5 parent: 1 - - uid: 13114 + - uid: 13555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,5.5 + pos: -57.5,47.5 parent: 1 - - uid: 13115 + - uid: 13557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,5.5 + rot: 3.141592653589793 rad + pos: -66.5,47.5 parent: 1 - - uid: 13116 + - uid: 13558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,5.5 + pos: -66.5,50.5 parent: 1 - - uid: 13117 + - uid: 13559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: -67.5,50.5 parent: 1 - - uid: 13118 + - uid: 13561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: -67.5,52.5 parent: 1 - - uid: 13119 + - uid: 13562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 + pos: -70.5,54.5 parent: 1 - - uid: 13120 + - uid: 13563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,5.5 + rot: 3.141592653589793 rad + pos: -70.5,52.5 parent: 1 - - uid: 13121 + - uid: 13592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,5.5 + pos: -64.5,33.5 parent: 1 - - uid: 13122 + - uid: 13593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,5.5 + rot: 3.141592653589793 rad + pos: -64.5,28.5 parent: 1 - - uid: 13123 + - uid: 13594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,5.5 + rot: 1.5707963267948966 rad + pos: -73.5,33.5 parent: 1 - - uid: 13124 + - uid: 15131 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-2.5 + pos: -25.5,51.5 parent: 1 - - uid: 13125 +- proto: DisposalJunction + entities: + - uid: 8673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-1.5 + pos: -50.5,58.5 parent: 1 - - uid: 13126 + - uid: 12667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 + pos: -16.5,51.5 parent: 1 - - uid: 13127 + - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,0.5 + pos: 3.5,19.5 parent: 1 - - uid: 13128 + - uid: 13156 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,1.5 + pos: -7.5,2.5 parent: 1 - - uid: 13129 + - uid: 13187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 1 - - uid: 13130 + - uid: 13204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,3.5 + rot: -1.5707963267948966 rad + pos: -35.5,5.5 parent: 1 - - uid: 13131 + - uid: 13245 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - - uid: 13134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 + pos: -57.5,5.5 parent: 1 - - uid: 13135 + - uid: 13283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 + rot: 3.141592653589793 rad + pos: -57.5,46.5 parent: 1 - - uid: 13136 + - uid: 13287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,5.5 + rot: 3.141592653589793 rad + pos: -57.5,15.5 parent: 1 - - uid: 13137 + - uid: 13296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 + rot: 3.141592653589793 rad + pos: -57.5,37.5 parent: 1 - - uid: 13138 + - uid: 13326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 + rot: 3.141592653589793 rad + pos: -3.5,30.5 parent: 1 - - uid: 13139 + - uid: 13425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 + rot: -1.5707963267948966 rad + pos: -38.5,32.5 parent: 1 - - uid: 13140 + - uid: 13455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 + rot: -1.5707963267948966 rad + pos: -16.5,32.5 parent: 1 - - uid: 13141 + - uid: 13476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,5.5 + pos: -16.5,45.5 parent: 1 - - uid: 13142 + - uid: 13530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 + pos: -38.5,39.5 parent: 1 - - uid: 13143 + - uid: 13539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + rot: 3.141592653589793 rad + pos: -57.5,33.5 parent: 1 - - uid: 13144 + - uid: 13545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + rot: -1.5707963267948966 rad + pos: -48.5,46.5 parent: 1 - - uid: 13145 +- proto: DisposalJunctionFlipped + entities: + - uid: 12953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,23.5 parent: 1 - - uid: 13146 + - uid: 12954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + rot: -1.5707963267948966 rad + pos: 3.5,29.5 parent: 1 - - uid: 13147 + - uid: 13108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,5.5 parent: 1 - - uid: 13148 + - uid: 13132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 parent: 1 - - uid: 13149 + - uid: 13157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 + rot: -1.5707963267948966 rad + pos: -7.5,5.5 parent: 1 - - uid: 13150 + - uid: 13288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 + rot: -1.5707963267948966 rad + pos: -49.5,5.5 parent: 1 - - uid: 13151 + - uid: 13396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 + rot: -1.5707963267948966 rad + pos: -8.5,32.5 parent: 1 - - uid: 13158 + - uid: 13443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-2.5 + pos: -45.5,32.5 parent: 1 - - uid: 13159 + - uid: 13454 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-2.5 + pos: -22.5,32.5 parent: 1 - - uid: 13160 + - uid: 13517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-2.5 + pos: -37.5,32.5 parent: 1 - - uid: 13161 + - uid: 13540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 + rot: 3.141592653589793 rad + pos: -57.5,32.5 parent: 1 - - uid: 13162 + - uid: 13547 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-2.5 + pos: -49.5,46.5 parent: 1 - - uid: 13163 +- proto: DisposalPipe + entities: + - uid: 582 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + pos: 18.5,-11.5 parent: 1 - - uid: 13164 + - uid: 1248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 + pos: -57.5,11.5 parent: 1 - - uid: 13165 + - uid: 1591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-2.5 + pos: 17.5,-11.5 parent: 1 - - uid: 13166 + - uid: 1592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-2.5 + pos: 16.5,-11.5 parent: 1 - - uid: 13167 + - uid: 1593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-2.5 + pos: 15.5,-11.5 parent: 1 - - uid: 13168 + - uid: 1779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-1.5 + rot: 1.5707963267948966 rad + pos: -68.5,52.5 parent: 1 - - uid: 13169 + - uid: 1797 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-0.5 + pos: -73.5,24.5 parent: 1 - - uid: 13170 + - uid: 5318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,0.5 + rot: 1.5707963267948966 rad + pos: -47.5,5.5 parent: 1 - - uid: 13171 + - uid: 5576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,1.5 + pos: -50.5,59.5 parent: 1 - - uid: 13172 + - uid: 8653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 + pos: -50.5,57.5 parent: 1 - - uid: 13173 + - uid: 8654 components: - type: Transform - pos: -7.5,3.5 + pos: -50.5,56.5 parent: 1 - - uid: 13174 + - uid: 8655 components: - type: Transform - pos: -7.5,4.5 + pos: -50.5,60.5 parent: 1 - - uid: 13175 + - uid: 8656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 + pos: -50.5,61.5 parent: 1 - - uid: 13176 + - uid: 8657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,5.5 + pos: -50.5,62.5 parent: 1 - - uid: 13177 + - uid: 8658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,5.5 + pos: -50.5,63.5 parent: 1 - - uid: 13178 + - uid: 8659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,5.5 + pos: -50.5,64.5 parent: 1 - - uid: 13179 + - uid: 8660 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,5.5 + pos: -49.5,55.5 parent: 1 - - uid: 13180 + - uid: 8661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,54.5 parent: 1 - - uid: 13181 + - uid: 8662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,53.5 parent: 1 - - uid: 13182 + - uid: 8663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,52.5 parent: 1 - - uid: 13183 + - uid: 8664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,51.5 parent: 1 - - uid: 13184 + - uid: 8665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,50.5 parent: 1 - - uid: 13185 + - uid: 8666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,49.5 parent: 1 - - uid: 13186 + - uid: 8667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,48.5 parent: 1 - - uid: 13189 + - uid: 11148 components: - type: Transform - pos: -20.5,6.5 + rot: -1.5707963267948966 rad + pos: -47.5,46.5 parent: 1 - - uid: 13190 + - uid: 11813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 parent: 1 - - uid: 13191 + - uid: 12111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 + rot: 1.5707963267948966 rad + pos: -69.5,52.5 parent: 1 - - uid: 13192 + - uid: 12364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,5.5 + rot: 1.5707963267948966 rad + pos: -17.5,45.5 parent: 1 - - uid: 13193 + - uid: 12922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,15.5 parent: 1 - - uid: 13194 + - uid: 12923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,16.5 parent: 1 - - uid: 13195 + - uid: 12924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,17.5 parent: 1 - - uid: 13196 + - uid: 12925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,18.5 parent: 1 - - uid: 13197 + - uid: 12926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,20.5 parent: 1 - - uid: 13198 + - uid: 12927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 1 - - uid: 13199 + - uid: 12928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,22.5 parent: 1 - - uid: 13200 + - uid: 12929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 1 - - uid: 13201 + - uid: 12930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,25.5 parent: 1 - - uid: 13202 + - uid: 12931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,26.5 parent: 1 - - uid: 13203 + - uid: 12932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,27.5 parent: 1 - - uid: 13205 + - uid: 12933 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,6.5 + pos: 3.5,28.5 parent: 1 - - uid: 13207 + - uid: 12934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 + rot: 1.5707963267948966 rad + pos: 4.5,29.5 parent: 1 - - uid: 13208 + - uid: 12935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,5.5 + pos: 11.5,15.5 parent: 1 - - uid: 13209 + - uid: 12936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,5.5 + pos: 11.5,16.5 parent: 1 - - uid: 13210 + - uid: 12937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,5.5 + pos: 11.5,17.5 parent: 1 - - uid: 13211 + - uid: 12938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 + pos: 11.5,18.5 parent: 1 - - uid: 13212 + - uid: 12939 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,5.5 + pos: 10.5,19.5 parent: 1 - - uid: 13213 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,5.5 + pos: 9.5,19.5 parent: 1 - - uid: 13214 + - uid: 12941 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,5.5 + pos: 8.5,19.5 parent: 1 - - uid: 13215 + - uid: 12942 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,5.5 + pos: 7.5,19.5 parent: 1 - - uid: 13216 + - uid: 12943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,5.5 + pos: 6.5,19.5 parent: 1 - - uid: 13217 + - uid: 12944 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,5.5 + pos: 5.5,19.5 parent: 1 - - uid: 13219 + - uid: 12945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,5.5 + pos: 4.5,19.5 parent: 1 - - uid: 13220 + - uid: 12948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,5.5 + pos: 2.5,29.5 parent: 1 - - uid: 13222 + - uid: 12949 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,5.5 + pos: 2.5,23.5 parent: 1 - - uid: 13223 + - uid: 12950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,5.5 + pos: 1.5,23.5 parent: 1 - - uid: 13224 + - uid: 13109 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,5.5 + pos: 27.5,5.5 parent: 1 - - uid: 13225 + - uid: 13110 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,5.5 + pos: 26.5,5.5 parent: 1 - - uid: 13226 + - uid: 13111 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,5.5 + pos: 25.5,5.5 parent: 1 - - uid: 13227 + - uid: 13112 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,5.5 + pos: 24.5,5.5 parent: 1 - - uid: 13228 + - uid: 13113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-9.5 + rot: -1.5707963267948966 rad + pos: 22.5,5.5 parent: 1 - - uid: 13229 + - uid: 13114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-8.5 + rot: -1.5707963267948966 rad + pos: 21.5,5.5 parent: 1 - - uid: 13230 + - uid: 13115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-7.5 + rot: -1.5707963267948966 rad + pos: 20.5,5.5 parent: 1 - - uid: 13231 + - uid: 13116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-6.5 + rot: -1.5707963267948966 rad + pos: 19.5,5.5 parent: 1 - - uid: 13232 + - uid: 13117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-5.5 + rot: -1.5707963267948966 rad + pos: 18.5,5.5 parent: 1 - - uid: 13233 + - uid: 13118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-4.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 1 - - uid: 13234 + - uid: 13119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-3.5 + rot: -1.5707963267948966 rad + pos: 16.5,5.5 parent: 1 - - uid: 13235 + - uid: 13120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-2.5 + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 1 - - uid: 13236 + - uid: 13121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-1.5 + rot: -1.5707963267948966 rad + pos: 14.5,5.5 parent: 1 - - uid: 13237 + - uid: 13122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 + rot: -1.5707963267948966 rad + pos: 13.5,5.5 parent: 1 - - uid: 13238 + - uid: 13123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,0.5 + rot: -1.5707963267948966 rad + pos: 12.5,5.5 parent: 1 - - uid: 13239 + - uid: 13124 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,1.5 + pos: 11.5,-2.5 parent: 1 - - uid: 13240 + - uid: 13125 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,2.5 + pos: 11.5,-1.5 parent: 1 - - uid: 13241 + - uid: 13126 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,3.5 + pos: 11.5,-0.5 parent: 1 - - uid: 13242 + - uid: 13127 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,4.5 + pos: 11.5,0.5 parent: 1 - - uid: 13246 + - uid: 13128 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,6.5 + pos: 11.5,1.5 parent: 1 - - uid: 13247 + - uid: 13129 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,7.5 + pos: 11.5,2.5 parent: 1 - - uid: 13248 + - uid: 13130 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,8.5 + pos: 11.5,3.5 parent: 1 - - uid: 13249 + - uid: 13131 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,9.5 + pos: 11.5,4.5 parent: 1 - - uid: 13250 + - uid: 13135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 13251 + - uid: 13136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,11.5 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 13252 + - uid: 13137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,12.5 + rot: 1.5707963267948966 rad + pos: 7.5,5.5 parent: 1 - - uid: 13253 + - uid: 13138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,13.5 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 parent: 1 - - uid: 13254 + - uid: 13139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 1 - - uid: 13255 + - uid: 13140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,16.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - - uid: 13256 + - uid: 13141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,17.5 + rot: 1.5707963267948966 rad + pos: 3.5,5.5 parent: 1 - - uid: 13257 + - uid: 13142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,18.5 + rot: 1.5707963267948966 rad + pos: 2.5,5.5 parent: 1 - - uid: 13258 + - uid: 13143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,19.5 + rot: 1.5707963267948966 rad + pos: 1.5,5.5 parent: 1 - - uid: 13259 + - uid: 13144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,20.5 + rot: 1.5707963267948966 rad + pos: 0.5,5.5 parent: 1 - - uid: 13260 + - uid: 13145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,21.5 + rot: 1.5707963267948966 rad + pos: -0.5,5.5 parent: 1 - - uid: 13261 + - uid: 13146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,22.5 + rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - - uid: 13262 + - uid: 13147 components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,23.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - - uid: 13263 + - uid: 13148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,24.5 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 13264 + - uid: 13149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,25.5 + rot: 1.5707963267948966 rad + pos: -4.5,5.5 parent: 1 - - uid: 13265 + - uid: 13150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,26.5 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 parent: 1 - - uid: 13266 + - uid: 13151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,27.5 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 parent: 1 - - uid: 13267 + - uid: 13158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,28.5 + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 parent: 1 - - uid: 13268 + - uid: 13159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,29.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 1 - - uid: 13269 + - uid: 13160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,30.5 + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 parent: 1 - - uid: 13270 + - uid: 13161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,31.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 1 - - uid: 13272 + - uid: 13162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,34.5 + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 parent: 1 - - uid: 13273 + - uid: 13163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,35.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 13274 + - uid: 13164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,36.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 1 - - uid: 13275 + - uid: 13165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,38.5 + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 parent: 1 - - uid: 13276 + - uid: 13166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,39.5 + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 parent: 1 - - uid: 13277 + - uid: 13167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,40.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 1 - - uid: 13278 + - uid: 13168 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,41.5 + pos: -7.5,-1.5 parent: 1 - - uid: 13279 + - uid: 13169 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,42.5 + pos: -7.5,-0.5 parent: 1 - - uid: 13280 + - uid: 13170 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,43.5 + pos: -7.5,0.5 parent: 1 - - uid: 13281 + - uid: 13171 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,44.5 + pos: -7.5,1.5 parent: 1 - - uid: 13282 + - uid: 13172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,45.5 + rot: 1.5707963267948966 rad + pos: -6.5,2.5 parent: 1 - - uid: 13286 + - uid: 13173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,15.5 + pos: -7.5,3.5 parent: 1 - - uid: 13290 + - uid: 13174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,4.5 + pos: -7.5,4.5 parent: 1 - - uid: 13295 + - uid: 13175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,37.5 + pos: -8.5,5.5 parent: 1 - - uid: 13328 + - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,29.5 + rot: -1.5707963267948966 rad + pos: -9.5,5.5 parent: 1 - - uid: 13329 + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + rot: -1.5707963267948966 rad + pos: -10.5,5.5 parent: 1 - - uid: 13330 + - uid: 13178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,29.5 + rot: -1.5707963267948966 rad + pos: -11.5,5.5 parent: 1 - - uid: 13374 + - uid: 13179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,47.5 + rot: -1.5707963267948966 rad + pos: -12.5,5.5 parent: 1 - - uid: 13375 + - uid: 13180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,47.5 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 parent: 1 - - uid: 13376 + - uid: 13181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,47.5 + rot: -1.5707963267948966 rad + pos: -14.5,5.5 parent: 1 - - uid: 13377 + - uid: 13182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,47.5 + rot: -1.5707963267948966 rad + pos: -15.5,5.5 parent: 1 - - uid: 13378 + - uid: 13183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,47.5 + rot: -1.5707963267948966 rad + pos: -16.5,5.5 parent: 1 - - uid: 13379 + - uid: 13184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,47.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 1 - - uid: 13380 + - uid: 13185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,47.5 + rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 1 - - uid: 13381 + - uid: 13186 components: - type: Transform - pos: -66.5,48.5 + rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 1 - - uid: 13382 + - uid: 13189 components: - type: Transform - pos: -66.5,49.5 + pos: -20.5,6.5 parent: 1 - - uid: 13383 + - uid: 13190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,51.5 + rot: -1.5707963267948966 rad + pos: -21.5,5.5 parent: 1 - - uid: 13384 + - uid: 13191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,52.5 + rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 1 - - uid: 13385 + - uid: 13192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,52.5 + rot: -1.5707963267948966 rad + pos: -23.5,5.5 parent: 1 - - uid: 13386 + - uid: 13193 components: - type: Transform - pos: -70.5,53.5 + rot: -1.5707963267948966 rad + pos: -24.5,5.5 parent: 1 - - uid: 13387 + - uid: 13194 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,54.5 + pos: -25.5,5.5 parent: 1 - - uid: 13391 + - uid: 13195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,31.5 + pos: -26.5,5.5 parent: 1 - - uid: 13392 + - uid: 13196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,31.5 + pos: -27.5,5.5 parent: 1 - - uid: 13393 + - uid: 13197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,32.5 + pos: -28.5,5.5 parent: 1 - - uid: 13394 + - uid: 13198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,30.5 + pos: -29.5,5.5 parent: 1 - - uid: 13395 + - uid: 13199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,31.5 + rot: -1.5707963267948966 rad + pos: -30.5,5.5 parent: 1 - - uid: 13399 + - uid: 13200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,32.5 + rot: -1.5707963267948966 rad + pos: -31.5,5.5 parent: 1 - - uid: 13400 + - uid: 13201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,32.5 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 parent: 1 - - uid: 13401 + - uid: 13202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,32.5 + rot: -1.5707963267948966 rad + pos: -33.5,5.5 parent: 1 - - uid: 13402 + - uid: 13203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 parent: 1 - - uid: 13403 + - uid: 13205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 + rot: 3.141592653589793 rad + pos: -35.5,6.5 parent: 1 - - uid: 13404 + - uid: 13207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,32.5 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 parent: 1 - - uid: 13405 + - uid: 13208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,32.5 + rot: -1.5707963267948966 rad + pos: -37.5,5.5 parent: 1 - - uid: 13406 + - uid: 13209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,32.5 + rot: -1.5707963267948966 rad + pos: -38.5,5.5 parent: 1 - - uid: 13407 + - uid: 13210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 + rot: -1.5707963267948966 rad + pos: -39.5,5.5 parent: 1 - - uid: 13408 + - uid: 13211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,32.5 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 parent: 1 - - uid: 13409 + - uid: 13212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,32.5 + rot: -1.5707963267948966 rad + pos: -41.5,5.5 parent: 1 - - uid: 13410 + - uid: 13213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,32.5 + rot: -1.5707963267948966 rad + pos: -42.5,5.5 parent: 1 - - uid: 13411 + - uid: 13214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,32.5 + rot: -1.5707963267948966 rad + pos: -43.5,5.5 parent: 1 - - uid: 13412 + - uid: 13215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,32.5 + rot: -1.5707963267948966 rad + pos: -44.5,5.5 parent: 1 - - uid: 13413 + - uid: 13216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,32.5 + rot: -1.5707963267948966 rad + pos: -45.5,5.5 parent: 1 - - uid: 13414 + - uid: 13217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,32.5 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 parent: 1 - - uid: 13415 + - uid: 13219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,32.5 + rot: -1.5707963267948966 rad + pos: -48.5,5.5 parent: 1 - - uid: 13416 + - uid: 13220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,32.5 + rot: -1.5707963267948966 rad + pos: -50.5,5.5 parent: 1 - - uid: 13417 + - uid: 13222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 + rot: -1.5707963267948966 rad + pos: -51.5,5.5 parent: 1 - - uid: 13418 + - uid: 13223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,32.5 + rot: -1.5707963267948966 rad + pos: -52.5,5.5 parent: 1 - - uid: 13419 + - uid: 13224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,32.5 + rot: -1.5707963267948966 rad + pos: -53.5,5.5 parent: 1 - - uid: 13420 + - uid: 13225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,32.5 + rot: -1.5707963267948966 rad + pos: -54.5,5.5 parent: 1 - - uid: 13421 + - uid: 13226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,32.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 1 - - uid: 13422 + - uid: 13227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,32.5 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 parent: 1 - - uid: 13423 + - uid: 13228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-9.5 parent: 1 - - uid: 13424 + - uid: 13229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-8.5 parent: 1 - - uid: 13426 + - uid: 13230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-7.5 parent: 1 - - uid: 13427 + - uid: 13231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-6.5 parent: 1 - - uid: 13428 + - uid: 13232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-5.5 parent: 1 - - uid: 13429 + - uid: 13233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-4.5 parent: 1 - - uid: 13430 + - uid: 13234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-3.5 parent: 1 - - uid: 13431 + - uid: 13235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-2.5 parent: 1 - - uid: 13432 + - uid: 13236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-1.5 parent: 1 - - uid: 13433 + - uid: 13237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,-0.5 parent: 1 - - uid: 13434 + - uid: 13238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 1 - - uid: 13435 + - uid: 13239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,1.5 parent: 1 - - uid: 13436 + - uid: 13240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,2.5 parent: 1 - - uid: 13437 + - uid: 13241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,3.5 parent: 1 - - uid: 13438 + - uid: 13242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,4.5 parent: 1 - - uid: 13439 + - uid: 13246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,6.5 parent: 1 - - uid: 13440 + - uid: 13247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,7.5 parent: 1 - - uid: 13441 + - uid: 13248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,32.5 + rot: 3.141592653589793 rad + pos: -57.5,8.5 parent: 1 - - uid: 13442 + - uid: 13249 components: - type: Transform - pos: -45.5,31.5 + rot: 3.141592653589793 rad + pos: -57.5,9.5 parent: 1 - - uid: 13448 + - uid: 13250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,28.5 + rot: 3.141592653589793 rad + pos: -57.5,10.5 parent: 1 - - uid: 13449 + - uid: 13252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,28.5 + rot: 3.141592653589793 rad + pos: -57.5,12.5 parent: 1 - - uid: 13450 + - uid: 13253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,28.5 + rot: 3.141592653589793 rad + pos: -57.5,13.5 parent: 1 - - uid: 13451 + - uid: 13254 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,29.5 + pos: -57.5,14.5 parent: 1 - - uid: 13452 + - uid: 13255 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,31.5 + pos: -57.5,16.5 parent: 1 - - uid: 13453 + - uid: 13256 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,30.5 + pos: -57.5,17.5 parent: 1 - - uid: 13456 + - uid: 13257 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,33.5 + pos: -57.5,18.5 parent: 1 - - uid: 13457 + - uid: 13258 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,34.5 + pos: -57.5,19.5 parent: 1 - - uid: 13458 + - uid: 13259 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,35.5 + pos: -57.5,20.5 parent: 1 - - uid: 13459 + - uid: 13260 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,36.5 + pos: -57.5,21.5 parent: 1 - - uid: 13460 + - uid: 13261 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,37.5 + pos: -57.5,22.5 parent: 1 - - uid: 13461 + - uid: 13262 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,38.5 + pos: -57.5,23.5 parent: 1 - - uid: 13462 + - uid: 13263 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,39.5 + pos: -57.5,24.5 parent: 1 - - uid: 13463 + - uid: 13264 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,40.5 + pos: -57.5,25.5 parent: 1 - - uid: 13464 + - uid: 13265 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,41.5 + pos: -57.5,26.5 parent: 1 - - uid: 13465 + - uid: 13266 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,42.5 + pos: -57.5,27.5 parent: 1 - - uid: 13466 + - uid: 13267 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,43.5 + pos: -57.5,28.5 parent: 1 - - uid: 13467 + - uid: 13268 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,44.5 + pos: -57.5,29.5 parent: 1 - - uid: 13468 + - uid: 13269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,45.5 + rot: 3.141592653589793 rad + pos: -57.5,30.5 parent: 1 - - uid: 13469 + - uid: 13270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,45.5 + rot: 3.141592653589793 rad + pos: -57.5,31.5 parent: 1 - - uid: 13470 + - uid: 13272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,45.5 + rot: 3.141592653589793 rad + pos: -57.5,34.5 parent: 1 - - uid: 13471 + - uid: 13273 components: - type: Transform - pos: -20.5,44.5 + rot: 3.141592653589793 rad + pos: -57.5,35.5 parent: 1 - - uid: 13472 + - uid: 13274 components: - type: Transform - pos: -20.5,43.5 + rot: 3.141592653589793 rad + pos: -57.5,36.5 parent: 1 - - uid: 13477 + - uid: 13275 components: - type: Transform - pos: -16.5,46.5 + rot: 3.141592653589793 rad + pos: -57.5,38.5 parent: 1 - - uid: 13478 + - uid: 13276 components: - type: Transform - pos: -16.5,47.5 + rot: 3.141592653589793 rad + pos: -57.5,39.5 parent: 1 - - uid: 13479 + - uid: 13277 components: - type: Transform - pos: -16.5,48.5 + rot: 3.141592653589793 rad + pos: -57.5,40.5 parent: 1 - - uid: 13480 + - uid: 13278 components: - type: Transform - pos: -16.5,49.5 + rot: 3.141592653589793 rad + pos: -57.5,41.5 parent: 1 - - uid: 13481 + - uid: 13279 components: - type: Transform - pos: -16.5,50.5 + rot: 3.141592653589793 rad + pos: -57.5,42.5 parent: 1 - - uid: 13482 + - uid: 13280 components: - type: Transform - pos: -16.5,51.5 + rot: 3.141592653589793 rad + pos: -57.5,43.5 parent: 1 - - uid: 13483 + - uid: 13281 components: - type: Transform - pos: -16.5,52.5 + rot: 3.141592653589793 rad + pos: -57.5,44.5 parent: 1 - - uid: 13484 + - uid: 13282 components: - type: Transform - pos: -16.5,53.5 + rot: 3.141592653589793 rad + pos: -57.5,45.5 parent: 1 - - uid: 13485 + - uid: 13286 components: - type: Transform - pos: -16.5,54.5 + rot: -1.5707963267948966 rad + pos: -56.5,15.5 parent: 1 - - uid: 13486 + - uid: 13290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,55.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 1 - - uid: 13487 + - uid: 13295 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,55.5 + pos: -56.5,37.5 parent: 1 - - uid: 13488 + - uid: 13328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,55.5 + rot: 1.5707963267948966 rad + pos: -1.5,29.5 parent: 1 - - uid: 13489 + - uid: 13329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,56.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 1 - - uid: 13490 + - uid: 13330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,56.5 + rot: 1.5707963267948966 rad + pos: 0.5,29.5 parent: 1 - - uid: 13491 + - uid: 13374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,57.5 + rot: 1.5707963267948966 rad + pos: -59.5,47.5 parent: 1 - - uid: 13492 + - uid: 13375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,58.5 + rot: 1.5707963267948966 rad + pos: -60.5,47.5 parent: 1 - - uid: 13493 + - uid: 13376 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,59.5 + pos: -61.5,47.5 parent: 1 - - uid: 13494 + - uid: 13377 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,59.5 + pos: -62.5,47.5 parent: 1 - - uid: 13504 + - uid: 13378 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,20.5 + pos: -63.5,47.5 parent: 1 - - uid: 13505 + - uid: 13379 components: - type: Transform - pos: -37.5,21.5 + rot: 1.5707963267948966 rad + pos: -64.5,47.5 parent: 1 - - uid: 13506 + - uid: 13380 components: - type: Transform - pos: -37.5,22.5 + rot: 1.5707963267948966 rad + pos: -65.5,47.5 parent: 1 - - uid: 13507 + - uid: 13381 components: - type: Transform - pos: -37.5,23.5 + pos: -66.5,48.5 parent: 1 - - uid: 13508 + - uid: 13382 components: - type: Transform - pos: -37.5,24.5 + pos: -66.5,49.5 parent: 1 - - uid: 13509 + - uid: 13383 components: - type: Transform - pos: -37.5,25.5 + rot: 3.141592653589793 rad + pos: -67.5,51.5 parent: 1 - - uid: 13510 + - uid: 13386 components: - type: Transform - pos: -37.5,26.5 + pos: -70.5,53.5 parent: 1 - - uid: 13511 + - uid: 13387 components: - type: Transform - pos: -37.5,27.5 + rot: -1.5707963267948966 rad + pos: -71.5,54.5 parent: 1 - - uid: 13512 + - uid: 13391 components: - type: Transform - pos: -37.5,28.5 + rot: -1.5707963267948966 rad + pos: -5.5,31.5 parent: 1 - - uid: 13513 + - uid: 13392 components: - type: Transform - pos: -37.5,29.5 + rot: -1.5707963267948966 rad + pos: -4.5,31.5 parent: 1 - - uid: 13514 + - uid: 13393 components: - type: Transform - pos: -37.5,30.5 + rot: -1.5707963267948966 rad + pos: -7.5,32.5 parent: 1 - - uid: 13515 + - uid: 13394 components: - type: Transform - pos: -37.5,31.5 + rot: -1.5707963267948966 rad + pos: -9.5,30.5 parent: 1 - - uid: 13519 + - uid: 13395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,39.5 + rot: 3.141592653589793 rad + pos: -8.5,31.5 parent: 1 - - uid: 13520 + - uid: 13399 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,39.5 + pos: -9.5,32.5 parent: 1 - - uid: 13521 + - uid: 13400 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,39.5 + pos: -10.5,32.5 parent: 1 - - uid: 13522 + - uid: 13401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,39.5 + pos: -11.5,32.5 parent: 1 - - uid: 13523 + - uid: 13402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,39.5 + pos: -12.5,32.5 parent: 1 - - uid: 13524 + - uid: 13403 components: - type: Transform - pos: -38.5,38.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 1 - - uid: 13525 + - uid: 13404 components: - type: Transform - pos: -38.5,37.5 + rot: 1.5707963267948966 rad + pos: -14.5,32.5 parent: 1 - - uid: 13526 + - uid: 13405 components: - type: Transform - pos: -38.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,32.5 parent: 1 - - uid: 13527 + - uid: 13406 components: - type: Transform - pos: -38.5,35.5 + rot: 1.5707963267948966 rad + pos: -17.5,32.5 parent: 1 - - uid: 13528 + - uid: 13407 components: - type: Transform - pos: -38.5,34.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 1 - - uid: 13529 + - uid: 13408 components: - type: Transform - pos: -38.5,33.5 + rot: 1.5707963267948966 rad + pos: -19.5,32.5 parent: 1 - - uid: 13537 + - uid: 13409 components: - type: Transform - pos: -37.5,41.5 + rot: 1.5707963267948966 rad + pos: -20.5,32.5 parent: 1 - - uid: 13541 + - uid: 13410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,45.5 + rot: 1.5707963267948966 rad + pos: -21.5,32.5 parent: 1 - - uid: 13543 + - uid: 13411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,46.5 + rot: 1.5707963267948966 rad + pos: -23.5,32.5 parent: 1 - - uid: 13544 + - uid: 13412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,46.5 + rot: 1.5707963267948966 rad + pos: -24.5,32.5 parent: 1 - - uid: 13548 + - uid: 13413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,46.5 + rot: 1.5707963267948966 rad + pos: -25.5,32.5 parent: 1 - - uid: 13549 + - uid: 13414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,46.5 + rot: 1.5707963267948966 rad + pos: -26.5,32.5 parent: 1 - - uid: 13550 + - uid: 13415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,46.5 + rot: 1.5707963267948966 rad + pos: -27.5,32.5 parent: 1 - - uid: 13551 + - uid: 13416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,46.5 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 parent: 1 - - uid: 13552 + - uid: 13417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,46.5 + rot: 1.5707963267948966 rad + pos: -29.5,32.5 parent: 1 - - uid: 13553 + - uid: 13418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,46.5 + rot: 1.5707963267948966 rad + pos: -30.5,32.5 parent: 1 - - uid: 13554 + - uid: 13419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,46.5 + rot: 1.5707963267948966 rad + pos: -31.5,32.5 parent: 1 - - uid: 13556 + - uid: 13420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,54.5 + rot: 1.5707963267948966 rad + pos: -32.5,32.5 parent: 1 - - uid: 13560 + - uid: 13421 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,47.5 + pos: -33.5,32.5 parent: 1 - - uid: 13564 + - uid: 13422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,20.5 + rot: 1.5707963267948966 rad + pos: -34.5,32.5 parent: 1 - - uid: 13565 + - uid: 13423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,21.5 + rot: 1.5707963267948966 rad + pos: -35.5,32.5 parent: 1 - - uid: 13566 + - uid: 13424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,22.5 + rot: 1.5707963267948966 rad + pos: -36.5,32.5 parent: 1 - - uid: 13567 + - uid: 13426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,23.5 + rot: 1.5707963267948966 rad + pos: -39.5,32.5 parent: 1 - - uid: 13568 + - uid: 13427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,24.5 + rot: 1.5707963267948966 rad + pos: -40.5,32.5 parent: 1 - - uid: 13569 + - uid: 13428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,25.5 + rot: 1.5707963267948966 rad + pos: -41.5,32.5 parent: 1 - - uid: 13570 + - uid: 13429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,26.5 + rot: 1.5707963267948966 rad + pos: -42.5,32.5 parent: 1 - - uid: 13571 + - uid: 13430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,27.5 + rot: 1.5707963267948966 rad + pos: -43.5,32.5 parent: 1 - - uid: 13572 + - uid: 13431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,28.5 + rot: 1.5707963267948966 rad + pos: -44.5,32.5 parent: 1 - - uid: 13573 + - uid: 13432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,29.5 + rot: 1.5707963267948966 rad + pos: -46.5,32.5 parent: 1 - - uid: 13574 + - uid: 13433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,30.5 + rot: 1.5707963267948966 rad + pos: -47.5,32.5 parent: 1 - - uid: 13575 + - uid: 13434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,31.5 + rot: 1.5707963267948966 rad + pos: -48.5,32.5 parent: 1 - - uid: 13576 + - uid: 13435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,32.5 + rot: 1.5707963267948966 rad + pos: -49.5,32.5 parent: 1 - - uid: 13577 + - uid: 13436 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,33.5 + pos: -50.5,32.5 parent: 1 - - uid: 13578 + - uid: 13437 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,33.5 + pos: -51.5,32.5 parent: 1 - - uid: 13579 + - uid: 13438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,33.5 + pos: -52.5,32.5 parent: 1 - - uid: 13580 + - uid: 13439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,33.5 + pos: -53.5,32.5 parent: 1 - - uid: 13581 + - uid: 13440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,33.5 + pos: -54.5,32.5 parent: 1 - - uid: 13582 + - uid: 13441 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,32.5 + pos: -55.5,32.5 parent: 1 - - uid: 13583 + - uid: 13442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,33.5 + pos: -45.5,31.5 parent: 1 - - uid: 13584 + - uid: 13448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,33.5 + rot: -1.5707963267948966 rad + pos: -25.5,28.5 parent: 1 - - uid: 13585 + - uid: 13449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,33.5 + rot: -1.5707963267948966 rad + pos: -24.5,28.5 parent: 1 - - uid: 13586 + - uid: 13450 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,32.5 + pos: -23.5,28.5 + parent: 1 + - uid: 13451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,29.5 + parent: 1 + - uid: 13452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,31.5 + parent: 1 + - uid: 13453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,30.5 + parent: 1 + - uid: 13456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,33.5 parent: 1 - - uid: 13587 + - uid: 13457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,32.5 + rot: 3.141592653589793 rad + pos: -16.5,34.5 parent: 1 - - uid: 13588 + - uid: 13458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,32.5 + rot: 3.141592653589793 rad + pos: -16.5,35.5 parent: 1 - - uid: 13589 + - uid: 13459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,32.5 + rot: 3.141592653589793 rad + pos: -16.5,36.5 parent: 1 - - uid: 13590 + - uid: 13460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,32.5 + rot: 3.141592653589793 rad + pos: -16.5,37.5 parent: 1 - - uid: 13595 + - uid: 13461 components: - type: Transform - pos: -64.5,29.5 + rot: 3.141592653589793 rad + pos: -16.5,38.5 parent: 1 - - uid: 13596 + - uid: 13462 components: - type: Transform - pos: -64.5,30.5 + rot: 3.141592653589793 rad + pos: -16.5,39.5 parent: 1 - - uid: 13597 + - uid: 13463 components: - type: Transform - pos: -64.5,31.5 + rot: 3.141592653589793 rad + pos: -16.5,40.5 parent: 1 - - uid: 13612 + - uid: 13464 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,47.5 + pos: -16.5,41.5 parent: 1 - - uid: 15061 + - uid: 13465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,29.5 + rot: 3.141592653589793 rad + pos: -16.5,42.5 parent: 1 - - uid: 15167 + - uid: 13466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,50.5 + rot: 3.141592653589793 rad + pos: -16.5,43.5 parent: 1 - - uid: 15168 + - uid: 13467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,50.5 + rot: 3.141592653589793 rad + pos: -16.5,44.5 parent: 1 - - uid: 15169 + - uid: 13469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,50.5 + rot: 1.5707963267948966 rad + pos: -18.5,45.5 parent: 1 - - uid: 15171 + - uid: 13470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,50.5 + rot: 1.5707963267948966 rad + pos: -19.5,45.5 parent: 1 -- proto: DisposalTrunk - entities: - - uid: 589 + - uid: 13471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 + pos: -20.5,44.5 parent: 1 - - uid: 8671 + - uid: 13472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,65.5 + pos: -20.5,43.5 parent: 1 - - uid: 8672 + - uid: 13477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,58.5 + pos: -16.5,46.5 parent: 1 - - uid: 12917 + - uid: 13478 components: - type: Transform - pos: 5.5,30.5 + pos: -16.5,47.5 parent: 1 - - uid: 12918 + - uid: 13479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,14.5 + pos: -16.5,48.5 parent: 1 - - uid: 12919 + - uid: 13480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 + pos: -16.5,49.5 parent: 1 - - uid: 12952 + - uid: 13481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 + pos: -16.5,50.5 parent: 1 - - uid: 13106 + - uid: 13483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 + pos: -16.5,52.5 parent: 1 - - uid: 13107 + - uid: 13484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,4.5 + pos: -16.5,53.5 parent: 1 - - uid: 13133 + - uid: 13485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 + pos: -16.5,54.5 parent: 1 - - uid: 13152 + - uid: 13486 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,2.5 + pos: -15.5,55.5 parent: 1 - - uid: 13153 + - uid: 13487 components: - type: Transform - pos: -18.5,-1.5 + rot: -1.5707963267948966 rad + pos: -14.5,55.5 parent: 1 - - uid: 13188 + - uid: 13488 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: -13.5,55.5 parent: 1 - - uid: 13206 + - uid: 13489 components: - type: Transform - pos: -35.5,7.5 + rot: 3.141592653589793 rad + pos: -12.5,56.5 parent: 1 - - uid: 13243 + - uid: 13490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-10.5 + rot: 3.141592653589793 rad + pos: -17.5,56.5 parent: 1 - - uid: 13285 + - uid: 13491 components: - type: Transform - pos: -55.5,16.5 + rot: 3.141592653589793 rad + pos: -17.5,57.5 parent: 1 - - uid: 13289 + - uid: 13492 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,3.5 + pos: -17.5,58.5 parent: 1 - - uid: 13294 + - uid: 13493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,37.5 + rot: 1.5707963267948966 rad + pos: -18.5,59.5 parent: 1 - - uid: 13327 + - uid: 13494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,29.5 + rot: 1.5707963267948966 rad + pos: -19.5,59.5 parent: 1 - - uid: 13398 + - uid: 13504 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,30.5 + pos: -38.5,20.5 parent: 1 - - uid: 13444 + - uid: 13505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,30.5 + pos: -37.5,21.5 parent: 1 - - uid: 13445 + - uid: 13506 components: - type: Transform - pos: -26.5,29.5 + pos: -37.5,22.5 parent: 1 - - uid: 13475 + - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,42.5 + pos: -37.5,23.5 parent: 1 - - uid: 13498 + - uid: 13508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,59.5 + pos: -37.5,24.5 parent: 1 - - uid: 13499 + - uid: 13509 components: - type: Transform - pos: -12.5,57.5 + pos: -37.5,25.5 parent: 1 - - uid: 13503 + - uid: 13510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,20.5 + pos: -37.5,26.5 parent: 1 - - uid: 13518 + - uid: 13511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,39.5 + pos: -37.5,27.5 parent: 1 - - uid: 13533 + - uid: 13512 components: - type: Transform - pos: -44.5,47.5 + pos: -37.5,28.5 parent: 1 - - uid: 13534 + - uid: 13513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,44.5 + pos: -37.5,29.5 parent: 1 - - uid: 13536 + - uid: 13514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,42.5 + pos: -37.5,30.5 parent: 1 - - uid: 13598 + - uid: 13515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,28.5 + pos: -37.5,31.5 parent: 1 - - uid: 13599 + - uid: 13519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,19.5 + rot: 1.5707963267948966 rad + pos: -43.5,39.5 parent: 1 - - uid: 15039 + - uid: 13520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-11.5 + pos: -42.5,39.5 parent: 1 - - uid: 15170 + - uid: 13521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,50.5 + rot: 1.5707963267948966 rad + pos: -41.5,39.5 parent: 1 -- proto: DisposalUnit - entities: - - uid: 249 + - uid: 13522 components: - type: Transform - pos: -5.5,2.5 + rot: 1.5707963267948966 rad + pos: -40.5,39.5 parent: 1 - - uid: 337 + - uid: 13523 components: - type: Transform - pos: -18.5,-1.5 + rot: 1.5707963267948966 rad + pos: -39.5,39.5 parent: 1 - - uid: 1090 + - uid: 13524 components: - type: Transform - pos: 11.5,-3.5 + pos: -38.5,38.5 parent: 1 - - uid: 1091 + - uid: 13525 components: - type: Transform - pos: 5.5,3.5 + pos: -38.5,37.5 parent: 1 - - uid: 1155 + - uid: 13526 components: - type: Transform - pos: 4.5,14.5 + pos: -38.5,36.5 parent: 1 - - uid: 1944 + - uid: 13527 components: - type: Transform - pos: 0.5,22.5 + pos: -38.5,35.5 parent: 1 - - uid: 2033 + - uid: 13528 components: - type: Transform - pos: 5.5,30.5 + pos: -38.5,34.5 parent: 1 - - uid: 2118 + - uid: 13529 components: - type: Transform - pos: -3.5,29.5 + pos: -38.5,33.5 parent: 1 - - uid: 2136 + - uid: 13537 components: - type: Transform - pos: 28.5,5.5 + pos: -37.5,41.5 parent: 1 - - uid: 2137 + - uid: 13541 components: - type: Transform - pos: 23.5,4.5 + rot: 3.141592653589793 rad + pos: -49.5,45.5 parent: 1 - - uid: 2351 + - uid: 13543 components: - type: Transform - pos: 11.5,14.5 + rot: -1.5707963267948966 rad + pos: -45.5,46.5 parent: 1 - - uid: 3653 + - uid: 13544 components: - type: Transform - pos: -41.5,-6.5 + rot: -1.5707963267948966 rad + pos: -46.5,46.5 parent: 1 - - uid: 3654 + - uid: 13548 components: - type: Transform - pos: -46.5,-1.5 + rot: -1.5707963267948966 rad + pos: -50.5,46.5 parent: 1 - - uid: 4166 + - uid: 13549 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: -51.5,46.5 parent: 1 - - uid: 4168 + - uid: 13550 components: - type: Transform - pos: -35.5,7.5 + rot: -1.5707963267948966 rad + pos: -52.5,46.5 parent: 1 - - uid: 5264 + - uid: 13551 components: - type: Transform - pos: -55.5,16.5 + rot: -1.5707963267948966 rad + pos: -53.5,46.5 parent: 1 - - uid: 5525 + - uid: 13552 components: - type: Transform - pos: -56.5,-10.5 + rot: -1.5707963267948966 rad + pos: -54.5,46.5 parent: 1 - - uid: 5526 + - uid: 13553 components: - type: Transform - pos: -49.5,3.5 + rot: -1.5707963267948966 rad + pos: -55.5,46.5 parent: 1 - - uid: 5527 + - uid: 13554 components: - type: Transform - pos: -39.5,20.5 + rot: -1.5707963267948966 rad + pos: -56.5,46.5 parent: 1 - - uid: 5528 + - uid: 13556 components: - type: Transform - pos: -45.5,30.5 + rot: -1.5707963267948966 rad + pos: -72.5,54.5 parent: 1 - - uid: 5529 + - uid: 13560 components: - type: Transform - pos: -10.5,30.5 + rot: 1.5707963267948966 rad + pos: -58.5,47.5 parent: 1 - - uid: 5531 + - uid: 13564 components: - type: Transform - pos: -26.5,29.5 + rot: 3.141592653589793 rad + pos: -73.5,20.5 parent: 1 - - uid: 6936 + - uid: 13565 components: - type: Transform - pos: -38.5,42.5 + rot: 3.141592653589793 rad + pos: -73.5,21.5 parent: 1 - - uid: 6937 + - uid: 13566 components: - type: Transform - pos: -44.5,39.5 + rot: 3.141592653589793 rad + pos: -73.5,22.5 parent: 1 - - uid: 6938 + - uid: 13567 components: - type: Transform - pos: -44.5,47.5 + rot: 3.141592653589793 rad + pos: -73.5,23.5 parent: 1 - - uid: 7091 + - uid: 13569 components: - type: Transform - pos: -49.5,44.5 + rot: 3.141592653589793 rad + pos: -73.5,25.5 parent: 1 - - uid: 7092 + - uid: 13570 components: - type: Transform - pos: -55.5,37.5 + rot: 3.141592653589793 rad + pos: -73.5,26.5 parent: 1 - - uid: 7559 + - uid: 13571 components: - type: Transform - pos: -19.5,42.5 + rot: 3.141592653589793 rad + pos: -73.5,27.5 parent: 1 - - uid: 7977 + - uid: 13572 components: - type: Transform - pos: -51.5,58.5 + rot: 3.141592653589793 rad + pos: -73.5,28.5 parent: 1 - - uid: 8652 + - uid: 13573 components: - type: Transform - pos: -51.5,65.5 + rot: 3.141592653589793 rad + pos: -73.5,29.5 parent: 1 - - uid: 11053 + - uid: 13574 components: - type: Transform - pos: -73.5,19.5 + rot: 3.141592653589793 rad + pos: -73.5,30.5 parent: 1 - - uid: 11054 + - uid: 13575 components: - type: Transform - pos: -63.5,28.5 + rot: 3.141592653589793 rad + pos: -73.5,31.5 parent: 1 - - uid: 13501 + - uid: 13576 components: - type: Transform - pos: -20.5,59.5 + rot: 3.141592653589793 rad + pos: -73.5,32.5 parent: 1 - - uid: 13502 + - uid: 13577 components: - type: Transform - pos: -12.5,57.5 + rot: 1.5707963267948966 rad + pos: -72.5,33.5 parent: 1 - - uid: 15019 + - uid: 13578 components: - type: Transform - pos: 14.5,-11.5 + rot: 1.5707963267948966 rad + pos: -71.5,33.5 parent: 1 - - uid: 15172 + - uid: 13579 components: - type: Transform - pos: 16.5,50.5 + rot: 1.5707963267948966 rad + pos: -70.5,33.5 parent: 1 -- proto: DisposalYJunction - entities: - - uid: 13500 + - uid: 13580 components: - type: Transform - pos: -16.5,55.5 + rot: 1.5707963267948966 rad + pos: -69.5,33.5 parent: 1 - - uid: 13591 + - uid: 13581 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,32.5 + pos: -68.5,33.5 parent: 1 -- proto: DogBed - entities: - - uid: 7574 + - uid: 13582 components: - type: Transform - pos: -22.5,37.5 + rot: 1.5707963267948966 rad + pos: -58.5,32.5 parent: 1 - - uid: 10906 + - uid: 13583 components: - type: Transform - pos: -9.5,59.5 + rot: 1.5707963267948966 rad + pos: -67.5,33.5 parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 4730 + - uid: 13584 components: - type: Transform - pos: -27.5,52.5 + rot: 1.5707963267948966 rad + pos: -66.5,33.5 parent: 1 -- proto: DresserCaptainFilled - entities: - - uid: 3748 + - uid: 13585 components: - type: Transform - pos: -5.5,61.5 + rot: 1.5707963267948966 rad + pos: -65.5,33.5 parent: 1 -- proto: DresserChiefEngineerFilled - entities: - - uid: 7870 + - uid: 13586 components: - type: Transform - pos: -68.5,16.5 + rot: -1.5707963267948966 rad + pos: -63.5,32.5 parent: 1 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 5545 + - uid: 13587 components: - type: Transform - pos: 16.5,28.5 + rot: -1.5707963267948966 rad + pos: -62.5,32.5 parent: 1 -- proto: DresserFilled - entities: - - uid: 3038 + - uid: 13588 components: - type: Transform - pos: -52.5,-0.5 + rot: -1.5707963267948966 rad + pos: -61.5,32.5 parent: 1 - - uid: 13875 + - uid: 13589 components: - type: Transform - pos: -50.5,-4.5 + rot: -1.5707963267948966 rad + pos: -60.5,32.5 parent: 1 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7900 + - uid: 13590 components: - type: Transform - pos: -21.5,48.5 + rot: -1.5707963267948966 rad + pos: -59.5,32.5 parent: 1 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 3747 + - uid: 13595 components: - type: Transform - pos: -58.5,65.5 + pos: -64.5,29.5 parent: 1 -- proto: DresserQuarterMasterFilled - entities: - - uid: 7868 + - uid: 13596 components: - type: Transform - pos: -45.5,-7.5 + pos: -64.5,30.5 parent: 1 -- proto: DresserResearchDirectorFilled - entities: - - uid: 5004 + - uid: 13597 components: - type: Transform - pos: -3.5,1.5 + pos: -64.5,31.5 parent: 1 -- proto: DrinkBottleBeer - entities: - - uid: 9735 + - uid: 13612 components: - type: Transform - pos: -27.588842,35.58307 + rot: 3.141592653589793 rad + pos: -48.5,47.5 parent: 1 - - uid: 9737 + - uid: 15029 components: - type: Transform - pos: -27.416967,35.64557 + rot: -1.5707963267948966 rad + pos: -19.5,51.5 parent: 1 - - uid: 9738 + - uid: 15061 components: - type: Transform - pos: -27.229467,35.567444 + rot: 1.5707963267948966 rad + pos: 1.5,29.5 parent: 1 -- proto: DrinkBottleWhiskey - entities: - - uid: 14287 + - uid: 15132 components: - type: Transform - pos: -72.49934,47.622665 + rot: 3.141592653589793 rad + pos: -25.5,52.5 parent: 1 -- proto: DrinkChangelingStingCan - entities: - - uid: 5804 + - uid: 15133 components: - type: Transform - pos: -9.689642,21.037588 + rot: 3.141592653589793 rad + pos: -25.5,53.5 parent: 1 -- proto: DrinkCreamCarton - entities: - - uid: 5275 + - uid: 15135 components: - type: Transform - pos: -53.020008,21.71115 + rot: 3.141592653589793 rad + pos: -25.5,54.5 parent: 1 -- proto: DrinkGildlagerBottleFull - entities: - - uid: 2311 + - uid: 15166 components: - type: Transform - pos: -23.517902,54.40786 + rot: 1.5707963267948966 rad + pos: -24.5,51.5 parent: 1 -- proto: DrinkGlass - entities: - - uid: 5271 + - uid: 15167 components: - type: Transform - pos: -53.816883,21.552088 + rot: -1.5707963267948966 rad + pos: 12.5,50.5 parent: 1 - - uid: 5272 + - uid: 15168 components: - type: Transform - pos: -53.645008,21.708338 + rot: -1.5707963267948966 rad + pos: 14.5,50.5 parent: 1 - - uid: 5273 + - uid: 15169 components: - type: Transform - pos: -53.488758,21.552088 + rot: -1.5707963267948966 rad + pos: 15.5,50.5 parent: 1 - - uid: 15222 + - uid: 15171 components: - type: Transform - pos: 17.303202,52.65593 + rot: -1.5707963267948966 rad + pos: 13.5,50.5 parent: 1 - - uid: 15223 + - uid: 15188 components: - type: Transform - pos: 17.678202,52.59343 + rot: 1.5707963267948966 rad + pos: -23.5,51.5 parent: 1 -- proto: DrinkGoldenCup - entities: - - uid: 2307 + - uid: 15189 components: - type: Transform - pos: -23.533527,57.548485 + rot: 1.5707963267948966 rad + pos: -22.5,51.5 parent: 1 -- proto: DrinkGreenTea - entities: - - uid: 4546 + - uid: 15190 components: - type: Transform - pos: -49.110718,9.835719 + rot: 1.5707963267948966 rad + pos: -21.5,51.5 parent: 1 - - uid: 4549 + - uid: 15191 components: - type: Transform - pos: -49.160065,9.422353 + rot: 1.5707963267948966 rad + pos: -20.5,51.5 parent: 1 - - uid: 5344 + - uid: 15193 components: - type: Transform - pos: -49.821003,9.391103 + rot: 1.5707963267948966 rad + pos: -18.5,51.5 parent: 1 - - uid: 6153 + - uid: 15194 components: - type: Transform - pos: -49.876343,9.820094 + rot: -1.5707963267948966 rad + pos: -17.5,51.5 parent: 1 -- proto: DrinkHotCoffee +- proto: DisposalTrunk entities: - - uid: 4562 + - uid: 589 components: - type: Transform - pos: 23.475533,38.452827 + rot: -1.5707963267948966 rad + pos: 19.5,-11.5 parent: 1 -- proto: DrinkMilkCarton - entities: - - uid: 5276 + - uid: 8671 components: - type: Transform - pos: -52.395008,21.71115 + rot: 1.5707963267948966 rad + pos: -51.5,65.5 parent: 1 - - uid: 6957 + - uid: 8672 components: - type: Transform - pos: -35.398277,47.715622 + rot: 1.5707963267948966 rad + pos: -51.5,58.5 parent: 1 - - uid: 6958 + - uid: 12917 components: - type: Transform - pos: -32.460777,42.668747 + pos: 5.5,30.5 parent: 1 -- proto: DrinkMugBlack - entities: - - uid: 269 + - uid: 12918 components: - type: Transform - pos: -17.654377,-4.445471 + rot: 3.141592653589793 rad + pos: 11.5,14.5 parent: 1 - - uid: 7964 + - uid: 12919 components: - type: Transform - pos: -54.71723,64.74812 + rot: 3.141592653589793 rad + pos: 0.5,22.5 parent: 1 -- proto: DrinkMugBlue - entities: - - uid: 7948 + - uid: 12952 components: - type: Transform - pos: -54.232857,64.76375 + rot: -1.5707963267948966 rad + pos: 4.5,14.5 parent: 1 -- proto: DrinkMugHeart - entities: - - uid: 1489 + - uid: 13106 components: - type: Transform - pos: 23.29282,42.502815 + rot: -1.5707963267948966 rad + pos: 28.5,5.5 parent: 1 -- proto: DrinkMugMetal - entities: - - uid: 7949 + - uid: 13107 components: - type: Transform - pos: -47.25018,59.484123 + rot: 3.141592653589793 rad + pos: 23.5,4.5 parent: 1 -- proto: DrinkMugOne - entities: - - uid: 270 + - uid: 13133 components: - type: Transform - pos: -17.310627,-4.257971 + rot: 3.141592653589793 rad + pos: 11.5,-3.5 parent: 1 - - uid: 14941 + - uid: 13152 components: - type: Transform - pos: -54.474243,-12.528257 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 -- proto: DrinkMugRed - entities: - - uid: 9936 + - uid: 13153 components: - type: Transform - pos: -54.27973,64.43562 + pos: -18.5,-1.5 parent: 1 -- proto: DrinkTeacup - entities: - - uid: 2999 + - uid: 13188 components: - type: Transform - pos: 24.668903,14.540461 + pos: -20.5,7.5 parent: 1 - - uid: 3000 + - uid: 13206 components: - type: Transform - pos: 24.262653,14.759211 + pos: -35.5,7.5 parent: 1 -- proto: DrinkWaterJug - entities: - - uid: 577 + - uid: 13243 components: - type: Transform - pos: 19.083464,-11.315445 + rot: -1.5707963267948966 rad + pos: -56.5,-10.5 parent: 1 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 7935 + - uid: 13285 components: - type: Transform - pos: -58.33147,64.88806 + pos: -55.5,16.5 parent: 1 - - uid: 10977 + - uid: 13289 components: - type: Transform - pos: -70.71854,40.09562 + rot: 3.141592653589793 rad + pos: -49.5,3.5 parent: 1 - - uid: 14211 + - uid: 13294 components: - type: Transform - pos: -72.32807,15.938257 + rot: -1.5707963267948966 rad + pos: -55.5,37.5 parent: 1 - - uid: 14284 + - uid: 13327 components: - type: Transform - pos: -72.70246,47.903915 + rot: 3.141592653589793 rad + pos: -3.5,29.5 parent: 1 -- proto: DrinkWhiskeyColaGlass - entities: - - uid: 7936 + - uid: 13398 components: - type: Transform - pos: -58.70647,64.85681 + rot: 1.5707963267948966 rad + pos: -10.5,30.5 parent: 1 -- proto: DrinkWhiskeyGlass - entities: - - uid: 10975 + - uid: 13444 components: - type: Transform - pos: -72.39041,41.78312 + rot: 3.141592653589793 rad + pos: -45.5,30.5 parent: 1 - - uid: 10976 + - uid: 13445 components: - type: Transform - pos: -70.37479,39.56437 + pos: -26.5,29.5 parent: 1 - - uid: 14212 + - uid: 13475 components: - type: Transform - pos: -72.81245,15.797632 + rot: -1.5707963267948966 rad + pos: -19.5,42.5 parent: 1 - - uid: 14285 + - uid: 13498 components: - type: Transform - pos: -72.34309,47.685165 + rot: 1.5707963267948966 rad + pos: -20.5,59.5 parent: 1 -- proto: DrinkWineBottleFull - entities: - - uid: 1815 + - uid: 13499 components: - type: Transform - pos: 16.737038,3.7859516 + pos: -12.5,57.5 parent: 1 -- proto: DrinkWineGlass - entities: - - uid: 1814 + - uid: 13503 components: - type: Transform - pos: 16.440163,3.6297016 + rot: 1.5707963267948966 rad + pos: -39.5,20.5 parent: 1 - - uid: 6338 + - uid: 13518 components: - type: Transform - pos: 2.5328588,49.783806 + rot: 1.5707963267948966 rad + pos: -44.5,39.5 parent: 1 -- proto: Dropper - entities: - - uid: 1953 + - uid: 13533 components: - type: Transform - pos: -4.4894724,20.885618 + pos: -44.5,47.5 parent: 1 - - uid: 1954 + - uid: 13534 components: - type: Transform - pos: -4.4894724,20.666868 + rot: 3.141592653589793 rad + pos: -49.5,44.5 parent: 1 - - uid: 1955 + - uid: 13536 components: - type: Transform - pos: -4.4894724,20.463743 + rot: 1.5707963267948966 rad + pos: -38.5,42.5 parent: 1 -- proto: ElectricGuitarInstrument - entities: - - uid: 4138 + - uid: 13598 components: - type: Transform - pos: -22.497261,24.539072 + rot: -1.5707963267948966 rad + pos: -63.5,28.5 parent: 1 -- proto: EmergencyLight - entities: - - uid: 3665 + - uid: 13599 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-13.5 + pos: -73.5,19.5 parent: 1 - - uid: 4600 + - uid: 15039 components: - type: Transform - pos: -48.5,6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 4890 + - uid: 15122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-11.5 + pos: -25.5,55.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11062 + - uid: 15170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-3.5 + pos: 16.5,50.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14864 +- proto: DisposalUnit + entities: + - uid: 249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,42.5 + pos: -5.5,2.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14865 + - uid: 337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,29.5 + pos: -18.5,-1.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14866 + - uid: 1090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,29.5 + pos: 11.5,-3.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14867 + - uid: 1091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,29.5 + pos: 5.5,3.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14868 + - uid: 1155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,31.5 + pos: 4.5,14.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14869 + - uid: 1944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,23.5 + pos: 0.5,22.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14870 + - uid: 2033 components: - type: Transform - pos: -68.5,23.5 + pos: 5.5,30.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14871 + - uid: 2118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,42.5 + pos: -3.5,29.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14872 + - uid: 2136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,40.5 + pos: 28.5,5.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14873 + - uid: 2137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,31.5 + pos: 23.5,4.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14874 + - uid: 2351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,22.5 + pos: 11.5,14.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14875 + - uid: 3653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,8.5 + pos: -41.5,-6.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14876 + - uid: 3654 components: - type: Transform - pos: -68.5,6.5 + pos: -46.5,-1.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14879 + - uid: 4166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,3.5 + pos: -20.5,7.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14880 + - uid: 4168 components: - type: Transform - pos: -35.5,-5.5 + pos: -35.5,7.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14882 + - uid: 5264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 + pos: -55.5,16.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14883 + - uid: 5525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,26.5 + pos: -56.5,-10.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14884 + - uid: 5526 components: - type: Transform - pos: -33.5,33.5 + pos: -49.5,3.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14885 + - uid: 5527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 + pos: -39.5,20.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14886 + - uid: 5528 components: - type: Transform - pos: -35.5,47.5 + pos: -45.5,30.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14887 + - uid: 5529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,45.5 + pos: -10.5,30.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14888 + - uid: 5531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,52.5 + pos: -26.5,29.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14889 + - uid: 6936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,40.5 + pos: -38.5,42.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14890 + - uid: 6937 components: - type: Transform - pos: -20.5,48.5 + pos: -44.5,39.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14891 + - uid: 6938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 + pos: -44.5,47.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14892 + - uid: 7091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,27.5 + pos: -49.5,44.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14893 + - uid: 7092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,40.5 + pos: -55.5,37.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14894 + - uid: 7559 + components: + - type: Transform + pos: -19.5,42.5 + parent: 1 + - uid: 7977 + components: + - type: Transform + pos: -51.5,58.5 + parent: 1 + - uid: 8652 components: - type: Transform - pos: -11.5,49.5 + pos: -51.5,65.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14895 + - uid: 11053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,56.5 + pos: -73.5,19.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14896 + - uid: 11054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,55.5 + pos: -63.5,28.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14897 + - uid: 13501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,62.5 + pos: -20.5,59.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14898 + - uid: 13502 components: - type: Transform - pos: -9.5,57.5 + pos: -12.5,57.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14899 + - uid: 15019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,27.5 + pos: 14.5,-11.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14900 + - uid: 15118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 + pos: -25.5,55.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14901 + - uid: 15172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 + pos: 16.5,50.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14902 +- proto: DisposalYJunction + entities: + - uid: 13500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 + pos: -16.5,55.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14903 + - uid: 13591 components: - type: Transform - pos: -25.5,18.5 + rot: 1.5707963267948966 rad + pos: -64.5,32.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14904 +- proto: DnaInjectorCleanSe + entities: + - uid: 3342 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,4.5 + pos: -8.302826,20.652714 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14905 + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 + pos: -8.349701,20.808964 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14906 +- proto: DnaModifierComputerCircuitboard + entities: + - uid: 1613 components: - type: Transform - pos: 7.5,6.5 + rot: -1.5707963267948966 rad + pos: -6.568451,23.448002 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14907 +- proto: DogBed + entities: + - uid: 7574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 + pos: -22.5,37.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14908 + - uid: 10906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + pos: -9.5,59.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14909 +- proto: DoubleEmergencyOxygenTank + entities: + - uid: 15391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: -46.363964,69.45653 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14910 +- proto: DresserCaptainFilled + entities: + - uid: 3748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,13.5 + pos: -5.5,61.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14911 +- proto: DresserChiefEngineerFilled + entities: + - uid: 7870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,1.5 + pos: -68.5,16.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14912 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 5545 components: - type: Transform - pos: -1.5,-1.5 + pos: 16.5,28.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14913 +- proto: DresserFilled + entities: + - uid: 3038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 + pos: -52.5,-0.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14914 + - uid: 13875 components: - type: Transform - pos: -16.5,-1.5 + pos: -50.5,-4.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14915 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7900 components: - type: Transform - pos: -12.5,-10.5 + pos: -21.5,48.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14916 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 3747 components: - type: Transform - pos: 2.5,-8.5 + pos: -58.5,65.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14917 +- proto: DresserQuarterMasterFilled + entities: + - uid: 7868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 + pos: -45.5,-7.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14954 +- proto: DresserResearchDirectorFilled + entities: + - uid: 5004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,55.5 + pos: -3.5,1.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14955 +- proto: DrinkBottleBeer + entities: + - uid: 9735 components: - type: Transform - pos: -46.5,65.5 + pos: -27.588842,35.58307 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14956 + - uid: 9737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,63.5 + pos: -27.416967,35.64557 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14957 + - uid: 9738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,64.5 + pos: -27.229467,35.567444 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14958 +- proto: DrinkBottleWhiskey + entities: + - uid: 14287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,60.5 + pos: -72.49934,47.622665 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14959 +- proto: DrinkCreamCarton + entities: + - uid: 5275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,56.5 + pos: -53.020008,21.71115 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14960 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 2311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,53.5 + pos: -23.517902,54.40786 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14961 +- proto: DrinkGlass + entities: + - uid: 5271 components: - type: Transform - pos: -52.5,47.5 + pos: -53.816883,21.552088 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14962 + - uid: 5272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,41.5 + pos: -53.645008,21.708338 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15309 + - uid: 5273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,23.5 + pos: -53.488758,21.552088 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15310 + - uid: 15222 components: - type: Transform - pos: -1.5,34.5 + pos: 17.303202,52.65593 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15311 + - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,38.5 + pos: 17.678202,52.59343 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15312 +- proto: DrinkGoldenCup + entities: + - uid: 2307 components: - type: Transform - pos: 8.5,37.5 + pos: -23.533527,57.548485 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15313 +- proto: DrinkGreenTea + entities: + - uid: 4546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,28.5 + pos: -49.110718,9.835719 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15314 + - uid: 4549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 + pos: -49.160065,9.422353 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15315 + - uid: 5344 components: - type: Transform - pos: 7.5,17.5 + pos: -49.821003,9.391103 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15316 + - uid: 6153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 + pos: -49.876343,9.820094 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EmergencyRollerBedSpawnFolded +- proto: DrinkHotCoffee entities: - - uid: 9198 + - uid: 4562 components: - type: Transform - pos: 11.616604,24.635866 + pos: 23.475533,38.452827 parent: 1 -- proto: Emitter +- proto: DrinkMilkCarton entities: - - uid: 9982 + - uid: 5276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,18.5 + pos: -52.395008,21.71115 parent: 1 - - uid: 9983 + - uid: 6957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,18.5 + pos: -35.398277,47.715622 parent: 1 - - uid: 9984 + - uid: 6958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,18.5 + pos: -32.460777,42.668747 parent: 1 - - uid: 10609 +- proto: DrinkMug + entities: + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,21.5 + pos: -9.328166,23.692848 parent: 1 - - uid: 10610 + - uid: 15013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,29.5 + pos: -9.625041,23.505348 parent: 1 - - uid: 10611 +- proto: DrinkMugBlack + entities: + - uid: 269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,21.5 + pos: -17.654377,-4.445471 parent: 1 - - uid: 10612 + - uid: 7964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,18.5 + pos: -54.71723,64.74812 parent: 1 - - uid: 10613 +- proto: DrinkMugBlue + entities: + - uid: 7948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,18.5 + pos: -54.232857,64.76375 parent: 1 - - uid: 10614 +- proto: DrinkMugHeart + entities: + - uid: 1489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,29.5 + pos: 23.29282,42.502815 parent: 1 - - uid: 10615 +- proto: DrinkMugMetal + entities: + - uid: 7949 components: - type: Transform - pos: -101.5,32.5 + pos: -47.25018,59.484123 parent: 1 - - uid: 10616 +- proto: DrinkMugOne + entities: + - uid: 270 components: - type: Transform - pos: -93.5,32.5 + pos: -17.310627,-4.257971 parent: 1 -- proto: Error + - uid: 14941 + components: + - type: Transform + pos: -54.474243,-12.528257 + parent: 1 +- proto: DrinkMugRed entities: - - uid: 3615 + - uid: 9936 components: - type: Transform - pos: -28.521805,-11.50697 + pos: -54.27973,64.43562 parent: 1 -- proto: EuphoniumInstrument +- proto: DrinkTeacup entities: - - uid: 6336 + - uid: 2999 components: - type: Transform - pos: 14.586781,52.45568 + pos: 24.668903,14.540461 parent: 1 -- proto: ExosuitFabricator + - uid: 3000 + components: + - type: Transform + pos: 24.262653,14.759211 + parent: 1 +- proto: DrinkWaterJug entities: - - uid: 240 + - uid: 577 components: - type: Transform - pos: 2.5,-0.5 + pos: 19.083464,-11.315445 parent: 1 -- proto: ExtinguisherCabinet +- proto: DrinkWhiskeyBottleFull entities: - - uid: 2843 + - uid: 7935 components: - type: Transform - pos: -18.5,30.5 + pos: -58.33147,64.88806 parent: 1 - - uid: 3971 + - uid: 10977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,7.5 + pos: -70.71854,40.09562 parent: 1 - - uid: 4746 + - uid: 14211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-12.5 + pos: -72.32807,15.938257 parent: 1 - - uid: 12036 + - uid: 14284 components: - type: Transform - pos: -46.5,-10.5 + pos: -72.70246,47.903915 parent: 1 - - uid: 12037 +- proto: DrinkWhiskeyColaGlass + entities: + - uid: 7936 components: - type: Transform - pos: -35.5,-4.5 + pos: -58.70647,64.85681 parent: 1 - - uid: 12038 +- proto: DrinkWhiskeyGlass + entities: + - uid: 10975 components: - type: Transform - pos: -55.5,9.5 + pos: -72.39041,41.78312 parent: 1 - - uid: 12220 + - uid: 10976 components: - type: Transform - pos: -55.5,29.5 + pos: -70.37479,39.56437 parent: 1 - - uid: 13655 + - uid: 14212 components: - type: Transform - pos: -39.5,47.5 + pos: -72.81245,15.797632 parent: 1 - - uid: 13682 + - uid: 14285 components: - type: Transform - pos: -35.5,34.5 + pos: -72.34309,47.685165 parent: 1 - - uid: 13683 +- proto: DrinkWineBottleFull + entities: + - uid: 1815 components: - type: Transform - pos: -26.5,44.5 + pos: 16.737038,3.7859516 parent: 1 - - uid: 13684 +- proto: DrinkWineGlass + entities: + - uid: 1814 components: - type: Transform - pos: -27.5,29.5 + pos: 16.440163,3.6297016 parent: 1 - - uid: 13764 + - uid: 6338 components: - type: Transform - pos: -39.5,22.5 + pos: 2.5328588,49.783806 parent: 1 - - uid: 13792 +- proto: Dropper + entities: + - uid: 1953 components: - type: Transform - pos: -35.5,9.5 + pos: -4.4894724,20.885618 parent: 1 - - uid: 13793 + - uid: 1954 components: - type: Transform - pos: -55.5,-1.5 + pos: -4.4894724,20.666868 parent: 1 - - uid: 13796 + - uid: 1955 components: - type: Transform - pos: -26.5,-9.5 + pos: -4.4894724,20.463743 parent: 1 - - uid: 13797 +- proto: ElectricGuitarInstrument + entities: + - uid: 4138 components: - type: Transform - pos: -19.5,-2.5 + pos: -22.497261,24.539072 parent: 1 - - uid: 13798 +- proto: EmergencyLight + entities: + - uid: 3665 components: - type: Transform - pos: 6.5,-9.5 + rot: 3.141592653589793 rad + pos: -44.5,-13.5 parent: 1 - - uid: 13799 + - uid: 4600 components: - type: Transform - pos: -18.5,-12.5 + pos: -48.5,6.5 parent: 1 - - uid: 13800 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 4890 components: - type: Transform - pos: -7.5,-3.5 + rot: 3.141592653589793 rad + pos: -71.5,-11.5 parent: 1 - - uid: 13801 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 5800 components: - type: Transform - pos: -14.5,11.5 + rot: 1.5707963267948966 rad + pos: -9.5,23.5 parent: 1 - - uid: 13802 + - uid: 7220 components: - type: Transform - pos: -10.5,23.5 + rot: 3.141592653589793 rad + pos: -47.5,67.5 parent: 1 - - uid: 13804 + - uid: 7331 components: - type: Transform - pos: -25.5,14.5 + rot: -1.5707963267948966 rad + pos: -54.5,73.5 parent: 1 - - uid: 13805 + - uid: 7898 components: - type: Transform - pos: -2.5,35.5 + rot: -1.5707963267948966 rad + pos: -50.5,70.5 parent: 1 - - uid: 13810 + - uid: 8484 components: - type: Transform - pos: 29.5,17.5 + rot: 3.141592653589793 rad + pos: -53.5,76.5 parent: 1 - - uid: 13811 + - uid: 11062 components: - type: Transform - pos: 18.5,0.5 + rot: -1.5707963267948966 rad + pos: -56.5,-3.5 parent: 1 - - uid: 13812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14134 components: - type: Transform - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: -38.5,66.5 parent: 1 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 15292 + - uid: 14141 components: - type: Transform - pos: -2.5,18.5 + rot: 3.141592653589793 rad + pos: -40.5,61.5 parent: 1 - - uid: 15293 + - uid: 14864 components: - type: Transform - pos: 1.5,18.5 + rot: -1.5707963267948966 rad + pos: -77.5,42.5 parent: 1 - - uid: 15294 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14865 components: - type: Transform - pos: 5.5,15.5 + rot: 3.141592653589793 rad + pos: -80.5,29.5 parent: 1 - - uid: 15295 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14866 components: - type: Transform - pos: 8.5,27.5 + rot: 1.5707963267948966 rad + pos: -74.5,29.5 parent: 1 - - uid: 15296 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14867 components: - type: Transform - pos: 5.5,36.5 + rot: 1.5707963267948966 rad + pos: -67.5,29.5 parent: 1 - - uid: 15297 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14868 components: - type: Transform - pos: -19.5,56.5 + rot: 3.141592653589793 rad + pos: -59.5,31.5 parent: 1 - - uid: 15298 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14869 components: - type: Transform - pos: -18.5,61.5 + rot: -1.5707963267948966 rad + pos: -79.5,23.5 parent: 1 - - uid: 15299 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14870 components: - type: Transform - pos: -9.5,58.5 + pos: -68.5,23.5 parent: 1 - - uid: 15300 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14871 components: - type: Transform - pos: -60.5,56.5 + rot: 1.5707963267948966 rad + pos: -58.5,42.5 parent: 1 - - uid: 15301 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14872 components: - type: Transform - pos: -53.5,59.5 + rot: -1.5707963267948966 rad + pos: -46.5,40.5 parent: 1 - - uid: 15302 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14873 components: - type: Transform - pos: -45.5,55.5 + rot: 3.141592653589793 rad + pos: -50.5,31.5 parent: 1 - - uid: 15304 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14874 components: - type: Transform - pos: -53.5,67.5 + rot: -1.5707963267948966 rad + pos: -56.5,22.5 parent: 1 - - uid: 15305 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14875 components: - type: Transform - pos: -57.5,63.5 + rot: -1.5707963267948966 rad + pos: -56.5,8.5 parent: 1 - - uid: 15306 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14876 components: - type: Transform - pos: -56.5,88.5 + pos: -68.5,6.5 parent: 1 - - uid: 15307 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14879 components: - type: Transform - pos: -62.5,82.5 + rot: 1.5707963267948966 rad + pos: -41.5,3.5 parent: 1 - - uid: 15308 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14880 components: - type: Transform - pos: -49.5,82.5 + pos: -35.5,-5.5 parent: 1 - - uid: 15317 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,19.5 + pos: -38.5,15.5 parent: 1 - - uid: 15318 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,22.5 + rot: -1.5707963267948966 rad + pos: -28.5,26.5 parent: 1 - - uid: 15319 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,31.5 + pos: -33.5,33.5 parent: 1 - - uid: 15320 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,42.5 + rot: 3.141592653589793 rad + pos: -39.5,35.5 parent: 1 - - uid: 15321 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,29.5 + pos: -35.5,47.5 parent: 1 - - uid: 15322 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,18.5 + pos: -44.5,45.5 parent: 1 - - uid: 15323 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,52.5 parent: 1 - - uid: 15324 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,38.5 + pos: -22.5,40.5 parent: 1 - - uid: 15325 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,48.5 + pos: -20.5,48.5 parent: 1 - - uid: 15326 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,38.5 + rot: 3.141592653589793 rad + pos: -20.5,31.5 parent: 1 -- proto: FaxMachineBase - entities: - - uid: 303 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14892 components: - type: Transform - pos: -0.5,-3.5 + rot: -1.5707963267948966 rad + pos: -22.5,27.5 parent: 1 - - type: FaxMachine - name: Science - - uid: 586 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14893 components: - type: Transform - pos: -1.5,1.5 + rot: 1.5707963267948966 rad + pos: -17.5,40.5 parent: 1 - - type: FaxMachine - name: RD Office - - uid: 2320 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14894 components: - type: Transform - pos: 10.5,25.5 + pos: -11.5,49.5 parent: 1 - - type: FaxMachine - name: Medical - - uid: 3745 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14895 components: - type: Transform - pos: -46.5,2.5 + rot: 1.5707963267948966 rad + pos: -18.5,56.5 parent: 1 - - type: FaxMachine - name: Cargo - - uid: 5809 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14896 components: - type: Transform - pos: -28.5,13.5 + rot: -1.5707963267948966 rad + pos: -20.5,55.5 parent: 1 - - type: FaxMachine - name: Library - - uid: 7545 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14897 components: - type: Transform - pos: -19.5,48.5 + rot: 3.141592653589793 rad + pos: -18.5,62.5 parent: 1 - - type: FaxMachine - name: HoP Office - - uid: 7989 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14898 components: - type: Transform - pos: -55.5,58.5 + pos: -9.5,57.5 parent: 1 - - type: FaxMachine - name: Security - - uid: 10803 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14899 components: - type: Transform - pos: -36.5,37.5 + rot: 3.141592653589793 rad + pos: -9.5,27.5 parent: 1 - - type: FaxMachine - name: Bar - - uid: 10901 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14900 components: - type: Transform - pos: -10.5,55.5 + rot: 1.5707963267948966 rad + pos: -13.5,21.5 parent: 1 - - type: FaxMachine - name: Bridge - - uid: 13602 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14901 components: - type: Transform - pos: -64.5,25.5 + rot: -1.5707963267948966 rad + pos: -11.5,10.5 parent: 1 - - type: FaxMachine - name: Engineering -- proto: FaxMachineCaptain - entities: - - uid: 10900 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14902 components: - type: Transform - pos: -6.5,61.5 + rot: 1.5707963267948966 rad + pos: -28.5,12.5 parent: 1 -- proto: FigureSpawner - entities: - - uid: 3516 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14903 components: - type: Transform - pos: -19.5,-10.5 + pos: -25.5,18.5 parent: 1 - - uid: 5546 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14904 components: - type: Transform - pos: -52.5,27.5 + rot: 3.141592653589793 rad + pos: -19.5,4.5 parent: 1 -- proto: filingCabinetDrawer - entities: - - uid: 5509 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14905 components: - type: Transform - pos: -43.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,4.5 parent: 1 - - uid: 7397 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14906 components: - type: Transform - pos: 11.5,52.5 + pos: 7.5,6.5 parent: 1 -- proto: filingCabinetTall - entities: - - uid: 7541 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14907 components: - type: Transform - pos: -22.5,44.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 1 -- proto: FireAlarm - entities: - - uid: 318 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,0.5 + pos: 25.5,9.5 parent: 1 - - type: DeviceList - devices: - - 1749 - - 1741 - - 1747 - - 1750 - - 14970 - - uid: 4747 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-12.5 + rot: -1.5707963267948966 rad + pos: 28.5,19.5 parent: 1 - - type: DeviceList - devices: - - 4912 - - 4913 - - 4126 - - uid: 8961 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,58.5 + rot: 1.5707963267948966 rad + pos: 16.5,13.5 parent: 1 - - type: DeviceList - devices: - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - - uid: 8963 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14911 components: - type: Transform - pos: -48.5,66.5 + rot: -1.5707963267948966 rad + pos: 17.5,1.5 parent: 1 - - type: DeviceList - devices: - - 8579 - - 8580 - - 8581 - - 5726 - - 5723 - - 8543 - - 8542 - - 8544 - - 8545 - - 8849 - - 8844 - - 8848 - - 8843 - - 8758 - - 8845 - - 8842 - - 8846 - - 8760 - - 8847 - - 8759 - - uid: 8964 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,87.5 + pos: -1.5,-1.5 parent: 1 - - type: DeviceList - devices: - - 5742 - - 5579 - - 5501 - - 5496 - - uid: 8966 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14913 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,87.5 + pos: 2.5,0.5 parent: 1 - - type: DeviceList - devices: - - 5742 - - 5579 - - 5501 - - 5496 - - uid: 10691 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,22.5 + pos: -16.5,-1.5 parent: 1 - - type: DeviceList - devices: - - 14304 - - 14302 - - 10686 - - 10687 - - 14303 - - 10684 - - 10685 - - 10682 - - 10683 - - uid: 13041 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,44.5 + pos: -12.5,-10.5 parent: 1 - - type: DeviceList - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - 8573 - - 8574 - - uid: 13046 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,30.5 + pos: 2.5,-8.5 parent: 1 - - type: DeviceList - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - - uid: 13050 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14917 components: - type: Transform - pos: -67.5,7.5 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 1 - - type: DeviceList - devices: - - 5213 - - 5214 - - 5215 - - 11812 - - 11813 - - 11811 - - 11814 - - uid: 13052 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-4.5 + pos: -46.5,55.5 parent: 1 - - type: DeviceList - devices: - - 5216 - - 5217 - - 5218 - - uid: 13056 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14955 components: - type: Transform - pos: -39.5,7.5 + pos: -46.5,65.5 parent: 1 - - type: DeviceList - devices: - - 4112 - - 4111 - - 4110 - - 4114 - - 4115 - - 4116 - - 4109 - - 4108 - - 4107 - - uid: 13059 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 + rot: 1.5707963267948966 rad + pos: -56.5,64.5 parent: 1 - - type: DeviceList - devices: - - 3718 - - 3719 - - 3720 - - 3721 - - 3722 - - 3723 - - 3724 - - 3717 - - 3716 - - 3726 - - uid: 13060 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14958 components: - type: Transform - pos: -22.5,7.5 + rot: 3.141592653589793 rad + pos: -59.5,60.5 parent: 1 - - type: DeviceList - devices: - - 1766 - - 1765 - - 1764 - - 4107 - - 4108 - - 4109 - - uid: 13062 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,17.5 + pos: -57.5,56.5 parent: 1 - - type: DeviceList - devices: - - 4114 - - 4115 - - 4116 - - 4117 - - 4118 - - 4119 - - 4120 - - 4121 - - 4122 - - 4123 - - 5227 - - 5226 - - 5225 - - uid: 13064 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14960 components: - type: Transform - pos: -39.5,40.5 + rot: 1.5707963267948966 rad + pos: -65.5,53.5 parent: 1 - - type: DeviceList - devices: - - 5233 - - 5232 - - 5231 - - 5225 - - 5226 - - 5227 - - 5228 - - 5229 - - 5230 - - 9786 - - 9787 - - 9788 - - 9789 - - 9784 - - 9785 - - uid: 13066 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,44.5 + pos: -52.5,47.5 parent: 1 - - type: DeviceList - devices: - - 9784 - - 9785 - - 9790 - - 9791 - - 9792 - - 9793 - - uid: 13068 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14962 components: - type: Transform - pos: -28.5,34.5 + rot: 1.5707963267948966 rad + pos: -64.5,41.5 parent: 1 - - type: DeviceList - devices: - - 5228 - - 5229 - - 5230 - - 5234 - - 5235 - - 5236 - - uid: 13070 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,41.5 + rot: 3.141592653589793 rad + pos: -26.5,53.5 parent: 1 - - type: DeviceList - devices: - - 9790 - - 9791 - - 9793 - - 9792 - - uid: 13072 + - uid: 15309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,41.5 + pos: -4.5,23.5 parent: 1 - - type: DeviceList - devices: - - 5237 - - 5238 - - 5239 - - uid: 13075 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15310 components: - type: Transform - pos: -21.5,43.5 + pos: -1.5,34.5 parent: 1 - - type: DeviceList - devices: - - 9819 - - uid: 13078 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15311 components: - type: Transform - pos: -11.5,34.5 + rot: -1.5707963267948966 rad + pos: 4.5,38.5 parent: 1 - - type: DeviceList - devices: - - 5237 - - 5238 - - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - - 3064 - - 3122 - - 2814 - - 2881 - - 3175 - - 3176 - - 3177 - - 2866 - - 2865 - - uid: 13080 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15312 components: - type: Transform - pos: -14.5,58.5 + pos: 8.5,37.5 parent: 1 - - type: DeviceList - devices: - - 6496 - - 6497 - - 9808 - - 6498 - - 6499 - - 6500 - - 6501 - - 6502 - - 6503 - - 6504 - - uid: 13097 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 + rot: 3.141592653589793 rad + pos: 9.5,28.5 parent: 1 - - type: DeviceList - devices: - - 1763 - - 1762 - - 1761 - - 3177 - - 3176 - - 3175 - - uid: 13098 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15314 components: - type: Transform - pos: -2.5,7.5 + rot: 3.141592653589793 rad + pos: 8.5,22.5 parent: 1 - - type: DeviceList - devices: - - 1758 - - 1759 - - 1760 - - 1768 - - 1767 - - 1753 - - 1752 - - uid: 13101 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 7.5,17.5 parent: 1 - - type: DeviceList - devices: - - 1752 - - 1753 - - uid: 13102 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15316 components: - type: Transform - pos: 20.5,7.5 + rot: 3.141592653589793 rad + pos: 1.5,14.5 parent: 1 - - type: DeviceList - devices: - - 1767 - - 1768 - - 1755 - - 1754 - - uid: 13104 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 15360 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,4.5 + pos: 2.5,42.5 parent: 1 - - type: DeviceList - devices: - - 1755 - - 1754 - - uid: 13300 + - uid: 15363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,34.5 + pos: -43.5,63.5 parent: 1 - - type: DeviceList - devices: - - 2055 - - 2868 - - 2867 - - 2869 - - 13306 - - 13305 - - 2052 - - 2051 - - 13309 - - 13308 - - 13307 - - 2053 - - 2054 - - 15082 - - 15083 - - uid: 13303 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 9198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 + pos: 11.616604,24.635866 parent: 1 - - type: DeviceList - devices: - - 13301 - - 13302 - - 2051 - - 2052 - - 2880 - - 2878 - - 2879 - - 2869 - - 2870 - - 13307 - - 13308 - - 13309 - - 15079 - - 15080 - - 15081 - - uid: 14298 +- proto: Emitter + entities: + - uid: 9982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,37.5 + rot: 3.141592653589793 rad + pos: -78.5,18.5 parent: 1 - - type: DeviceList - devices: - - 10676 - - 10675 - - 10674 - - 10673 - - 10672 - - 10671 - - 10670 - - 10669 - - 10668 - - 10667 - - 10666 - - uid: 14299 + - uid: 9983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,31.5 + rot: 3.141592653589793 rad + pos: -77.5,18.5 parent: 1 - - type: DeviceList - devices: - - 10685 - - 10684 - - 10688 - - 10689 - - uid: 14305 + - uid: 9984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,25.5 + rot: 3.141592653589793 rad + pos: -76.5,18.5 parent: 1 - - type: DeviceList - devices: - - 14303 - - 10686 - - 10687 - - 10684 - - 10685 - - uid: 14306 + - uid: 10609 components: - type: Transform - pos: -80.5,28.5 + rot: -1.5707963267948966 rad + pos: -90.5,21.5 parent: 1 - - type: DeviceList - devices: - - 14303 - - 10683 - - 10682 -- proto: FireAxeCabinet - entities: - - uid: 1667 + - uid: 10610 components: - type: Transform - pos: 14.5,-6.5 + rot: -1.5707963267948966 rad + pos: -90.5,29.5 parent: 1 -- proto: FireAxeCabinetFilled - entities: - - uid: 13766 + - uid: 10611 components: - type: Transform - pos: -10.5,58.5 + rot: 1.5707963267948966 rad + pos: -104.5,21.5 parent: 1 - - uid: 15145 + - uid: 10612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,33.5 + rot: 3.141592653589793 rad + pos: -93.5,18.5 parent: 1 -- proto: Firelock - entities: - - uid: 1742 + - uid: 10613 components: - type: Transform - pos: 22.5,1.5 + rot: 3.141592653589793 rad + pos: -101.5,18.5 parent: 1 - - uid: 1743 + - uid: 10614 components: - type: Transform - pos: 23.5,1.5 + rot: 1.5707963267948966 rad + pos: -104.5,29.5 parent: 1 - - uid: 1744 + - uid: 10615 components: - type: Transform - pos: 20.5,-5.5 + pos: -101.5,32.5 parent: 1 - - uid: 1745 + - uid: 10616 components: - type: Transform - pos: 20.5,-4.5 + pos: -93.5,32.5 parent: 1 - - uid: 1746 +- proto: Error + entities: + - uid: 3615 components: - type: Transform - pos: 4.5,-3.5 + pos: -28.521805,-11.50697 parent: 1 - - uid: 3491 +- proto: EuphoniumInstrument + entities: + - uid: 6336 components: - type: Transform - pos: -21.5,-5.5 + pos: 14.586781,52.45568 parent: 1 - - uid: 5423 +- proto: ExosuitFabricator + entities: + - uid: 240 components: - type: Transform - pos: -29.5,-3.5 + pos: 2.5,-0.5 parent: 1 - - uid: 5433 +- proto: ExtinguisherCabinet + entities: + - uid: 2843 components: - type: Transform - pos: -28.5,-3.5 + pos: -18.5,30.5 parent: 1 - - uid: 5460 + - type: Fixtures + fixtures: {} + - uid: 3971 components: - type: Transform - pos: -20.5,-5.5 + rot: 3.141592653589793 rad + pos: -69.5,7.5 parent: 1 - - uid: 5464 + - type: Fixtures + fixtures: {} + - uid: 4746 components: - type: Transform - pos: -49.5,-10.5 + rot: 3.141592653589793 rad + pos: -67.5,-12.5 parent: 1 - - uid: 5465 + - type: Fixtures + fixtures: {} + - uid: 12036 components: - type: Transform - pos: -49.5,-9.5 + pos: -46.5,-10.5 parent: 1 - - uid: 5596 + - type: Fixtures + fixtures: {} + - uid: 12037 components: - type: Transform - pos: -20.5,15.5 + pos: -35.5,-4.5 parent: 1 - - uid: 5736 + - type: Fixtures + fixtures: {} + - uid: 12038 components: - type: Transform - pos: -21.5,20.5 + pos: -55.5,9.5 parent: 1 - - uid: 5751 + - type: Fixtures + fixtures: {} + - uid: 12220 components: - type: Transform - pos: -19.5,15.5 + pos: -55.5,29.5 parent: 1 - - uid: 7511 + - type: Fixtures + fixtures: {} + - uid: 13655 components: - type: Transform - pos: -32.5,51.5 + pos: -39.5,47.5 parent: 1 - - uid: 7570 + - type: Fixtures + fixtures: {} + - uid: 13682 components: - type: Transform - pos: 11.5,8.5 + pos: -35.5,34.5 parent: 1 - - uid: 8278 + - type: Fixtures + fixtures: {} + - uid: 13683 components: - type: Transform - pos: -30.5,14.5 + pos: -26.5,44.5 parent: 1 - - uid: 8992 + - type: Fixtures + fixtures: {} + - uid: 13684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,35.5 + pos: -27.5,29.5 parent: 1 - - uid: 9002 + - type: Fixtures + fixtures: {} + - uid: 13764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,34.5 + pos: -39.5,22.5 parent: 1 - - uid: 9802 + - type: Fixtures + fixtures: {} + - uid: 13792 components: - type: Transform - pos: -31.5,51.5 + pos: -35.5,9.5 parent: 1 - - uid: 9803 + - type: Fixtures + fixtures: {} + - uid: 13793 components: - type: Transform - pos: -25.5,42.5 + pos: -55.5,-1.5 parent: 1 - - uid: 9804 + - type: Fixtures + fixtures: {} + - uid: 13796 components: - type: Transform - pos: -24.5,42.5 + pos: -26.5,-9.5 parent: 1 - - uid: 9809 + - type: Fixtures + fixtures: {} + - uid: 13797 components: - type: Transform - pos: -5.5,46.5 + pos: -19.5,-2.5 parent: 1 - - uid: 9810 + - type: Fixtures + fixtures: {} + - uid: 13798 components: - type: Transform - pos: -5.5,47.5 + pos: 6.5,-9.5 parent: 1 - - uid: 9811 + - type: Fixtures + fixtures: {} + - uid: 13799 components: - type: Transform - pos: 12.5,40.5 + pos: -18.5,-12.5 parent: 1 - - uid: 9812 + - type: Fixtures + fixtures: {} + - uid: 13800 components: - type: Transform - pos: 12.5,39.5 + pos: -7.5,-3.5 parent: 1 - - uid: 9813 + - type: Fixtures + fixtures: {} + - uid: 13801 components: - type: Transform - pos: 14.5,44.5 + pos: -14.5,11.5 parent: 1 - - uid: 9814 + - type: Fixtures + fixtures: {} + - uid: 13804 components: - type: Transform - pos: 15.5,44.5 + pos: -25.5,14.5 parent: 1 - - uid: 9815 + - type: Fixtures + fixtures: {} + - uid: 13805 components: - type: Transform - pos: -3.5,38.5 + pos: -2.5,35.5 parent: 1 - - uid: 9816 + - type: Fixtures + fixtures: {} + - uid: 13810 components: - type: Transform - pos: -2.5,38.5 + pos: 29.5,17.5 parent: 1 - - uid: 9912 + - type: Fixtures + fixtures: {} + - uid: 13811 components: - type: Transform - pos: 16.5,37.5 + pos: 18.5,0.5 parent: 1 - - uid: 14189 + - type: Fixtures + fixtures: {} + - uid: 13812 components: - type: Transform - pos: -73.5,37.5 + pos: 3.5,3.5 parent: 1 - - uid: 14190 + - type: Fixtures + fixtures: {} +- proto: ExtinguisherCabinetFilled + entities: + - uid: 15003 components: - type: Transform - pos: -64.5,47.5 + rot: -1.5707963267948966 rad + pos: -10.5,20.5 parent: 1 - - uid: 14191 + - type: Fixtures + fixtures: {} + - uid: 15292 components: - type: Transform - pos: -64.5,47.5 + pos: -2.5,18.5 parent: 1 - - uid: 14192 + - type: Fixtures + fixtures: {} + - uid: 15293 components: - type: Transform - pos: -64.5,48.5 + pos: 1.5,18.5 parent: 1 - - uid: 14193 + - type: Fixtures + fixtures: {} + - uid: 15294 components: - type: Transform - pos: -67.5,38.5 + pos: 5.5,15.5 parent: 1 - - uid: 14194 + - type: Fixtures + fixtures: {} + - uid: 15295 components: - type: Transform - pos: -66.5,38.5 + pos: 8.5,27.5 parent: 1 - - uid: 14195 + - type: Fixtures + fixtures: {} + - uid: 15296 components: - type: Transform - pos: -62.5,17.5 + pos: 5.5,36.5 parent: 1 - - uid: 14196 + - type: Fixtures + fixtures: {} + - uid: 15297 components: - type: Transform - pos: -62.5,16.5 + pos: -19.5,56.5 parent: 1 - - uid: 14965 + - type: Fixtures + fixtures: {} + - uid: 15298 components: - type: Transform - pos: 16.5,25.5 + pos: -18.5,61.5 parent: 1 - - uid: 14966 + - type: Fixtures + fixtures: {} + - uid: 15299 components: - type: Transform - pos: 16.5,26.5 + pos: -9.5,58.5 parent: 1 - - uid: 14968 + - type: Fixtures + fixtures: {} + - uid: 15300 components: - type: Transform - pos: 11.5,9.5 + pos: -60.5,56.5 parent: 1 - - uid: 14969 + - type: Fixtures + fixtures: {} + - uid: 15301 components: - type: Transform - pos: -1.5,12.5 + pos: -53.5,59.5 parent: 1 - - uid: 14975 + - type: Fixtures + fixtures: {} + - uid: 15302 components: - type: Transform - pos: -6.5,18.5 + pos: -45.5,55.5 parent: 1 - - uid: 15040 + - type: Fixtures + fixtures: {} + - uid: 15304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: -53.5,67.5 parent: 1 - - uid: 15063 + - type: Fixtures + fixtures: {} + - uid: 15305 components: - type: Transform - pos: -44.5,12.5 + pos: -57.5,63.5 parent: 1 - - uid: 15064 + - type: Fixtures + fixtures: {} + - uid: 15306 components: - type: Transform - pos: -50.5,16.5 + pos: -56.5,88.5 parent: 1 - - uid: 15065 + - type: Fixtures + fixtures: {} + - uid: 15307 components: - type: Transform - pos: -45.5,22.5 + pos: -62.5,82.5 parent: 1 - - uid: 15066 + - type: Fixtures + fixtures: {} + - uid: 15308 components: - type: Transform - pos: -44.5,22.5 + pos: -49.5,82.5 parent: 1 - - uid: 15069 + - type: Fixtures + fixtures: {} + - uid: 15317 components: - type: Transform - pos: -21.5,21.5 + rot: 1.5707963267948966 rad + pos: -75.5,19.5 parent: 1 - - uid: 15070 + - type: Fixtures + fixtures: {} + - uid: 15318 components: - type: Transform - pos: -20.5,22.5 + rot: 1.5707963267948966 rad + pos: -83.5,22.5 parent: 1 - - uid: 15071 + - type: Fixtures + fixtures: {} + - uid: 15319 components: - type: Transform - pos: -19.5,22.5 + rot: 1.5707963267948966 rad + pos: -75.5,31.5 parent: 1 - - uid: 15104 + - type: Fixtures + fixtures: {} + - uid: 15320 components: - type: Transform - pos: -23.5,50.5 + rot: 1.5707963267948966 rad + pos: -76.5,42.5 parent: 1 - - uid: 15105 + - type: Fixtures + fixtures: {} + - uid: 15321 components: - type: Transform - pos: -23.5,51.5 + rot: 1.5707963267948966 rad + pos: -65.5,29.5 parent: 1 - - uid: 15289 + - type: Fixtures + fixtures: {} + - uid: 15322 components: - type: Transform - pos: 22.5,20.5 + rot: 1.5707963267948966 rad + pos: -66.5,18.5 parent: 1 - - uid: 15290 + - type: Fixtures + fixtures: {} + - uid: 15323 components: - type: Transform - pos: 23.5,20.5 + rot: 1.5707963267948966 rad + pos: -62.5,46.5 parent: 1 - - uid: 15849 + - type: Fixtures + fixtures: {} + - uid: 15324 components: - type: Transform - pos: 16.5,38.5 + rot: 1.5707963267948966 rad + pos: -59.5,38.5 parent: 1 -- proto: FirelockEdge - entities: - - uid: 219 + - type: Fixtures + fixtures: {} + - uid: 15325 components: - type: Transform - pos: -5.5,-13.5 + rot: 1.5707963267948966 rad + pos: -52.5,48.5 parent: 1 - - uid: 285 + - type: Fixtures + fixtures: {} + - uid: 15326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 + rot: 1.5707963267948966 rad + pos: -45.5,38.5 parent: 1 - - uid: 1747 + - type: Fixtures + fixtures: {} +- proto: FaxMachineBase + entities: + - uid: 303 components: - type: Transform - pos: -1.5,-5.5 + pos: -0.5,-3.5 parent: 1 - - uid: 1748 + - type: FaxMachine + name: Science + - uid: 586 components: - type: Transform - pos: 28.5,-5.5 + pos: -1.5,1.5 parent: 1 - - uid: 1750 + - type: FaxMachine + name: RD Office + - uid: 2320 components: - type: Transform - pos: -16.5,-5.5 + pos: 10.5,25.5 parent: 1 - - uid: 2051 + - type: FaxMachine + name: Medical + - uid: 3745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + pos: -46.5,2.5 parent: 1 - - uid: 2052 + - type: FaxMachine + name: Cargo + - uid: 5809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 + pos: -28.5,13.5 parent: 1 - - uid: 2053 + - type: FaxMachine + name: Library + - uid: 7545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,33.5 + pos: -19.5,48.5 parent: 1 - - uid: 2054 + - type: FaxMachine + name: HoP Office + - uid: 7989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,34.5 + pos: -55.5,58.5 parent: 1 - - uid: 2055 + - type: FaxMachine + name: Security + - uid: 10345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,33.5 + pos: -27.5,52.5 parent: 1 - - uid: 2865 + - type: FaxMachine + name: Кабинет "Офицера Синего Щита" + - uid: 10803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,33.5 + pos: -36.5,37.5 parent: 1 - - uid: 2866 + - type: FaxMachine + name: Bar + - uid: 10901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,31.5 + pos: -10.5,55.5 parent: 1 - - uid: 2870 + - type: FaxMachine + name: Bridge + - uid: 13602 components: - type: Transform - pos: -3.5,19.5 + pos: -64.5,25.5 parent: 1 - - uid: 2881 + - type: FaxMachine + name: Engineering +- proto: FaxMachineCaptain + entities: + - uid: 10900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 + pos: -6.5,61.5 parent: 1 - - uid: 3544 +- proto: filingCabinetDrawer + entities: + - uid: 5509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 + pos: -43.5,0.5 parent: 1 - - uid: 3554 + - uid: 7397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-9.5 + pos: 11.5,52.5 parent: 1 - - uid: 3672 +- proto: filingCabinetTall + entities: + - uid: 7541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-8.5 + pos: -22.5,44.5 parent: 1 - - uid: 3674 +- proto: filingCabinetTallRandom + entities: + - uid: 15117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-8.5 + pos: -26.5,55.5 parent: 1 - - uid: 3677 +- proto: FireAlarm + entities: + - uid: 318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 + rot: 1.5707963267948966 rad + pos: -10.5,0.5 parent: 1 - - uid: 3740 + - type: DeviceList + devices: + - 1749 + - 1741 + - 1747 + - 1750 + - 14970 + - type: Fixtures + fixtures: {} + - uid: 4747 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: -63.5,-12.5 parent: 1 - - uid: 3770 + - type: DeviceList + devices: + - 4912 + - 4913 + - 4126 + - type: Fixtures + fixtures: {} + - uid: 8961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 + rot: -1.5707963267948966 rad + pos: -49.5,58.5 parent: 1 - - uid: 3970 + - type: DeviceList + devices: + - 8573 + - 8574 + - 8578 + - 8576 + - 8575 + - type: Fixtures + fixtures: {} + - uid: 8963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-10.5 + pos: -48.5,66.5 parent: 1 - - uid: 4117 + - type: DeviceList + devices: + - 8579 + - 8580 + - 8581 + - 5726 + - 5723 + - 8543 + - 8542 + - 8544 + - 8545 + - type: Fixtures + fixtures: {} + - uid: 8964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 + rot: 1.5707963267948966 rad + pos: -53.5,87.5 parent: 1 - - uid: 4118 + - type: DeviceList + devices: + - 5742 + - 5579 + - 5501 + - 5496 + - type: Fixtures + fixtures: {} + - uid: 8966 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,24.5 + pos: -56.5,87.5 parent: 1 - - uid: 4119 + - type: DeviceList + devices: + - 5742 + - 5579 + - 5501 + - 5496 + - type: Fixtures + fixtures: {} + - uid: 10691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,25.5 + rot: 1.5707963267948966 rad + pos: -75.5,22.5 parent: 1 - - uid: 4120 + - type: DeviceList + devices: + - 14304 + - 14302 + - 10686 + - 10687 + - 14303 + - 10684 + - 10685 + - 10682 + - 10683 + - type: Fixtures + fixtures: {} + - uid: 13041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,26.5 + rot: 1.5707963267948966 rad + pos: -50.5,44.5 parent: 1 - - uid: 4121 + - type: DeviceList + devices: + - 7995 + - 7996 + - 7997 + - 8003 + - 8002 + - 8001 + - 8573 + - 8574 + - type: Fixtures + fixtures: {} + - uid: 13046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,27.5 + rot: 3.141592653589793 rad + pos: -46.5,30.5 parent: 1 - - uid: 4122 + - type: DeviceList + devices: + - 5240 + - 5241 + - 5242 + - 7995 + - 7996 + - 7997 + - 5233 + - 5232 + - 5231 + - type: Fixtures + fixtures: {} + - uid: 13050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,28.5 + pos: -67.5,7.5 parent: 1 - - uid: 4123 + - type: DeviceList + devices: + - 5213 + - 5214 + - 5215 + - type: Fixtures + fixtures: {} + - uid: 13052 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,29.5 + pos: -55.5,-4.5 parent: 1 - - uid: 5461 + - type: DeviceList + devices: + - 5216 + - 5217 + - 5218 + - type: Fixtures + fixtures: {} + - uid: 13056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 + pos: -39.5,7.5 parent: 1 - - uid: 5496 + - type: DeviceList + devices: + - 4112 + - 4111 + - 4110 + - 4114 + - 4115 + - 4116 + - 4109 + - 4108 + - 4107 + - type: Fixtures + fixtures: {} + - uid: 13059 components: - type: Transform - pos: -50.5,82.5 + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 parent: 1 - - uid: 5501 + - type: DeviceList + devices: + - 3718 + - 3719 + - 3720 + - 3721 + - 3722 + - 3723 + - 3724 + - 3717 + - 3716 + - 3726 + - type: Fixtures + fixtures: {} + - uid: 13060 components: - type: Transform - pos: -52.5,82.5 + pos: -22.5,7.5 parent: 1 - - uid: 5579 + - type: DeviceList + devices: + - 1766 + - 1765 + - 1764 + - 4107 + - 4108 + - 4109 + - type: Fixtures + fixtures: {} + - uid: 13062 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,83.5 + pos: -39.5,17.5 parent: 1 - - uid: 5723 + - type: DeviceList + devices: + - 4114 + - 4115 + - 4116 + - 4117 + - 4118 + - 4119 + - 4120 + - 4121 + - 4122 + - 4123 + - 5227 + - 5226 + - 5225 + - type: Fixtures + fixtures: {} + - uid: 13064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,65.5 + pos: -39.5,40.5 parent: 1 - - uid: 5726 + - type: DeviceList + devices: + - 5233 + - 5232 + - 5231 + - 5225 + - 5226 + - 5227 + - 5228 + - 5229 + - 5230 + - 9786 + - 9787 + - 9788 + - 9789 + - 9784 + - 9785 + - type: Fixtures + fixtures: {} + - uid: 13066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,65.5 + rot: -1.5707963267948966 rad + pos: -30.5,44.5 parent: 1 - - uid: 5742 + - type: DeviceList + devices: + - 9784 + - 9785 + - 9790 + - 9791 + - 9792 + - 9793 + - type: Fixtures + fixtures: {} + - uid: 13068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,89.5 + pos: -28.5,34.5 parent: 1 - - uid: 6496 + - type: DeviceList + devices: + - 5228 + - 5229 + - 5230 + - 5234 + - 5235 + - 5236 + - type: Fixtures + fixtures: {} + - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - - uid: 6497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,55.5 + pos: -39.5,41.5 parent: 1 - - uid: 6498 + - type: DeviceList + devices: + - 9790 + - 9791 + - 9793 + - 9792 + - type: Fixtures + fixtures: {} + - uid: 13072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,59.5 + pos: -18.5,41.5 parent: 1 - - uid: 6499 + - type: DeviceList + devices: + - 5237 + - 5238 + - 5239 + - type: Fixtures + fixtures: {} + - uid: 13075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,60.5 + pos: -21.5,43.5 parent: 1 - - uid: 6500 + - type: DeviceList + devices: + - 9819 + - type: Fixtures + fixtures: {} + - uid: 13078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,61.5 + pos: -11.5,34.5 parent: 1 - - uid: 6501 + - type: DeviceList + devices: + - 5237 + - 5238 + - 5239 + - 3064 + - 3122 + - 2814 + - 2881 + - 3175 + - 3176 + - 3177 + - 2866 + - 2865 + - type: Fixtures + fixtures: {} + - uid: 13080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,61.5 + pos: -14.5,58.5 parent: 1 - - uid: 6502 + - type: DeviceList + devices: + - 6496 + - 6497 + - 9808 + - 6498 + - 6499 + - 6500 + - 6501 + - 6502 + - 6503 + - 6504 + - type: Fixtures + fixtures: {} + - uid: 13097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,61.5 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 parent: 1 - - uid: 6503 + - type: DeviceList + devices: + - 1763 + - 1762 + - 1761 + - 3177 + - 3176 + - 3175 + - type: Fixtures + fixtures: {} + - uid: 13098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,60.5 + pos: -2.5,7.5 parent: 1 - - uid: 6504 + - type: DeviceList + devices: + - 1758 + - 1759 + - 1760 + - 1768 + - 1767 + - 1753 + - 1752 + - type: Fixtures + fixtures: {} + - uid: 13101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,59.5 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 1 - - uid: 6505 + - type: DeviceList + devices: + - 1752 + - 1753 + - type: Fixtures + fixtures: {} + - uid: 13102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,57.5 + pos: 20.5,7.5 parent: 1 - - uid: 6506 + - type: DeviceList + devices: + - 1767 + - 1768 + - 1755 + - 1754 + - type: Fixtures + fixtures: {} + - uid: 13104 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,57.5 + pos: 27.5,4.5 parent: 1 - - uid: 8324 + - type: DeviceList + devices: + - 1755 + - 1754 + - type: Fixtures + fixtures: {} + - uid: 13300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,23.5 + pos: 1.5,34.5 parent: 1 - - uid: 8544 + - type: DeviceList + devices: + - 2055 + - 2868 + - 2867 + - 2869 + - 13306 + - 13305 + - 2052 + - 2051 + - 13309 + - 13308 + - 13307 + - 2053 + - 2054 + - 15082 + - 15083 + - type: Fixtures + fixtures: {} + - uid: 13303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,58.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 1 - - uid: 8545 + - type: DeviceList + devices: + - 13301 + - 13302 + - 2051 + - 2052 + - 2880 + - 2878 + - 2879 + - 2869 + - 2870 + - 13307 + - 13308 + - 13309 + - 15079 + - 15080 + - 15081 + - type: Fixtures + fixtures: {} + - uid: 14298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,58.5 + rot: -1.5707963267948966 rad + pos: -76.5,37.5 parent: 1 - - uid: 8573 + - type: DeviceList + devices: + - 10676 + - 10675 + - 10674 + - 10673 + - 10672 + - 10671 + - 10670 + - 10669 + - 10668 + - 10667 + - 10666 + - type: Fixtures + fixtures: {} + - uid: 14299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,51.5 + rot: -1.5707963267948966 rad + pos: -72.5,31.5 parent: 1 - - uid: 8574 + - type: DeviceList + devices: + - 10685 + - 10684 + - 10688 + - 10689 + - type: Fixtures + fixtures: {} + - uid: 14305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,51.5 + rot: -1.5707963267948966 rad + pos: -72.5,25.5 parent: 1 - - uid: 8575 + - type: DeviceList + devices: + - 14303 + - 10686 + - 10687 + - 10684 + - 10685 + - type: Fixtures + fixtures: {} + - uid: 14306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,53.5 + pos: -80.5,28.5 parent: 1 - - uid: 8576 + - type: DeviceList + devices: + - 14303 + - 10683 + - 10682 + - type: Fixtures + fixtures: {} +- proto: FireAxeCabinet + entities: + - uid: 1667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,55.5 + pos: 14.5,-6.5 parent: 1 - - uid: 9784 + - type: Fixtures + fixtures: {} +- proto: FireAxeCabinetFilled + entities: + - uid: 13766 components: - type: Transform - pos: -36.5,41.5 + pos: -10.5,58.5 parent: 1 - - uid: 9785 + - type: Fixtures + fixtures: {} + - uid: 15145 components: - type: Transform - pos: -35.5,41.5 + rot: -1.5707963267948966 rad + pos: -75.5,33.5 parent: 1 - - uid: 9786 + - type: Fixtures + fixtures: {} +- proto: Firelock + entities: + - uid: 1742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,38.5 + pos: 22.5,1.5 parent: 1 - - uid: 9787 + - uid: 1743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,37.5 + pos: 23.5,1.5 parent: 1 - - uid: 9788 + - uid: 1744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,36.5 + pos: 20.5,-5.5 parent: 1 - - uid: 9789 + - uid: 1745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,35.5 + pos: 20.5,-4.5 parent: 1 - - uid: 9790 + - uid: 1746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,43.5 + pos: 4.5,-3.5 parent: 1 - - uid: 9791 + - uid: 3491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,44.5 + pos: -21.5,-5.5 parent: 1 - - uid: 9792 + - uid: 5423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,45.5 + pos: -29.5,-3.5 parent: 1 - - uid: 9793 + - uid: 5433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,46.5 + pos: -28.5,-3.5 parent: 1 - - uid: 9808 + - uid: 5460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,57.5 + pos: -20.5,-5.5 parent: 1 - - uid: 9850 + - uid: 5464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,36.5 + pos: -49.5,-10.5 parent: 1 - - uid: 9851 + - uid: 5465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,55.5 + pos: -49.5,-9.5 parent: 1 - - uid: 10666 + - uid: 5596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,35.5 + pos: -20.5,15.5 parent: 1 - - uid: 10667 + - uid: 5736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,34.5 + pos: -21.5,20.5 parent: 1 - - uid: 10668 + - uid: 5751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,33.5 + pos: -19.5,15.5 parent: 1 - - uid: 10669 + - uid: 7511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,33.5 + pos: -32.5,51.5 parent: 1 - - uid: 10670 + - uid: 7570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,33.5 + pos: 11.5,8.5 parent: 1 - - uid: 10671 + - uid: 8278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,33.5 + pos: -30.5,14.5 parent: 1 - - uid: 10672 + - uid: 8992 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,33.5 + pos: 20.5,35.5 parent: 1 - - uid: 10673 + - uid: 9002 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,33.5 + pos: 20.5,34.5 parent: 1 - - uid: 10674 + - uid: 9802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,33.5 + pos: -31.5,51.5 parent: 1 - - uid: 10675 + - uid: 9803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,33.5 + pos: -25.5,42.5 parent: 1 - - uid: 10676 + - uid: 9804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,33.5 + pos: -24.5,42.5 parent: 1 - - uid: 10682 + - uid: 9809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,27.5 + pos: -5.5,46.5 parent: 1 - - uid: 10683 + - uid: 9810 components: - type: Transform - pos: -84.5,23.5 + pos: -5.5,47.5 parent: 1 - - uid: 10860 + - uid: 9811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,51.5 + pos: 12.5,40.5 parent: 1 - - uid: 13301 + - uid: 9812 components: - type: Transform - pos: 3.5,19.5 + pos: 12.5,39.5 parent: 1 - - uid: 13302 + - uid: 9813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + pos: 14.5,44.5 parent: 1 - - uid: 13305 + - uid: 9814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 + pos: 15.5,44.5 parent: 1 - - uid: 13306 + - uid: 9815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,29.5 + pos: -3.5,38.5 parent: 1 - - uid: 14816 + - uid: 9816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,51.5 + pos: -2.5,38.5 parent: 1 - - uid: 14970 + - uid: 9912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 + pos: 16.5,37.5 parent: 1 - - uid: 14974 + - uid: 14189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -73.5,37.5 parent: 1 - - uid: 15079 + - uid: 14190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,16.5 + pos: -64.5,47.5 parent: 1 - - uid: 15080 + - uid: 14191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,15.5 + pos: -64.5,47.5 parent: 1 - - uid: 15081 + - uid: 14192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: -64.5,48.5 parent: 1 - - uid: 15082 + - uid: 14193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,35.5 + pos: -67.5,38.5 parent: 1 - - uid: 15083 + - uid: 14194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,40.5 + pos: -66.5,38.5 parent: 1 -- proto: FirelockGlass - entities: - - uid: 1741 + - uid: 14195 components: - type: Transform - pos: -7.5,3.5 + pos: -62.5,17.5 parent: 1 - - uid: 1749 + - uid: 14196 components: - type: Transform - pos: -10.5,1.5 + pos: -62.5,16.5 parent: 1 - - uid: 1752 + - uid: 14965 components: - type: Transform - pos: 10.5,3.5 + pos: 16.5,25.5 parent: 1 - - uid: 1753 + - uid: 14966 components: - type: Transform - pos: 11.5,3.5 + pos: 16.5,26.5 parent: 1 - - uid: 1754 + - uid: 14968 components: - type: Transform - pos: 24.5,6.5 + pos: 11.5,9.5 parent: 1 - - uid: 1755 + - uid: 14969 components: - type: Transform - pos: 24.5,5.5 + pos: -1.5,12.5 parent: 1 - - uid: 1758 + - uid: 14975 components: - type: Transform - pos: -10.5,6.5 + pos: -6.5,18.5 parent: 1 - - uid: 1759 + - uid: 15040 components: - type: Transform - pos: -10.5,5.5 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 parent: 1 - - uid: 1760 + - uid: 15063 components: - type: Transform - pos: -10.5,4.5 + pos: -44.5,12.5 parent: 1 - - uid: 1761 + - uid: 15064 components: - type: Transform - pos: -11.5,7.5 + pos: -50.5,16.5 parent: 1 - - uid: 1762 + - uid: 15065 components: - type: Transform - pos: -12.5,7.5 + pos: -45.5,22.5 parent: 1 - - uid: 1763 + - uid: 15066 components: - type: Transform - pos: -13.5,7.5 + pos: -44.5,22.5 parent: 1 - - uid: 1764 + - uid: 15069 components: - type: Transform - pos: -14.5,6.5 + pos: -21.5,21.5 parent: 1 - - uid: 1765 + - uid: 15070 components: - type: Transform - pos: -14.5,5.5 + pos: -20.5,22.5 parent: 1 - - uid: 1766 + - uid: 15071 components: - type: Transform - pos: -14.5,4.5 + pos: -19.5,22.5 parent: 1 - - uid: 1767 + - uid: 15289 components: - type: Transform - pos: 12.5,6.5 + pos: 22.5,20.5 parent: 1 - - uid: 1768 + - uid: 15290 components: - type: Transform - pos: 12.5,5.5 + pos: 23.5,20.5 parent: 1 - - uid: 2814 + - uid: 15849 components: - type: Transform - pos: -14.5,33.5 + pos: 16.5,38.5 parent: 1 - - uid: 2867 +- proto: FirelockEdge + entities: + - uid: 219 components: - type: Transform - pos: 1.5,29.5 + pos: -5.5,-13.5 parent: 1 - - uid: 2868 + - uid: 285 components: - type: Transform - pos: 1.5,30.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 1 - - uid: 2869 + - uid: 1747 components: - type: Transform - pos: -0.5,28.5 + pos: -1.5,-5.5 parent: 1 - - uid: 2878 + - uid: 1748 components: - type: Transform - pos: 1.5,25.5 + pos: 28.5,-5.5 parent: 1 - - uid: 2879 + - uid: 1750 components: - type: Transform - pos: 1.5,26.5 + pos: -16.5,-5.5 parent: 1 - - uid: 2880 + - uid: 2051 components: - type: Transform - pos: 1.5,23.5 + rot: 1.5707963267948966 rad + pos: 4.5,24.5 parent: 1 - - uid: 3064 + - uid: 2052 components: - type: Transform - pos: -14.5,31.5 + rot: 1.5707963267948966 rad + pos: 4.5,25.5 parent: 1 - - uid: 3122 + - uid: 2053 components: - type: Transform - pos: -14.5,32.5 + rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 1 - - uid: 3175 + - uid: 2054 components: - type: Transform - pos: -13.5,26.5 + rot: 3.141592653589793 rad + pos: 3.5,34.5 parent: 1 - - uid: 3176 + - uid: 2055 components: - type: Transform - pos: -12.5,26.5 + rot: -1.5707963267948966 rad + pos: 2.5,33.5 parent: 1 - - uid: 3177 + - uid: 2865 components: - type: Transform - pos: -11.5,26.5 + rot: 1.5707963267948966 rad + pos: -6.5,33.5 parent: 1 - - uid: 3716 + - uid: 2866 components: - type: Transform - pos: -41.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,31.5 parent: 1 - - uid: 3717 + - uid: 2870 components: - type: Transform - pos: -40.5,-0.5 + pos: -3.5,19.5 parent: 1 - - uid: 3718 + - uid: 2881 components: - type: Transform - pos: -39.5,0.5 + rot: 1.5707963267948966 rad + pos: -15.5,27.5 parent: 1 - - uid: 3719 + - uid: 3544 components: - type: Transform - pos: -39.5,1.5 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 parent: 1 - - uid: 3720 + - uid: 3554 components: - type: Transform - pos: -38.5,2.5 + rot: -1.5707963267948966 rad + pos: -45.5,-9.5 parent: 1 - - uid: 3721 + - uid: 3672 components: - type: Transform - pos: -37.5,2.5 + rot: 3.141592653589793 rad + pos: -35.5,-8.5 parent: 1 - - uid: 3722 + - uid: 3674 components: - type: Transform - pos: -36.5,2.5 + rot: 3.141592653589793 rad + pos: -34.5,-8.5 parent: 1 - - uid: 3723 + - uid: 3677 components: - type: Transform - pos: -35.5,1.5 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 parent: 1 - - uid: 3724 + - uid: 3740 components: - type: Transform - pos: -35.5,0.5 + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 1 - - uid: 3725 + - uid: 3770 components: - type: Transform - pos: -32.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 1 - - uid: 3726 + - uid: 3970 components: - type: Transform - pos: -35.5,-2.5 + rot: -1.5707963267948966 rad + pos: -75.5,-10.5 parent: 1 - - uid: 4107 + - uid: 4117 components: - type: Transform - pos: -30.5,4.5 + rot: -1.5707963267948966 rad + pos: -35.5,23.5 parent: 1 - - uid: 4108 + - uid: 4118 components: - type: Transform - pos: -30.5,5.5 + rot: -1.5707963267948966 rad + pos: -35.5,24.5 parent: 1 - - uid: 4109 + - uid: 4119 components: - type: Transform - pos: -30.5,6.5 + rot: -1.5707963267948966 rad + pos: -35.5,25.5 parent: 1 - - uid: 4110 + - uid: 4120 components: - type: Transform - pos: -42.5,4.5 + rot: -1.5707963267948966 rad + pos: -35.5,26.5 parent: 1 - - uid: 4111 + - uid: 4121 components: - type: Transform - pos: -42.5,5.5 + rot: -1.5707963267948966 rad + pos: -35.5,27.5 parent: 1 - - uid: 4112 + - uid: 4122 components: - type: Transform - pos: -42.5,6.5 + rot: -1.5707963267948966 rad + pos: -35.5,28.5 parent: 1 - - uid: 4114 + - uid: 4123 components: - type: Transform - pos: -38.5,8.5 + rot: -1.5707963267948966 rad + pos: -35.5,29.5 parent: 1 - - uid: 4115 + - uid: 5461 components: - type: Transform - pos: -37.5,8.5 + rot: 3.141592653589793 rad + pos: -17.5,-10.5 parent: 1 - - uid: 4116 + - uid: 5496 components: - type: Transform - pos: -36.5,8.5 + pos: -50.5,82.5 parent: 1 - - uid: 4126 + - uid: 5501 components: - type: Transform - pos: -59.5,-11.5 + pos: -52.5,82.5 parent: 1 - - uid: 4912 + - uid: 5552 components: - type: Transform - pos: -59.5,-9.5 + rot: -1.5707963267948966 rad + pos: -25.5,50.5 parent: 1 - - uid: 4913 + - uid: 5579 components: - type: Transform - pos: -59.5,-10.5 + rot: 1.5707963267948966 rad + pos: -57.5,83.5 parent: 1 - - uid: 5210 + - uid: 5723 components: - type: Transform - pos: -55.5,4.5 + rot: 3.141592653589793 rad + pos: -52.5,65.5 parent: 1 - - uid: 5211 + - uid: 5726 components: - type: Transform - pos: -55.5,5.5 + rot: 3.141592653589793 rad + pos: -50.5,65.5 parent: 1 - - uid: 5212 + - uid: 5742 components: - type: Transform - pos: -55.5,6.5 + rot: 1.5707963267948966 rad + pos: -57.5,89.5 parent: 1 - - uid: 5213 + - uid: 6496 components: - type: Transform - pos: -59.5,6.5 + rot: -1.5707963267948966 rad + pos: -18.5,54.5 parent: 1 - - uid: 5214 + - uid: 6497 components: - type: Transform - pos: -59.5,5.5 + rot: 1.5707963267948966 rad + pos: -14.5,55.5 parent: 1 - - uid: 5215 + - uid: 6498 components: - type: Transform - pos: -59.5,4.5 + rot: 1.5707963267948966 rad + pos: -14.5,59.5 parent: 1 - - uid: 5216 + - uid: 6499 components: - type: Transform - pos: -58.5,3.5 + rot: 1.5707963267948966 rad + pos: -14.5,60.5 parent: 1 - - uid: 5217 + - uid: 6500 components: - type: Transform - pos: -57.5,3.5 + rot: 3.141592653589793 rad + pos: -15.5,61.5 parent: 1 - - uid: 5218 + - uid: 6501 components: - type: Transform - pos: -56.5,3.5 + rot: 3.141592653589793 rad + pos: -16.5,61.5 parent: 1 - - uid: 5219 + - uid: 6502 components: - type: Transform - pos: -58.5,7.5 + rot: 3.141592653589793 rad + pos: -17.5,61.5 parent: 1 - - uid: 5220 + - uid: 6503 components: - type: Transform - pos: -57.5,7.5 + rot: -1.5707963267948966 rad + pos: -18.5,60.5 parent: 1 - - uid: 5221 + - uid: 6504 components: - type: Transform - pos: -56.5,7.5 + rot: -1.5707963267948966 rad + pos: -18.5,59.5 parent: 1 - - uid: 5225 + - uid: 6505 components: - type: Transform - pos: -38.5,30.5 + rot: 3.141592653589793 rad + pos: -17.5,57.5 parent: 1 - - uid: 5226 + - uid: 6506 components: - type: Transform - pos: -37.5,30.5 + rot: 3.141592653589793 rad + pos: -15.5,57.5 parent: 1 - - uid: 5227 + - uid: 8324 components: - type: Transform - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: 10.5,23.5 parent: 1 - - uid: 5228 + - uid: 8544 components: - type: Transform - pos: -35.5,31.5 + rot: 3.141592653589793 rad + pos: -52.5,58.5 parent: 1 - - uid: 5229 + - uid: 8545 components: - type: Transform - pos: -35.5,32.5 + rot: 3.141592653589793 rad + pos: -50.5,58.5 parent: 1 - - uid: 5230 + - uid: 8573 components: - type: Transform - pos: -35.5,33.5 + rot: 3.141592653589793 rad + pos: -48.5,51.5 parent: 1 - - uid: 5231 + - uid: 8574 components: - type: Transform - pos: -39.5,31.5 + rot: 3.141592653589793 rad + pos: -46.5,51.5 parent: 1 - - uid: 5232 + - uid: 8575 components: - type: Transform - pos: -39.5,32.5 + rot: 1.5707963267948966 rad + pos: -59.5,53.5 parent: 1 - - uid: 5233 + - uid: 8576 components: - type: Transform - pos: -39.5,33.5 + rot: 1.5707963267948966 rad + pos: -59.5,55.5 parent: 1 - - uid: 5234 + - uid: 9784 components: - type: Transform - pos: -18.5,31.5 + pos: -36.5,41.5 parent: 1 - - uid: 5235 + - uid: 9785 components: - type: Transform - pos: -18.5,32.5 + pos: -35.5,41.5 parent: 1 - - uid: 5236 + - uid: 9786 components: - type: Transform - pos: -18.5,33.5 + rot: -1.5707963267948966 rad + pos: -33.5,38.5 parent: 1 - - uid: 5237 + - uid: 9787 components: - type: Transform - pos: -17.5,34.5 + rot: -1.5707963267948966 rad + pos: -33.5,37.5 parent: 1 - - uid: 5238 + - uid: 9788 components: - type: Transform - pos: -16.5,34.5 + rot: -1.5707963267948966 rad + pos: -33.5,36.5 parent: 1 - - uid: 5239 + - uid: 9789 components: - type: Transform - pos: -15.5,34.5 + rot: -1.5707963267948966 rad + pos: -33.5,35.5 parent: 1 - - uid: 5240 + - uid: 9790 components: - type: Transform - pos: -55.5,31.5 + rot: -1.5707963267948966 rad + pos: -39.5,43.5 parent: 1 - - uid: 5241 + - uid: 9791 components: - type: Transform - pos: -55.5,32.5 + rot: -1.5707963267948966 rad + pos: -39.5,44.5 parent: 1 - - uid: 5242 + - uid: 9792 components: - type: Transform - pos: -55.5,33.5 + rot: -1.5707963267948966 rad + pos: -39.5,45.5 parent: 1 - - uid: 5243 + - uid: 9793 components: - type: Transform - pos: -56.5,30.5 + rot: -1.5707963267948966 rad + pos: -39.5,46.5 parent: 1 - - uid: 5244 + - uid: 9808 components: - type: Transform - pos: -57.5,30.5 + rot: 3.141592653589793 rad + pos: -7.5,57.5 parent: 1 - - uid: 5245 + - uid: 9850 components: - type: Transform - pos: -58.5,30.5 + rot: 1.5707963267948966 rad + pos: -50.5,36.5 parent: 1 - - uid: 7995 + - uid: 9851 components: - type: Transform - pos: -48.5,34.5 + rot: 3.141592653589793 rad + pos: -31.5,55.5 parent: 1 - - uid: 7996 + - uid: 10340 components: - type: Transform - pos: -47.5,34.5 + pos: -24.5,49.5 parent: 1 - - uid: 7997 + - uid: 10666 components: - type: Transform - pos: -46.5,34.5 + rot: 1.5707963267948966 rad + pos: -76.5,35.5 parent: 1 - - uid: 8001 + - uid: 10667 components: - type: Transform - pos: -58.5,34.5 + rot: 1.5707963267948966 rad + pos: -76.5,34.5 parent: 1 - - uid: 8002 + - uid: 10668 components: - type: Transform - pos: -57.5,34.5 + rot: 3.141592653589793 rad + pos: -76.5,33.5 parent: 1 - - uid: 8003 + - uid: 10669 components: - type: Transform - pos: -56.5,34.5 + rot: 3.141592653589793 rad + pos: -77.5,33.5 parent: 1 - - uid: 8542 + - uid: 10670 components: - type: Transform - pos: -53.5,61.5 + rot: 3.141592653589793 rad + pos: -78.5,33.5 parent: 1 - - uid: 8543 + - uid: 10671 components: - type: Transform - pos: -53.5,60.5 + rot: 3.141592653589793 rad + pos: -79.5,33.5 parent: 1 - - uid: 8578 + - uid: 10672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,56.5 + rot: 3.141592653589793 rad + pos: -80.5,33.5 parent: 1 - - uid: 8579 + - uid: 10673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,63.5 + rot: 3.141592653589793 rad + pos: -81.5,33.5 parent: 1 - - uid: 8580 + - uid: 10674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,64.5 + rot: 3.141592653589793 rad + pos: -82.5,33.5 parent: 1 - - uid: 8581 + - uid: 10675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,65.5 + rot: 3.141592653589793 rad + pos: -83.5,33.5 parent: 1 - - uid: 9819 + - uid: 10676 components: - type: Transform - pos: -19.5,36.5 + rot: 3.141592653589793 rad + pos: -84.5,33.5 parent: 1 - - uid: 10684 + - uid: 10682 components: - type: Transform - pos: -74.5,27.5 + rot: 3.141592653589793 rad + pos: -84.5,27.5 parent: 1 - - uid: 10685 + - uid: 10683 components: - type: Transform - pos: -73.5,27.5 + pos: -84.5,23.5 parent: 1 - - uid: 10686 + - uid: 10860 components: - type: Transform - pos: -74.5,23.5 + rot: 1.5707963267948966 rad + pos: -15.5,51.5 parent: 1 - - uid: 10687 + - uid: 13301 components: - type: Transform - pos: -73.5,23.5 + pos: 3.5,19.5 parent: 1 - - uid: 10688 + - uid: 13302 components: - type: Transform - pos: -65.5,33.5 + rot: 1.5707963267948966 rad + pos: 4.5,19.5 parent: 1 - - uid: 10689 + - uid: 13305 components: - type: Transform - pos: -65.5,34.5 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 parent: 1 - - uid: 13307 + - uid: 13306 components: - type: Transform - pos: 2.5,27.5 + rot: 1.5707963267948966 rad + pos: 5.5,29.5 parent: 1 - - uid: 13308 + - uid: 14970 components: - type: Transform - pos: 3.5,27.5 + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 13309 + - uid: 14974 components: - type: Transform - pos: 4.5,27.5 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 parent: 1 - - uid: 13791 + - uid: 15079 components: - type: Transform - pos: -106.5,8.5 + rot: -1.5707963267948966 rad + pos: -1.5,16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13790 - - uid: 14302 + - uid: 15080 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,21.5 + pos: 11.5,15.5 parent: 1 - - uid: 14303 + - uid: 15081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,25.5 + pos: 10.5,22.5 parent: 1 - - uid: 14304 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,18.5 + pos: 12.5,35.5 parent: 1 - - uid: 14817 + - uid: 15083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,52.5 + rot: 1.5707963267948966 rad + pos: 4.5,40.5 parent: 1 - - uid: 15376 + - uid: 15201 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,7.5 + pos: -25.5,51.5 parent: 1 - - uid: 15379 + - type: DeviceNetwork + deviceLists: + - 15086 + - uid: 15359 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,4.5 + pos: 3.5,40.5 parent: 1 - - uid: 15649 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 15213 +- proto: FirelockGlass + entities: + - uid: 1741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,1.5 + pos: -7.5,3.5 parent: 1 -- proto: Fireplace - entities: - - uid: 3032 + - uid: 1749 components: - type: Transform - pos: -23.5,18.5 + pos: -10.5,1.5 parent: 1 - - uid: 5356 + - uid: 1752 components: - type: Transform - pos: -51.5,-0.5 + pos: 10.5,3.5 parent: 1 -- proto: Flash - entities: - - uid: 10916 + - uid: 1753 components: - type: Transform - pos: -12.483002,63.566193 + pos: 11.5,3.5 parent: 1 -- proto: FlashlightLantern - entities: - - uid: 4103 + - uid: 1754 components: - type: Transform - pos: -33.652264,-1.2000351 + pos: 24.5,6.5 parent: 1 - - uid: 4104 + - uid: 1755 components: - type: Transform - pos: -33.44914,-1.4031601 + pos: 24.5,5.5 parent: 1 -- proto: FlashlightSeclite - entities: - - uid: 13335 + - uid: 1758 components: - type: Transform - pos: -0.51456356,10.706236 + pos: -10.5,6.5 parent: 1 - - uid: 13336 + - uid: 1759 components: - type: Transform - pos: -0.48331353,10.346861 + pos: -10.5,5.5 parent: 1 -- proto: Floodlight - entities: - - uid: 15527 + - uid: 1760 components: - type: Transform - pos: 7.5332904,-17.502348 + pos: -10.5,4.5 parent: 1 -- proto: FloorDrain - entities: - - uid: 1981 + - uid: 1761 components: - type: Transform - pos: -2.5,25.5 + pos: -11.5,7.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 6928 + - uid: 1762 components: - type: Transform - pos: -28.5,46.5 + pos: -12.5,7.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 10144 + - uid: 1763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,36.5 + pos: -13.5,7.5 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FloraTree - entities: - - uid: 5651 + - uid: 1764 components: - type: Transform - pos: -34.080067,20.500618 + pos: -14.5,6.5 parent: 1 - - uid: 5652 + - uid: 1765 components: - type: Transform - pos: -31.673817,19.688118 + pos: -14.5,5.5 parent: 1 - - uid: 5653 + - uid: 1766 components: - type: Transform - pos: -33.986317,15.672493 + pos: -14.5,4.5 parent: 1 - - uid: 7523 + - uid: 1767 components: - type: Transform - pos: -12.854504,35.595062 + pos: 12.5,6.5 parent: 1 - - uid: 7525 + - uid: 1768 components: - type: Transform - pos: -11.963879,39.845062 + pos: 12.5,5.5 parent: 1 - - uid: 7526 + - uid: 2814 components: - type: Transform - pos: -13.010754,43.235687 + pos: -14.5,33.5 parent: 1 -- proto: FloraTreeStump - entities: - - uid: 15850 + - uid: 2867 components: - type: Transform - pos: 20.438618,40.115738 + pos: 1.5,29.5 parent: 1 -- proto: FluteInstrument - entities: - - uid: 14705 + - uid: 2868 components: - type: Transform - pos: -4.5521817,51.503952 + pos: 1.5,30.5 parent: 1 -- proto: FoamBlade - entities: - - uid: 5803 + - uid: 2869 components: - - type: MetaData - desc: A highly detailed replica of a real armblade. - type: Transform - pos: -9.533392,20.561493 + pos: -0.5,28.5 parent: 1 -- proto: FoodAmbrosiaVulgaris - entities: - - uid: 10813 + - uid: 2878 components: - type: Transform - pos: 26.625877,27.930239 + pos: 1.5,25.5 parent: 1 - - uid: 10842 + - uid: 2879 components: - type: Transform - pos: 25.94619,24.039614 + pos: 1.5,26.5 parent: 1 -- proto: FoodBowlBigTrash - entities: - - uid: 1873 + - uid: 2880 components: - type: Transform - pos: -35.01638,3.9468641 + pos: 1.5,23.5 parent: 1 -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 7947 + - uid: 3064 components: - type: Transform - pos: -54.482857,64.65437 + pos: -14.5,31.5 parent: 1 -- proto: FoodCakeSpaceman - entities: - - uid: 13835 + - uid: 3122 components: - type: Transform - pos: -4.5029564,53.587227 + pos: -14.5,32.5 parent: 1 -- proto: FoodCheese - entities: - - uid: 5801 + - uid: 3175 components: - type: Transform - pos: -9.517767,22.3806 + pos: -13.5,26.5 parent: 1 -- proto: FoodDonutJellySpaceman - entities: - - uid: 14938 + - uid: 3176 components: - type: Transform - pos: -111.48177,18.535988 + pos: -12.5,26.5 parent: 1 -- proto: FoodMealSashimi - entities: - - uid: 6056 + - uid: 3177 components: - type: Transform - pos: -48.5126,9.614483 + pos: -11.5,26.5 parent: 1 -- proto: FoodMeatClown - entities: - - uid: 10849 + - uid: 3716 components: - type: Transform - pos: -76.46973,55.251442 + pos: -41.5,-0.5 parent: 1 -- proto: FoodPieBananaCream - entities: - - uid: 4240 + - uid: 3717 components: - type: Transform - pos: -41.421516,28.723614 + pos: -40.5,-0.5 parent: 1 -- proto: FoodPlateSmallTrash - entities: - - uid: 2640 + - uid: 3718 components: - type: Transform - pos: -35.54763,4.040614 + pos: -39.5,0.5 parent: 1 - - uid: 2886 + - uid: 3719 components: - type: Transform - pos: -36.188255,4.056239 + pos: -39.5,1.5 parent: 1 - - uid: 4237 + - uid: 3720 components: - type: Transform - pos: -35.29763,3.4937391 + pos: -38.5,2.5 parent: 1 -- proto: FoodPlateTrash - entities: - - uid: 1527 + - uid: 3721 components: - type: Transform - pos: -35.73513,3.8687391 + pos: -37.5,2.5 parent: 1 -- proto: FoodPoppy - entities: - - uid: 10873 + - uid: 3722 components: - type: Transform - pos: -22.049007,53.739006 + pos: -36.5,2.5 parent: 1 -- proto: FoodSoupEyeball - entities: - - uid: 15186 + - uid: 3723 components: - type: Transform - pos: 4.4872284,54.545197 + pos: -35.5,1.5 parent: 1 -- proto: FoodSoupStew - entities: - - uid: 5598 + - uid: 3724 components: - type: Transform - pos: -49.501343,9.695094 + pos: -35.5,0.5 parent: 1 -- proto: FoodTinBeans - entities: - - uid: 1528 + - uid: 3725 components: - type: Transform - pos: 10.541792,-13.39496 + pos: -32.5,-0.5 parent: 1 -- proto: ForensicPad - entities: - - uid: 12914 + - uid: 3726 components: - type: Transform - pos: 1.5309631,43.363426 + pos: -35.5,-2.5 parent: 1 - - uid: 12915 + - uid: 4107 components: - type: Transform - pos: 2.583364,43.44034 + pos: -30.5,4.5 parent: 1 -- proto: GameMasterCircuitBoard - entities: - - uid: 13809 + - uid: 4108 components: - type: Transform - pos: -109.0869,7.4187813 + pos: -30.5,5.5 parent: 1 -- proto: GasAnalyzer - entities: - - uid: 15550 + - uid: 4109 components: - type: Transform - pos: 11.778922,-20.456448 + pos: -30.5,6.5 parent: 1 -- proto: GasCanisterBrokenBase - entities: - - uid: 370 + - uid: 4110 components: - type: Transform - pos: 0.5,-15.5 + pos: -42.5,4.5 parent: 1 -- proto: GasFilterFlipped - entities: - - uid: 2397 + - uid: 4111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,35.5 + pos: -42.5,5.5 parent: 1 -- proto: GasMinerCarbonDioxide - entities: - - uid: 10841 + - uid: 4112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,39.5 + pos: -42.5,6.5 parent: 1 -- proto: GasMinerNitrogen - entities: - - uid: 10840 + - uid: 4114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,37.5 + pos: -38.5,8.5 parent: 1 - - type: GasMiner - maxExternalPressure: 4000 -- proto: GasMinerOxygen - entities: - - uid: 10839 + - uid: 4115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,35.5 + pos: -37.5,8.5 parent: 1 - - type: GasMiner - maxExternalPressure: 4000 -- proto: GasMinerPlasma - entities: - - uid: 10855 + - uid: 4116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,43.5 + pos: -36.5,8.5 parent: 1 -- proto: GasOutletInjector - entities: - - uid: 13633 + - uid: 4126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,35.5 + pos: -59.5,-11.5 parent: 1 - - uid: 13634 + - uid: 4912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,37.5 + pos: -59.5,-9.5 parent: 1 - - uid: 13635 + - uid: 4913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,39.5 + pos: -59.5,-10.5 parent: 1 - - uid: 13636 + - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,41.5 + pos: -55.5,4.5 parent: 1 - - uid: 13637 + - uid: 5211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,43.5 + pos: -55.5,5.5 parent: 1 - - uid: 13638 + - uid: 5212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,45.5 + pos: -55.5,6.5 parent: 1 -- proto: GasPassiveVent - entities: - - uid: 364 + - uid: 5213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 + pos: -59.5,6.5 parent: 1 - - uid: 365 + - uid: 5214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-14.5 + pos: -59.5,5.5 parent: 1 - - uid: 13627 + - uid: 5215 components: - type: Transform - pos: -90.5,45.5 + pos: -59.5,4.5 parent: 1 - - uid: 13628 + - uid: 5216 components: - type: Transform - pos: -90.5,43.5 + pos: -58.5,3.5 parent: 1 - - uid: 13629 + - uid: 5217 components: - type: Transform - pos: -90.5,41.5 + pos: -57.5,3.5 parent: 1 - - uid: 13630 + - uid: 5218 components: - type: Transform - pos: -90.5,39.5 + pos: -56.5,3.5 parent: 1 - - uid: 13631 + - uid: 5219 components: - type: Transform - pos: -90.5,37.5 + pos: -58.5,7.5 parent: 1 - - uid: 13632 + - uid: 5220 components: - type: Transform - pos: -90.5,35.5 + pos: -57.5,7.5 parent: 1 - - uid: 13774 + - uid: 5221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,9.5 + pos: -56.5,7.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13858 + - uid: 5225 components: - type: Transform - pos: -84.5,48.5 + pos: -38.5,30.5 parent: 1 - - uid: 13859 + - uid: 5226 components: - type: Transform - pos: -83.5,50.5 + pos: -37.5,30.5 parent: 1 - - uid: 13860 + - uid: 5227 components: - type: Transform - pos: -81.5,50.5 + pos: -36.5,30.5 parent: 1 - - uid: 13916 + - uid: 5228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,33.5 + pos: -35.5,31.5 parent: 1 -- proto: GasPipeBend - entities: - - uid: 2385 + - uid: 5229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,35.5 + pos: -35.5,32.5 parent: 1 - - uid: 2387 + - uid: 5230 components: - type: Transform - pos: 11.5,35.5 + pos: -35.5,33.5 parent: 1 - - uid: 2388 + - uid: 5231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,34.5 + pos: -39.5,31.5 parent: 1 - - uid: 2389 + - uid: 5232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,34.5 + pos: -39.5,32.5 parent: 1 - - uid: 2390 + - uid: 5233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + pos: -39.5,33.5 parent: 1 - - uid: 2391 + - uid: 5234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 + pos: -18.5,31.5 parent: 1 - - uid: 2419 + - uid: 5235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,34.5 + pos: -18.5,32.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2420 + - uid: 5236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,34.5 + pos: -18.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2457 + - uid: 5237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 + pos: -17.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2458 + - uid: 5238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,29.5 + pos: -16.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2460 + - uid: 5239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,32.5 + pos: -15.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2463 + - uid: 5240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 + pos: -55.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3016 + - uid: 5241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 + pos: -55.5,32.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3017 + - uid: 5242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 + pos: -55.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3018 + - uid: 5243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 + pos: -56.5,30.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3687 + - uid: 5244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 + pos: -57.5,30.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4279 + - uid: 5245 components: - type: Transform - pos: 27.5,19.5 + pos: -58.5,30.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4280 + - uid: 7995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,20.5 + pos: -48.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5387 + - uid: 7996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-10.5 + pos: -47.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8693 + - uid: 7997 components: - type: Transform - pos: -46.5,55.5 + pos: -46.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8746 + - type: AccessReader + accessListsOriginal: + - - Engineering + - uid: 8001 components: - type: Transform - pos: -56.5,57.5 + pos: -58.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8752 + - uid: 8002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,55.5 + pos: -57.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8753 + - uid: 8003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,53.5 + pos: -56.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8767 + - uid: 8542 components: - type: Transform - pos: -55.5,58.5 + pos: -53.5,61.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8926 + - uid: 8543 components: - type: Transform - pos: -52.5,88.5 + pos: -53.5,60.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8927 + - uid: 8578 components: - type: Transform - pos: -50.5,89.5 + rot: -1.5707963267948966 rad + pos: -47.5,56.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8931 + - uid: 8579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,88.5 + rot: -1.5707963267948966 rad + pos: -47.5,63.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8932 + - uid: 8580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,89.5 + rot: -1.5707963267948966 rad + pos: -49.5,64.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10796 + - uid: 8581 components: - type: Transform - pos: 10.5,20.5 + rot: -1.5707963267948966 rad + pos: -49.5,65.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10797 + - uid: 9819 components: - type: Transform - pos: 9.5,19.5 + pos: -19.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11126 + - uid: 10684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,46.5 + pos: -74.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11221 + - uid: 10685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,44.5 + pos: -73.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11222 + - uid: 10686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,43.5 + pos: -74.5,23.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11227 + - uid: 10687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,47.5 + pos: -73.5,23.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11228 + - uid: 10688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,46.5 + pos: -65.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11279 + - uid: 10689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,33.5 + pos: -65.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11287 + - uid: 13307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,28.5 + pos: 2.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11288 + - uid: 13308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,29.5 + pos: 3.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11312 + - uid: 13309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,35.5 + pos: 4.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11534 + - uid: 13791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,32.5 + pos: -106.5,8.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11649 + - type: DeviceNetwork + deviceLists: + - 13790 + - uid: 14302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 + rot: 1.5707963267948966 rad + pos: -72.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11679 + - uid: 14303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,30.5 + rot: 1.5707963267948966 rad + pos: -77.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11680 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,30.5 + pos: -74.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11788 + - uid: 14817 components: - type: Transform - pos: -57.5,5.5 + rot: 3.141592653589793 rad + pos: -16.5,52.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11820 + - uid: 15376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-9.5 + rot: 3.141592653589793 rad + pos: 19.5,7.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12186 + - uid: 15379 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,35.5 + pos: 26.5,4.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12189 + - uid: 15649 components: - type: Transform - pos: -19.5,38.5 + rot: 1.5707963267948966 rad + pos: -42.5,1.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12217 +- proto: Fireplace + entities: + - uid: 3032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,32.5 + pos: -23.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12319 + - uid: 5356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 + pos: -51.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12370 +- proto: Flash + entities: + - uid: 10916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 + pos: -12.483002,63.566193 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12371 +- proto: FlashlightLantern + entities: + - uid: 4103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 + pos: -33.652264,-1.2000351 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12372 + - uid: 4104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-8.5 + pos: -33.44914,-1.4031601 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12373 +- proto: FlashlightSeclite + entities: + - uid: 13335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 + pos: -0.51456356,10.706236 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12399 + - uid: 13336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -0.48331353,10.346861 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12400 + - uid: 15412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 + pos: -50.52767,77.6727 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12401 + - uid: 15413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + pos: -50.449547,77.5477 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12402 +- proto: Floodlight + entities: + - uid: 15527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 + pos: 7.5332904,-17.502348 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12554 +- proto: FloorDrain + entities: + - uid: 1981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 + pos: -2.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12678 + - type: Fixtures + fixtures: {} + - uid: 6928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,8.5 + pos: -28.5,46.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12726 + - type: Fixtures + fixtures: {} + - uid: 10144 components: - type: Transform - pos: -1.5,33.5 + rot: -1.5707963267948966 rad + pos: -51.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12727 + - type: Fixtures + fixtures: {} +- proto: FloraTree + entities: + - uid: 5651 components: - type: Transform - pos: -2.5,31.5 + pos: -34.080067,20.500618 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12728 + - uid: 5652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,30.5 + pos: -31.673817,19.688118 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12729 + - uid: 5653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,29.5 + pos: -33.986317,15.672493 + parent: 1 + - uid: 7523 + components: + - type: Transform + pos: -12.854504,35.595062 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12743 + - uid: 7525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,14.5 + pos: -11.963879,39.845062 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12751 + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 + pos: -13.010754,43.235687 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12752 +- proto: FloraTreeStump + entities: + - uid: 15850 components: - type: Transform - pos: 11.5,16.5 + pos: 20.438618,40.115738 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13014 +- proto: FluteInstrument + entities: + - uid: 14705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,55.5 + pos: -4.5521817,51.503952 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13015 +- proto: FoodAmbrosiaVulgaris + entities: + - uid: 10813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,54.5 + pos: 26.625877,27.930239 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13719 + - uid: 10842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,34.5 + pos: 25.94619,24.039614 parent: 1 - - uid: 13720 +- proto: FoodBowlBigTrash + entities: + - uid: 1873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,36.5 + pos: -35.01638,3.9468641 parent: 1 - - uid: 13721 +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 7947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,38.5 + pos: -54.482857,64.65437 parent: 1 - - uid: 13722 +- proto: FoodCakeSpaceman + entities: + - uid: 13835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,40.5 + pos: -4.5029564,53.587227 parent: 1 - - uid: 13725 +- proto: FoodDonutJellySpaceman + entities: + - uid: 14938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,42.5 + pos: -111.48177,18.535988 parent: 1 - - uid: 13730 +- proto: FoodMealSashimi + entities: + - uid: 6056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,44.5 + pos: -48.5126,9.614483 parent: 1 - - uid: 13862 +- proto: FoodMeatClown + entities: + - uid: 10849 components: - type: Transform - pos: -82.5,47.5 + pos: -76.46973,55.251442 parent: 1 - - uid: 13863 +- proto: FoodPieBananaCream + entities: + - uid: 4240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,47.5 + pos: -41.421516,28.723614 parent: 1 - - uid: 13983 +- proto: FoodPlateSmallTrash + entities: + - uid: 2640 components: - type: Transform - pos: -66.5,50.5 + pos: -35.54763,4.040614 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13984 + - uid: 2886 components: - type: Transform - pos: -67.5,52.5 + pos: -36.188255,4.056239 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13985 + - uid: 4237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,50.5 + pos: -35.29763,3.4937391 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13997 +- proto: FoodPlateTrash + entities: + - uid: 1527 components: - type: Transform - pos: -61.5,48.5 + pos: -35.73513,3.8687391 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14021 +- proto: FoodPoppy + entities: + - uid: 10873 components: - type: Transform - pos: -72.5,34.5 + pos: -22.049007,53.739006 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14022 +- proto: FoodSoupEyeball + entities: + - uid: 15186 components: - type: Transform - pos: -71.5,35.5 + pos: 4.4872284,54.545197 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14023 +- proto: FoodSoupStew + entities: + - uid: 5598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,33.5 + pos: -49.501343,9.695094 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14024 +- proto: FoodTinBeans + entities: + - uid: 1528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,34.5 + pos: 10.541792,-13.39496 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14054 +- proto: GameMasterCircuitBoard + entities: + - uid: 13809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,16.5 + pos: -109.0869,7.4187813 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14055 +- proto: GarrotteHomemade + entities: + - uid: 14157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,17.5 + rot: 1.5707963267948966 rad + pos: -43.675365,66.43444 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14106 +- proto: GasAnalyzer + entities: + - uid: 15550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,19.5 + pos: 11.778922,-20.456448 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14107 +- proto: GasCanisterBrokenBase + entities: + - uid: 370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,20.5 + pos: 0.5,-15.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14108 +- proto: GasFilterFlipped + entities: + - uid: 2397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,23.5 + rot: -1.5707963267948966 rad + pos: 10.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14133 +- proto: GasMinerCarbonDioxide + entities: + - uid: 10841 components: - type: Transform - pos: -64.5,33.5 + rot: -1.5707963267948966 rad + pos: -89.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14134 +- proto: GasMinerNitrogen + entities: + - uid: 10840 components: - type: Transform - pos: -63.5,34.5 + rot: -1.5707963267948966 rad + pos: -89.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14135 + - type: GasMiner + maxExternalPressure: 4000 +- proto: GasMinerOxygen + entities: + - uid: 10839 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,27.5 + pos: -89.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14136 + - type: GasMiner + maxExternalPressure: 4000 +- proto: GasMinerPlasma + entities: + - uid: 10855 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,28.5 + pos: -89.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeFourway +- proto: GasOutletInjector entities: - - uid: 2386 + - uid: 13633 components: - type: Transform - pos: 9.5,35.5 + rot: 1.5707963267948966 rad + pos: -88.5,35.5 parent: 1 - - uid: 2685 + - uid: 13634 components: - type: Transform - pos: 2.5,25.5 + rot: 1.5707963267948966 rad + pos: -88.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8692 + - uid: 13635 components: - type: Transform - pos: -47.5,55.5 + rot: 1.5707963267948966 rad + pos: -88.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8781 + - uid: 13636 components: - type: Transform - pos: -52.5,61.5 + rot: 1.5707963267948966 rad + pos: -88.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10234 + - uid: 13637 components: - type: Transform - pos: -40.5,-3.5 + rot: 1.5707963267948966 rad + pos: -88.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11083 + - uid: 13638 components: - type: Transform - pos: -56.5,31.5 + rot: 1.5707963267948966 rad + pos: -88.5,45.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11084 +- proto: GasPassiveVent + entities: + - uid: 364 components: - type: Transform - pos: -57.5,32.5 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11189 + - uid: 365 components: - type: Transform - pos: -41.5,44.5 + rot: 3.141592653589793 rad + pos: 2.5,-14.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11278 + - uid: 13627 components: - type: Transform - pos: -48.5,31.5 + pos: -90.5,45.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11532 + - uid: 13628 components: - type: Transform - pos: -38.5,31.5 + pos: -90.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11533 + - uid: 13629 components: - type: Transform - pos: -36.5,33.5 + pos: -90.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11559 + - uid: 13630 components: - type: Transform - pos: -36.5,37.5 + pos: -90.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11560 + - uid: 13631 components: - type: Transform - pos: -38.5,36.5 + pos: -90.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11759 + - uid: 13632 components: - type: Transform - pos: -58.5,6.5 + pos: -90.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11761 + - uid: 13774 components: - type: Transform - pos: -56.5,4.5 + rot: -1.5707963267948966 rad + pos: -87.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11940 + - uid: 13858 components: - type: Transform - pos: -41.5,6.5 + pos: -84.5,48.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11941 + - uid: 13859 components: - type: Transform - pos: -40.5,4.5 + pos: -83.5,50.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11974 + - uid: 13860 components: - type: Transform - pos: -44.5,-2.5 + pos: -81.5,50.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11975 + - uid: 13916 components: - type: Transform - pos: -43.5,-3.5 + rot: 1.5707963267948966 rad + pos: -86.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12052 +- proto: GasPipeBend + entities: + - uid: 2385 components: - type: Transform - pos: -38.5,4.5 + rot: 3.141592653589793 rad + pos: 6.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12053 + - uid: 2387 components: - type: Transform - pos: -36.5,6.5 + pos: 11.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12094 + - uid: 2388 components: - type: Transform - pos: -23.5,6.5 + rot: -1.5707963267948966 rad + pos: 11.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12191 + - uid: 2389 components: - type: Transform - pos: -17.5,33.5 + rot: 3.141592653589793 rad + pos: 9.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12192 + - uid: 2390 components: - type: Transform - pos: -15.5,31.5 + rot: 1.5707963267948966 rad + pos: 10.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12298 + - uid: 2391 components: - type: Transform - pos: -13.5,4.5 + rot: -1.5707963267948966 rad + pos: 12.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12299 + - uid: 12678 components: - type: Transform - pos: -11.5,6.5 + rot: -1.5707963267948966 rad + pos: -90.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12349 + - uid: 13719 components: - type: Transform - pos: -9.5,-2.5 + rot: 3.141592653589793 rad + pos: -90.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12423 + - uid: 13720 components: - type: Transform - pos: -11.5,9.5 + rot: 3.141592653589793 rad + pos: -90.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12427 + - uid: 13721 components: - type: Transform - pos: -11.5,12.5 + rot: 3.141592653589793 rad + pos: -90.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12647 + - uid: 13722 components: - type: Transform - pos: 26.5,6.5 + rot: 3.141592653589793 rad + pos: -90.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12679 + - uid: 13725 components: - type: Transform - pos: -100.5,8.5 + rot: 3.141592653589793 rad + pos: -90.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12970 + - uid: 13730 components: - type: Transform - pos: -17.5,54.5 + rot: 3.141592653589793 rad + pos: -90.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12971 + - uid: 13862 components: - type: Transform - pos: -15.5,55.5 + pos: -82.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13076 + - uid: 13863 components: - type: Transform - pos: -101.5,9.5 + rot: 3.141592653589793 rad + pos: -83.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight +- proto: GasPipeBendAlt1 entities: - - uid: 354 + - uid: 1213 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: 9.5,15.5 parent: 1 - - uid: 355 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 + pos: -51.5,89.5 parent: 1 - - uid: 356 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 + pos: -66.5,50.5 parent: 1 - - uid: 357 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2406 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-13.5 + pos: -12.5,-12.5 parent: 1 - - uid: 358 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-13.5 + rot: -1.5707963267948966 rad + pos: -32.5,44.5 parent: 1 - - uid: 359 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2447 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-12.5 + pos: 7.5,0.5 parent: 1 - - uid: 360 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-11.5 + rot: 1.5707963267948966 rad + pos: -70.5,54.5 parent: 1 - - uid: 361 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + rot: -1.5707963267948966 rad + pos: -63.5,27.5 parent: 1 - - uid: 1213 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2487 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: -57.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1228 + color: '#0000FFFF' + - uid: 2671 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,8.5 + pos: -44.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1242 + color: '#0000FFFF' + - uid: 2874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,7.5 + rot: -1.5707963267948966 rad + pos: 9.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1248 + - uid: 3003 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,8.5 + pos: -3.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1329 + - uid: 3018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 + pos: 9.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1369 + color: '#0000FFFF' + - uid: 3319 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,6.5 + pos: 3.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1513 + color: '#0000FFFF' + - uid: 4106 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,24.5 + pos: 2.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1771 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-10.5 + rot: -1.5707963267948966 rad + pos: -7.5,20.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1772 + - uid: 5789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-10.5 + pos: -66.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1773 + - uid: 7216 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-0.5 + pos: -55.5,71.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1779 + color: '#0000FFFF' + - uid: 8768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + rot: 1.5707963267948966 rad + pos: -57.5,89.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1790 + - uid: 8792 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,1.5 + pos: -59.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1797 + color: '#0000FFFF' + - uid: 8794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,0.5 + pos: -59.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1798 + color: '#0000FFFF' + - uid: 8824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 + pos: -55.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - - uid: 2393 + - uid: 8859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,34.5 + pos: -57.5,47.5 parent: 1 - - uid: 2395 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8882 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,36.5 + pos: -62.5,41.5 parent: 1 - - uid: 2403 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,29.5 + pos: -47.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2404 + - uid: 8913 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,30.5 + pos: -48.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2405 + color: '#0000FFFF' + - uid: 8918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,30.5 + pos: -29.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2406 + color: '#0000FFFF' + - uid: 8927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,30.5 + rot: 1.5707963267948966 rad + pos: -37.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2407 + color: '#0000FFFF' + - uid: 11097 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,31.5 + pos: -40.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2412 + color: '#0000FFFF' + - uid: 11203 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,33.5 + pos: -67.5,50.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2413 + color: '#0000FFFF' + - uid: 11219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,35.5 + rot: -1.5707963267948966 rad + pos: -52.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2414 + color: '#0000FFFF' + - uid: 11278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + rot: -1.5707963267948966 rad + pos: -52.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2415 + color: '#0000FFFF' + - uid: 11294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 + rot: 1.5707963267948966 rad + pos: -54.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2417 + - uid: 11525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,32.5 + pos: -44.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2426 + - uid: 11577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,33.5 + pos: -23.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2427 + - uid: 11661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,33.5 + pos: -20.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2428 + - uid: 11685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2429 + - uid: 11689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,33.5 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2430 + - uid: 11695 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,34.5 + pos: -4.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2431 + color: '#0000FFFF' + - uid: 11712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,34.5 + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2434 + color: '#0000FFFF' + - uid: 11715 components: - type: Transform - pos: 3.5,35.5 + pos: -7.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2435 + - uid: 11734 components: - type: Transform - pos: 3.5,36.5 + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2436 + - uid: 11767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,28.5 + rot: 3.141592653589793 rad + pos: -16.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2437 + - uid: 11810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,28.5 + pos: 10.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2438 + - uid: 11845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,28.5 + pos: 16.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2439 + - uid: 11965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,28.5 + rot: 1.5707963267948966 rad + pos: 26.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2440 + - uid: 11981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,28.5 + rot: 1.5707963267948966 rad + pos: -16.5,63.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2441 + - uid: 11990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,29.5 + rot: 3.141592653589793 rad + pos: -2.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2442 + color: '#0000FFFF' + - uid: 11993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,29.5 + pos: -2.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2443 + color: '#0000FFFF' + - uid: 12018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,29.5 + pos: -6.5,60.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2444 + color: '#0000FFFF' + - uid: 12056 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,29.5 + pos: -6.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2445 + color: '#0000FFFF' + - uid: 12072 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,29.5 + pos: -20.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2446 + - uid: 12087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,28.5 + pos: -62.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2448 + - uid: 12103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 + rot: 3.141592653589793 rad + pos: -70.5,52.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2449 + - uid: 12109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,29.5 + pos: -67.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2450 + color: '#0000FFFF' + - uid: 12110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,29.5 + rot: 3.141592653589793 rad + pos: -66.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2451 + color: '#0000FFFF' + - uid: 12183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: -67.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2452 + color: '#0000FFFF' + - uid: 12184 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,28.5 + pos: -67.5,22.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2453 + - uid: 12194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 + pos: -69.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2454 + - uid: 12226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,28.5 + pos: 9.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2455 + - uid: 12254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 + rot: 3.141592653589793 rad + pos: -57.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2456 + color: '#0000FFFF' + - uid: 12299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 + rot: 1.5707963267948966 rad + pos: -32.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2462 + - uid: 12312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 + pos: -31.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2464 + - uid: 12335 components: - type: Transform - pos: 15.5,31.5 + rot: 1.5707963267948966 rad + pos: -67.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2465 + - uid: 12340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,31.5 + pos: -54.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2466 + color: '#0000FFFF' + - uid: 12370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2467 + color: '#0000FFFF' + - uid: 12407 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,32.5 + pos: 15.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2468 + - uid: 12427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,32.5 + pos: -63.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2469 + - uid: 12454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,31.5 + pos: -57.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2470 + color: '#0000FFFF' + - uid: 12493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 + rot: 3.141592653589793 rad + pos: -31.5,38.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2484 + - uid: 12527 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,31.5 + pos: -22.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2675 + color: '#0000FFFF' + - uid: 12535 components: - type: Transform - pos: 2.5,27.5 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2676 + - uid: 12542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + rot: 3.141592653589793 rad + pos: -12.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2677 + color: '#0000FFFF' + - uid: 12556 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,26.5 + pos: 26.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2678 + color: '#0000FFFF' + - uid: 12569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,26.5 + rot: 1.5707963267948966 rad + pos: -7.5,60.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2679 + - uid: 12591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,28.5 + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2680 + color: '#0000FFFF' + - uid: 12615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,27.5 + pos: -47.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2681 + color: '#0000FFFF' + - uid: 12668 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,25.5 + pos: -20.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2682 + color: '#0000FFFF' + - uid: 12716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,24.5 + rot: -1.5707963267948966 rad + pos: -50.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2775 + - uid: 12724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,14.5 + rot: 3.141592653589793 rad + pos: -73.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2864 + - uid: 12916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,25.5 + rot: 3.141592653589793 rad + pos: -25.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2871 + - uid: 14816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 + pos: -25.5,53.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2872 + - uid: 14983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,25.5 + pos: 3.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2873 +- proto: GasPipeBendAlt2 + entities: + - uid: 1468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,24.5 + rot: -1.5707963267948966 rad + pos: -7.5,20.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2875 + - uid: 2452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,24.5 + rot: 3.141592653589793 rad + pos: -2.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2876 + - uid: 2456 components: - type: Transform - pos: 2.5,23.5 + pos: -67.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2877 + color: '#FF0000FF' + - uid: 2457 components: - type: Transform - pos: 4.5,22.5 + pos: -66.5,50.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2895 + - uid: 2462 components: - type: Transform - pos: -15.5,27.5 + rot: 3.141592653589793 rad + pos: -72.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2902 + - uid: 2464 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,24.5 + pos: -74.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2919 + - uid: 2485 components: - type: Transform - pos: -15.5,25.5 + rot: -1.5707963267948966 rad + pos: -64.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3003 + - uid: 2676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3004 + color: '#FF0000FF' + - uid: 2678 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: -22.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3005 + - uid: 3007 components: - type: Transform - pos: 3.5,18.5 + rot: -1.5707963267948966 rad + pos: 9.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3006 + color: '#FF0000FF' + - uid: 3022 components: - type: Transform - pos: 4.5,18.5 + pos: 9.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3007 + - uid: 3024 components: - type: Transform - pos: 3.5,17.5 + rot: 3.141592653589793 rad + pos: 3.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3008 + color: '#FF0000FF' + - uid: 4265 components: - type: Transform - pos: 4.5,17.5 + rot: 1.5707963267948966 rad + pos: 2.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3009 + - uid: 4800 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,16.5 + pos: -32.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3010 + color: '#FF0000FF' + - uid: 5790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: -64.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3011 + - uid: 7367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + rot: 3.141592653589793 rad + pos: -55.5,71.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3012 + - uid: 8706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,16.5 + rot: 1.5707963267948966 rad + pos: -61.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3013 + - uid: 8738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 + rot: 1.5707963267948966 rad + pos: -57.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3014 + color: '#FF0000FF' + - uid: 8764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,20.5 + pos: -51.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3015 + color: '#FF0000FF' + - uid: 8771 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,21.5 + pos: -57.5,83.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3025 + - uid: 8791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 + rot: 3.141592653589793 rad + pos: -59.5,61.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3179 + - uid: 8793 components: - type: Transform - pos: -17.5,28.5 + pos: -59.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3319 + color: '#FF0000FF' + - uid: 8878 components: - type: Transform - pos: -17.5,26.5 + rot: -1.5707963267948966 rad + pos: -62.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3320 + color: '#FF0000FF' + - uid: 8893 components: - type: Transform - pos: -15.5,26.5 + pos: -47.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3349 + - uid: 8919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-8.5 + rot: -1.5707963267948966 rad + pos: -32.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3350 + - uid: 10724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 + rot: -1.5707963267948966 rad + pos: -48.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3351 + - uid: 10805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-7.5 + rot: -1.5707963267948966 rad + pos: -50.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3356 + color: '#FF0000FF' + - uid: 11112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-8.5 + pos: -31.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3357 + color: '#FF0000FF' + - uid: 11115 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-9.5 + pos: -31.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3360 + color: '#FF0000FF' + - uid: 11204 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-9.5 + pos: -67.5,50.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3551 + - uid: 11218 components: - type: Transform - pos: -40.5,-6.5 + rot: -1.5707963267948966 rad + pos: -54.5,14.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3559 + - uid: 11247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-5.5 + rot: -1.5707963267948966 rad + pos: -54.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3563 + - uid: 11287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-6.5 + rot: -1.5707963267948966 rad + pos: -54.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3571 + color: '#FF0000FF' + - uid: 11289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 + rot: 1.5707963267948966 rad + pos: -54.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3574 + - uid: 11519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-7.5 + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3617 + - uid: 11532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-6.5 + pos: -44.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3631 + color: '#FF0000FF' + - uid: 11559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-10.5 + pos: -41.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3657 + color: '#FF0000FF' + - uid: 11578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 + pos: -23.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3683 + color: '#FF0000FF' + - uid: 11660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-7.5 + pos: -20.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3704 + - uid: 11683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3715 + - uid: 11684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3840 + - uid: 11694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-6.5 + pos: -4.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3844 + color: '#FF0000FF' + - uid: 11716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + pos: -7.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3846 + - uid: 11749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + rot: 3.141592653589793 rad + pos: -12.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3851 + - uid: 11847 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-2.5 + pos: 14.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3960 + color: '#FF0000FF' + - uid: 11936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-6.5 + rot: 3.141592653589793 rad + pos: 0.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3961 + color: '#FF0000FF' + - uid: 11946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 + rot: -1.5707963267948966 rad + pos: 14.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4106 + color: '#FF0000FF' + - uid: 11952 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-9.5 + pos: -12.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4265 + - uid: 11966 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-10.5 + pos: 26.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4752 + color: '#FF0000FF' + - uid: 11982 components: - type: Transform - pos: -64.5,-10.5 + pos: -16.5,63.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4753 + - uid: 12014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-10.5 + rot: 3.141592653589793 rad + pos: -11.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4755 + color: '#FF0000FF' + - uid: 12055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-9.5 + pos: -11.5,48.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4775 + - uid: 12071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-9.5 + rot: 3.141592653589793 rad + pos: -22.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4776 + - uid: 12091 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-9.5 + pos: -62.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4777 + - uid: 12107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 + pos: -70.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4778 + - uid: 12117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-9.5 + rot: 3.141592653589793 rad + pos: -70.5,52.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4779 + - uid: 12126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-9.5 + pos: -72.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4780 + - uid: 12131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-9.5 + pos: -64.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4781 + - uid: 12160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-9.5 + rot: 3.141592653589793 rad + pos: -67.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4803 + - uid: 12213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-9.5 + pos: -67.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4804 + - uid: 12247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-9.5 + rot: 3.141592653589793 rad + pos: -40.5,39.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4808 + - uid: 12251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-10.5 + pos: -40.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4877 + - uid: 12273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-9.5 + pos: -48.5,61.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4878 + - uid: 12371 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-9.5 + pos: 1.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4914 + - uid: 12372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4915 + color: '#FF0000FF' + - uid: 12380 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-10.5 + pos: -18.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4916 + color: '#FF0000FF' + - uid: 12401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 + pos: 1.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4917 + color: '#FF0000FF' + - uid: 12446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-10.5 + pos: -3.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4918 + color: '#FF0000FF' + - uid: 12486 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,-10.5 + pos: -32.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4919 + color: '#FF0000FF' + - uid: 12514 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,-10.5 + pos: -65.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4920 + color: '#FF0000FF' + - uid: 12533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-10.5 + rot: 3.141592653589793 rad + pos: -20.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4921 + color: '#FF0000FF' + - uid: 12557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-10.5 + rot: -1.5707963267948966 rad + pos: 26.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4931 + color: '#FF0000FF' + - uid: 12564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-8.5 + pos: -2.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4957 + color: '#FF0000FF' + - uid: 12571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-10.5 + pos: -6.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4974 + color: '#FF0000FF' + - uid: 12576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-10.5 + rot: 3.141592653589793 rad + pos: -66.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4975 + color: '#FF0000FF' + - uid: 12593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-9.5 + rot: -1.5707963267948966 rad + pos: -57.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5317 + - uid: 12617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,6.5 + pos: -55.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5350 + color: '#FF0000FF' + - uid: 12620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,6.5 + pos: -57.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5393 + color: '#FF0000FF' + - uid: 12623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5397 + color: '#FF0000FF' + - uid: 12625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-12.5 + pos: -29.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5401 + color: '#FF0000FF' + - uid: 12627 components: - type: Transform - pos: -42.5,-11.5 + rot: 1.5707963267948966 rad + pos: -37.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5462 + color: '#FF0000FF' + - uid: 12914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-12.5 + rot: 3.141592653589793 rad + pos: -25.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5690 + color: '#FF0000FF' + - uid: 13938 components: - type: Transform - pos: -17.5,25.5 + pos: -40.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5764 + color: '#FF0000FF' + - uid: 15192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,19.5 + pos: -25.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5765 + color: '#FF0000FF' + - uid: 15207 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,20.5 + pos: 3.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5789 +- proto: GasPipeFourway + entities: + - uid: 2386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 + pos: 9.5,35.5 + parent: 1 + - uid: 12679 + components: + - type: Transform + pos: -100.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 5790 + - uid: 13076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 + pos: -101.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6253 +- proto: GasPipeFourwayAlt1 + entities: + - uid: 3844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 + pos: 3.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7441 + color: '#0000FFFF' + - uid: 4916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 + pos: -40.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7442 + - uid: 8830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 + pos: -51.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8674 + color: '#0000FFFF' + - uid: 11249 components: - type: Transform - pos: -46.5,48.5 + pos: -57.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8675 + - uid: 11560 components: - type: Transform - pos: -46.5,49.5 + pos: -12.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8676 + - uid: 12203 components: - type: Transform - pos: -46.5,50.5 + pos: -57.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8677 + - uid: 12287 components: - type: Transform - pos: -46.5,51.5 + pos: -47.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8678 + - uid: 12737 components: - type: Transform - pos: -46.5,52.5 + pos: -37.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8679 +- proto: GasPipeFourwayAlt2 + entities: + - uid: 4778 components: - type: Transform - pos: -46.5,53.5 + pos: -40.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8680 + color: '#FF0000FF' + - uid: 8691 components: - type: Transform - pos: -46.5,54.5 + pos: -51.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8681 + color: '#FF0000FF' + - uid: 8857 components: - type: Transform - pos: -48.5,48.5 + pos: -47.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8682 + - uid: 11563 components: - type: Transform - pos: -48.5,49.5 + pos: -12.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8683 + - uid: 12474 components: - type: Transform - pos: -48.5,50.5 + pos: -51.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12565 + components: + - type: Transform + pos: 3.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8684 + - uid: 12632 components: - type: Transform - pos: -48.5,51.5 + pos: -37.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8685 + - uid: 12645 components: - type: Transform - pos: -48.5,52.5 + pos: -57.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8687 + - uid: 12857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,55.5 + pos: -57.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8688 + color: '#FF0000FF' +- proto: GasPipeManifold + entities: + - uid: 12077 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,55.5 + pos: -76.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8689 + - uid: 12078 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,53.5 + pos: -77.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8694 +- proto: GasPipeStraight + entities: + - uid: 354 components: - type: Transform - pos: -47.5,56.5 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8695 + - uid: 355 components: - type: Transform - pos: -47.5,57.5 + rot: 3.141592653589793 rad + pos: 0.5,-11.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8696 + - uid: 356 components: - type: Transform - pos: -47.5,58.5 + rot: 3.141592653589793 rad + pos: 0.5,-12.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8701 + - uid: 357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,53.5 + rot: 3.141592653589793 rad + pos: 0.5,-13.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8703 + - uid: 358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,53.5 + rot: 3.141592653589793 rad + pos: 2.5,-13.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8705 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 2392 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,53.5 + pos: 11.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8706 + - uid: 2393 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,53.5 + pos: 10.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8707 + - uid: 2395 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,54.5 + pos: 6.5,36.5 + parent: 1 + - uid: 12308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8708 + - uid: 12670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,53.5 + pos: -90.5,9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8709 + - uid: 12680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,52.5 + rot: 1.5707963267948966 rad + pos: -101.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8710 + - uid: 12681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,51.5 + rot: 1.5707963267948966 rad + pos: -103.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8711 + - uid: 12682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,52.5 + rot: 1.5707963267948966 rad + pos: -104.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8712 + color: '#0000FFFF' + - uid: 12683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,51.5 + rot: 1.5707963267948966 rad + pos: -105.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8713 + color: '#0000FFFF' + - uid: 12684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,52.5 + rot: 1.5707963267948966 rad + pos: -106.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8714 + color: '#0000FFFF' + - uid: 12714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,51.5 + rot: 1.5707963267948966 rad + pos: -102.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8715 + color: '#0000FFFF' + - uid: 12717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,52.5 + rot: 1.5707963267948966 rad + pos: -107.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8716 + - uid: 12772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,51.5 + rot: 1.5707963267948966 rad + pos: -108.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8717 + - uid: 12777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,52.5 + rot: 1.5707963267948966 rad + pos: -108.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8718 + - uid: 12784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,51.5 + rot: 1.5707963267948966 rad + pos: -106.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8719 + - uid: 12808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,52.5 + rot: 1.5707963267948966 rad + pos: -105.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8720 + color: '#FF0000FF' + - uid: 12809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,51.5 + rot: 1.5707963267948966 rad + pos: -107.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8721 + color: '#FF0000FF' + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,55.5 + pos: -104.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8723 + color: '#FF0000FF' + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,55.5 + pos: -102.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8725 + color: '#FF0000FF' + - uid: 13039 components: - type: Transform - pos: -55.5,54.5 + rot: 1.5707963267948966 rad + pos: -103.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8726 + - uid: 13218 components: - type: Transform - pos: -55.5,55.5 + rot: 1.5707963267948966 rad + pos: -100.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8728 + - uid: 13221 components: - type: Transform - pos: -55.5,57.5 + rot: 1.5707963267948966 rad + pos: -98.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8729 + - uid: 13291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,58.5 + rot: 1.5707963267948966 rad + pos: -97.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8730 + - uid: 13293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,58.5 + rot: 1.5707963267948966 rad + pos: -96.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8731 + - uid: 13298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,58.5 + rot: 1.5707963267948966 rad + pos: -95.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8732 + - uid: 13317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,58.5 + rot: 1.5707963267948966 rad + pos: -94.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8737 + - uid: 13342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,54.5 + rot: 1.5707963267948966 rad + pos: -93.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8738 + color: '#FF0000FF' + - uid: 13613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,53.5 + rot: 1.5707963267948966 rad + pos: -99.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8739 + color: '#FF0000FF' + - uid: 13614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,54.5 + rot: 1.5707963267948966 rad + pos: -92.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8740 + color: '#FF0000FF' + - uid: 13639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,53.5 + rot: 1.5707963267948966 rad + pos: -89.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8741 + - uid: 13640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,55.5 + pos: -88.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8742 + - uid: 13641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,56.5 + rot: 1.5707963267948966 rad + pos: -87.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8743 + - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,57.5 + pos: -86.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8744 + - uid: 13643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,57.5 + pos: -85.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8745 + - uid: 13644 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,57.5 + pos: -87.5,45.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8747 + - uid: 13645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,55.5 + rot: 1.5707963267948966 rad + pos: -86.5,45.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8748 + - uid: 13646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,55.5 + rot: 1.5707963267948966 rad + pos: -85.5,45.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8749 + - uid: 13647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,54.5 + rot: 1.5707963267948966 rad + pos: -87.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8750 + - uid: 13648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,53.5 + pos: -86.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8751 + - uid: 13649 components: - type: Transform - pos: -61.5,53.5 + rot: 1.5707963267948966 rad + pos: -85.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8768 + - uid: 13650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,54.5 + rot: 1.5707963267948966 rad + pos: -89.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8769 + - uid: 13651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,55.5 + rot: 1.5707963267948966 rad + pos: -88.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8770 + - uid: 13652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,56.5 + rot: 1.5707963267948966 rad + pos: -87.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8771 + - uid: 13653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,57.5 + rot: 1.5707963267948966 rad + pos: -86.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8772 + - uid: 13654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,58.5 + rot: 1.5707963267948966 rad + pos: -85.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8773 + - uid: 13656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,59.5 + rot: 1.5707963267948966 rad + pos: -87.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8774 + - uid: 13663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,56.5 + rot: -1.5707963267948966 rad + pos: -91.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8775 + - uid: 13664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,57.5 + rot: -1.5707963267948966 rad + pos: -93.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8776 + - uid: 13665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,58.5 + rot: -1.5707963267948966 rad + pos: -94.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8777 + - uid: 13666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,59.5 + rot: -1.5707963267948966 rad + pos: -95.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8786 + - uid: 13668 components: - type: Transform - pos: -52.5,60.5 + rot: 1.5707963267948966 rad + pos: -86.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8789 + - uid: 13670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,61.5 + rot: 1.5707963267948966 rad + pos: -85.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8790 + - uid: 13672 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,61.5 + pos: -96.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8791 + color: '#0000FFFF' + - uid: 13677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,61.5 + rot: 1.5707963267948966 rad + pos: -89.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8792 + - uid: 13678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,61.5 + rot: 1.5707963267948966 rad + pos: -88.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8794 + - uid: 13679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,63.5 + rot: 1.5707963267948966 rad + pos: -87.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8795 + - uid: 13680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,64.5 + rot: 1.5707963267948966 rad + pos: -86.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8796 + - uid: 13681 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,65.5 + pos: -85.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8797 + - uid: 13685 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,65.5 + pos: -87.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8798 + - uid: 13686 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,65.5 + pos: -86.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8799 + - uid: 13687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,65.5 + pos: -85.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8800 + - uid: 13688 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,65.5 + pos: -89.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8801 + - uid: 13689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,65.5 + pos: -88.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8802 + - uid: 13690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,65.5 + pos: -87.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8803 + - uid: 13691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,38.5 + parent: 1 + - uid: 13692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,65.5 + pos: -85.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8804 + - uid: 13693 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,65.5 + pos: -87.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8805 + - uid: 13694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,64.5 + pos: -86.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8806 + - uid: 13695 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,64.5 + pos: -85.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8807 + - uid: 13696 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,64.5 + pos: -89.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8808 + - uid: 13697 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,64.5 + pos: -88.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8809 + - uid: 13698 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,64.5 + pos: -87.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8810 + - uid: 13702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,64.5 + pos: -86.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8811 + - uid: 13703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,64.5 + pos: -85.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8812 + - uid: 13710 components: - type: Transform - pos: -50.5,65.5 + rot: -1.5707963267948966 rad + pos: -98.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8813 + - uid: 13711 components: - type: Transform - pos: -50.5,66.5 + rot: 1.5707963267948966 rad + pos: -87.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8815 + - uid: 13712 components: - type: Transform - pos: -52.5,66.5 + rot: 1.5707963267948966 rad + pos: -86.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8816 + - uid: 13713 components: - type: Transform - pos: -52.5,67.5 + rot: 1.5707963267948966 rad + pos: -85.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8818 + - uid: 13714 components: - type: Transform - pos: -50.5,61.5 + rot: 1.5707963267948966 rad + pos: -89.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8819 + - uid: 13715 components: - type: Transform - pos: -50.5,62.5 + rot: 1.5707963267948966 rad + pos: -88.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8820 + - uid: 13716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,60.5 + rot: 1.5707963267948966 rad + pos: -87.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8821 + - uid: 13717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,60.5 + rot: 1.5707963267948966 rad + pos: -86.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8822 + - uid: 13718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,60.5 + rot: 1.5707963267948966 rad + pos: -85.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8823 + - uid: 13751 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,60.5 + pos: -92.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8824 + - uid: 13753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,61.5 + pos: -99.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8825 + color: '#0000FFFF' + - uid: 13754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,62.5 + rot: -1.5707963267948966 rad + pos: -97.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8826 + color: '#0000FFFF' + - uid: 13755 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,63.5 + pos: -100.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8827 + color: '#0000FFFF' + - uid: 13757 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,61.5 + pos: -100.5,10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8828 + - uid: 13758 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,62.5 + pos: -100.5,7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8829 + - uid: 13760 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,63.5 + pos: -100.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8830 + - uid: 13761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,60.5 + rot: 3.141592653589793 rad + pos: -101.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8831 + color: '#FF0000FF' + - uid: 13768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,60.5 + rot: 3.141592653589793 rad + pos: -101.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8832 + color: '#FF0000FF' + - uid: 13769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,60.5 + rot: 3.141592653589793 rad + pos: -101.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8833 + color: '#FF0000FF' + - uid: 13770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,61.5 + rot: 3.141592653589793 rad + pos: -101.5,10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8834 + - uid: 13771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,61.5 + pos: -90.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8835 + - uid: 13772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,61.5 + pos: -88.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8836 + - uid: 13773 components: - type: Transform - pos: -58.5,62.5 + rot: 1.5707963267948966 rad + pos: -89.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8837 + - uid: 13779 components: - type: Transform - pos: -58.5,63.5 + pos: -84.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8838 + - uid: 13857 components: - type: Transform - pos: -59.5,61.5 + anchored: False + rot: 3.141592653589793 rad + pos: -84.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8839 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 13864 components: - type: Transform - pos: -59.5,62.5 + rot: 3.141592653589793 rad + pos: -83.5,48.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8840 + - uid: 13865 components: - type: Transform - pos: -59.5,63.5 + rot: 3.141592653589793 rad + pos: -83.5,49.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8841 + - uid: 13866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,61.5 + rot: 3.141592653589793 rad + pos: -81.5,49.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8851 + - uid: 13867 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,68.5 + pos: -81.5,48.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8852 + - uid: 13868 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,69.5 + pos: -81.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8853 + - uid: 13915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,70.5 + rot: -1.5707963267948966 rad + pos: -85.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8854 + - uid: 13942 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,71.5 + pos: -77.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8855 + color: '#0000FFFF' + - uid: 13944 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,72.5 + pos: -77.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8856 + color: '#0000FFFF' + - uid: 15864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,73.5 + pos: 7.5,49.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8857 +- proto: GasPipeStraightAlt1 + entities: + - uid: 1228 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,74.5 + pos: -2.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8858 + color: '#0000FFFF' + - uid: 1242 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,75.5 + pos: -12.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8859 + color: '#0000FFFF' + - uid: 1329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,76.5 + rot: -1.5707963267948966 rad + pos: -64.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8860 + color: '#0000FFFF' + - uid: 1331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,77.5 + rot: 1.5707963267948966 rad + pos: 1.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8861 + color: '#0000FFFF' + - uid: 1369 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,78.5 + pos: -40.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8862 + color: '#0000FFFF' + - uid: 1771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,79.5 + pos: -16.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8863 + color: '#0000FFFF' + - uid: 1772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,80.5 + pos: 7.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8864 + color: '#0000FFFF' + - uid: 1790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,68.5 + rot: 1.5707963267948966 rad + pos: -18.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8865 + - uid: 2102 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -50.5,68.5 + rot: -1.5707963267948966 rad + pos: 5.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8866 + color: '#0000FFFF' + - uid: 2258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,69.5 + pos: 3.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8867 + - uid: 2404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,70.5 + pos: -40.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8868 + - uid: 2405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8869 + - uid: 2407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 + pos: -40.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8870 + - uid: 2411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,73.5 + pos: -57.5,52.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8871 + - uid: 2412 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,74.5 + pos: -51.5,57.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8872 + - uid: 2415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,75.5 + rot: -1.5707963267948966 rad + pos: -49.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8873 + - uid: 2416 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,76.5 + pos: -51.5,75.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8874 + - uid: 2417 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,77.5 + pos: -51.5,68.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8875 + - uid: 2426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,78.5 + rot: -1.5707963267948966 rad + pos: -49.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8876 + - uid: 2428 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,79.5 + pos: -47.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8877 + - uid: 2431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,81.5 + pos: -57.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8878 + color: '#0000FFFF' + - uid: 2436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,82.5 + pos: -16.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8879 + color: '#0000FFFF' + - uid: 2442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,81.5 + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8880 + - uid: 2444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,82.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8889 + - uid: 2445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,84.5 + rot: 1.5707963267948966 rad + pos: -11.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8890 + color: '#0000FFFF' + - uid: 2451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,84.5 + rot: 1.5707963267948966 rad + pos: -0.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8891 + color: '#0000FFFF' + - uid: 2453 components: - type: Transform - pos: -52.5,83.5 + rot: -1.5707963267948966 rad + pos: -3.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8892 + color: '#0000FFFF' + - uid: 2455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,84.5 + rot: 1.5707963267948966 rad + pos: -18.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8893 + color: '#0000FFFF' + - uid: 2459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,84.5 + rot: 1.5707963267948966 rad + pos: -69.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8894 + color: '#0000FFFF' + - uid: 2461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,83.5 + rot: 1.5707963267948966 rad + pos: -60.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8895 + - uid: 2463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,83.5 + rot: 1.5707963267948966 rad + pos: -53.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8896 + - uid: 2465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,83.5 + rot: 3.141592653589793 rad + pos: -47.5,39.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8897 + - uid: 2468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,83.5 + pos: -73.5,22.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8898 + - uid: 2486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,83.5 + pos: 3.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8899 + - uid: 2489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,83.5 + pos: -50.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8900 + - uid: 2491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,85.5 + rot: 1.5707963267948966 rad + pos: -38.5,39.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8901 + - uid: 2666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,86.5 + pos: -57.5,12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8902 + - uid: 2670 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,87.5 + pos: -44.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8903 + - uid: 2677 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,88.5 + pos: 15.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8904 + - uid: 2679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,89.5 + pos: -13.5,48.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8905 + - uid: 2682 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,89.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8906 + - uid: 2684 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,89.5 + pos: 8.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8907 + - uid: 2685 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,89.5 + pos: -3.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8908 + - uid: 2775 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,89.5 + pos: 7.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8909 + - uid: 2863 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,89.5 + pos: 12.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8910 + - uid: 2873 components: - type: Transform - pos: -58.5,88.5 + rot: 1.5707963267948966 rad + pos: 5.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8919 + - uid: 2877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,86.5 + rot: 1.5707963267948966 rad + pos: -24.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8920 + color: '#0000FFFF' + - uid: 3010 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,87.5 + pos: 9.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8921 + color: '#0000FFFF' + - uid: 3011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,88.5 + pos: 6.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8922 + color: '#0000FFFF' + - uid: 3012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,88.5 + pos: 7.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8923 + color: '#0000FFFF' + - uid: 3013 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,88.5 + pos: 4.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9573 + color: '#0000FFFF' + - uid: 3016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,37.5 + rot: 3.141592653589793 rad + pos: 9.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10054 + - uid: 3021 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,19.5 + pos: 3.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10072 + color: '#0000FFFF' + - uid: 3179 components: - type: Transform - pos: 10.5,18.5 + rot: -1.5707963267948966 rad + pos: 7.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10235 + color: '#0000FFFF' + - uid: 3349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-3.5 + rot: -1.5707963267948966 rad + pos: 4.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10240 + - uid: 3350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-5.5 + pos: 3.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10241 + - uid: 3351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-4.5 + pos: 3.5,20.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10312 + - uid: 3357 components: - type: Transform - pos: -11.5,17.5 + pos: 3.5,22.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10347 + - uid: 3559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-12.5 + rot: 1.5707963267948966 rad + pos: -1.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 10704 + - uid: 3571 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-12.5 + pos: 2.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11087 + - uid: 3573 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,31.5 + pos: 0.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11088 + color: '#0000FFFF' + - uid: 3617 components: - type: Transform - pos: -57.5,31.5 + rot: 1.5707963267948966 rad + pos: 12.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11089 + - uid: 3715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,32.5 + rot: 1.5707963267948966 rad + pos: 6.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11090 + - uid: 3846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,32.5 + pos: 3.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11092 + color: '#0000FFFF' + - uid: 3959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,32.5 + pos: 8.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11097 + - uid: 3961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,37.5 + rot: 1.5707963267948966 rad + pos: 9.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11098 + color: '#0000FFFF' + - uid: 4280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,43.5 + rot: 1.5707963267948966 rad + pos: 13.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11099 + color: '#0000FFFF' + - uid: 4750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,37.5 + rot: 1.5707963267948966 rad + pos: 7.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11100 + - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,43.5 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11101 + - uid: 4753 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,44.5 + pos: -12.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11102 + color: '#0000FFFF' + - uid: 4755 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,38.5 + pos: -12.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11104 + color: '#0000FFFF' + - uid: 4777 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,34.5 + pos: -40.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11105 + - uid: 4779 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,35.5 + pos: -40.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11106 + - uid: 4780 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,36.5 + pos: -40.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11107 + - uid: 4803 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,33.5 + pos: -32.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11108 + color: '#0000FFFF' + - uid: 4805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,34.5 + pos: -40.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11109 + color: '#0000FFFF' + - uid: 4808 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,35.5 + pos: -32.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11110 + color: '#0000FFFF' + - uid: 4877 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,36.5 + pos: -32.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11111 + color: '#0000FFFF' + - uid: 4915 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,39.5 + pos: -32.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11112 + - uid: 4931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,40.5 + rot: -1.5707963267948966 rad + pos: -62.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11113 + - uid: 4974 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,41.5 + pos: -57.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11115 + - uid: 4975 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,40.5 + pos: -57.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11117 + color: '#0000FFFF' + - uid: 5079 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,42.5 + pos: -57.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11118 + color: '#0000FFFF' + - uid: 5317 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11127 - components: - - type: Transform - pos: -56.5,45.5 + pos: -57.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11128 + color: '#0000FFFF' + - uid: 5350 components: - type: Transform - pos: -57.5,45.5 + rot: 3.141592653589793 rad + pos: -57.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11129 + - uid: 5387 components: - type: Transform - pos: -57.5,46.5 + rot: 3.141592653589793 rad + pos: -57.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11130 + - uid: 5393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,47.5 + rot: 3.141592653589793 rad + pos: -57.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11131 + - uid: 5397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,47.5 + rot: 3.141592653589793 rad + pos: -57.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11132 + - uid: 5401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,47.5 + rot: 3.141592653589793 rad + pos: -57.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11133 + - uid: 5462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,47.5 + rot: 3.141592653589793 rad + pos: -57.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11135 + - uid: 5692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,46.5 + rot: 3.141592653589793 rad + pos: -57.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11136 + color: '#0000FFFF' + - uid: 5782 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,46.5 + pos: -8.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11138 + color: '#0000FFFF' + - uid: 6253 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,46.5 + pos: -65.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11139 + color: '#0000FFFF' + - uid: 7009 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,46.5 + pos: -42.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11140 + color: '#0000FFFF' + - uid: 7089 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,46.5 + pos: -60.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11141 + color: '#0000FFFF' + - uid: 7329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,46.5 + rot: 1.5707963267948966 rad + pos: -54.5,71.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11142 + color: '#0000FFFF' + - uid: 7330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,47.5 + rot: 1.5707963267948966 rad + pos: -53.5,71.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11143 + - uid: 7333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,47.5 + pos: -55.5,73.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11144 + - uid: 7348 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,47.5 + pos: -46.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11149 + - uid: 7353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,47.5 + pos: -55.5,72.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11150 + - uid: 7354 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,47.5 + pos: -52.5,71.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11151 - components: - - type: Transform - pos: -48.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11152 + - uid: 7441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,46.5 + rot: -1.5707963267948966 rad + pos: -59.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11153 + - uid: 7458 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,45.5 + pos: -57.5,4.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11154 + - uid: 7647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,44.5 + pos: -57.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11170 + - uid: 8599 components: - type: Transform - pos: -48.5,43.5 + pos: -40.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11171 + color: '#0000FFFF' + - uid: 8674 components: - type: Transform - pos: -48.5,42.5 + pos: -40.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11176 + color: '#0000FFFF' + - uid: 8675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,44.5 + pos: -40.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11177 + color: '#0000FFFF' + - uid: 8676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,44.5 + rot: 3.141592653589793 rad + pos: -12.5,12.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11178 + color: '#0000FFFF' + - uid: 8677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,44.5 + pos: 3.5,37.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11179 + color: '#0000FFFF' + - uid: 8678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,43.5 + rot: 1.5707963267948966 rad + pos: 6.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11180 + - uid: 8681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,43.5 + pos: -57.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11181 + - uid: 8686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,43.5 + pos: -40.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11182 + - uid: 8692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,44.5 + pos: -40.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11183 + color: '#0000FFFF' + - uid: 8693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,44.5 + pos: -40.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11186 + color: '#0000FFFF' + - uid: 8694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,44.5 + pos: -40.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11187 + color: '#0000FFFF' + - uid: 8701 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,43.5 + pos: -40.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11188 + color: '#0000FFFF' + - uid: 8702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,43.5 + rot: 3.141592653589793 rad + pos: -40.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11190 + - uid: 8711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,43.5 + pos: -54.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11191 + - uid: 8712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,43.5 + pos: -54.5,52.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11193 + - uid: 8713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,44.5 + pos: -54.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11194 + color: '#0000FFFF' + - uid: 8719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,44.5 + pos: -57.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11195 + color: '#0000FFFF' + - uid: 8723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,44.5 + rot: 3.141592653589793 rad + pos: -51.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11197 + color: '#0000FFFF' + - uid: 8724 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,44.5 + pos: -51.5,56.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11198 + - uid: 8725 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,45.5 + pos: -51.5,58.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11199 + - uid: 8727 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,46.5 + pos: -51.5,60.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11200 + - uid: 8730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,47.5 + rot: -1.5707963267948966 rad + pos: -60.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11201 + - uid: 8731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,48.5 + rot: -1.5707963267948966 rad + pos: -58.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11202 + - uid: 8732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,45.5 + rot: -1.5707963267948966 rad + pos: -59.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11203 + color: '#0000FFFF' + - uid: 8736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,46.5 + rot: -1.5707963267948966 rad + pos: -56.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11204 + color: '#0000FFFF' + - uid: 8737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,47.5 + rot: -1.5707963267948966 rad + pos: -55.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11205 + color: '#0000FFFF' + - uid: 8749 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,48.5 + pos: -44.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11206 + color: '#0000FFFF' + - uid: 8750 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,49.5 + pos: -44.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11207 + color: '#0000FFFF' + - uid: 8769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,49.5 + rot: 1.5707963267948966 rad + pos: -52.5,83.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11210 + - uid: 8770 components: - type: Transform - pos: -46.5,41.5 + rot: 1.5707963267948966 rad + pos: -56.5,83.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11213 + - uid: 8773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,43.5 + pos: -57.5,86.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11214 + - uid: 8775 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,43.5 + pos: -53.5,89.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11215 + - uid: 8777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,44.5 + rot: 1.5707963267948966 rad + pos: -54.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11216 + color: '#0000FFFF' + - uid: 8779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,44.5 + rot: 1.5707963267948966 rad + pos: -53.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11217 + color: '#0000FFFF' + - uid: 8782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,43.5 + rot: -1.5707963267948966 rad + pos: -56.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11218 + color: '#0000FFFF' + - uid: 8784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,43.5 + pos: -57.5,88.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11219 + - uid: 8796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,43.5 + pos: -59.5,62.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11220 + - uid: 8798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,44.5 + pos: -59.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11225 + color: '#0000FFFF' + - uid: 8819 components: - type: Transform - pos: -32.5,45.5 + rot: 3.141592653589793 rad + pos: -51.5,84.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11226 + - uid: 8822 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,45.5 + pos: -58.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11229 + color: '#0000FFFF' + - uid: 8823 components: - type: Transform - pos: -33.5,46.5 + pos: -55.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11230 + color: '#0000FFFF' + - uid: 8825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,47.5 + rot: 3.141592653589793 rad + pos: -51.5,82.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11231 + color: '#0000FFFF' + - uid: 8826 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,47.5 + pos: -57.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11232 + color: '#0000FFFF' + - uid: 8827 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,47.5 + pos: -56.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11233 + color: '#0000FFFF' + - uid: 8828 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,46.5 + pos: -54.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11234 + - uid: 8829 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,46.5 + pos: -52.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11241 + - uid: 8831 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,40.5 + pos: -51.5,79.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11242 + - uid: 8832 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,39.5 + pos: -51.5,77.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11243 + - uid: 8833 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,38.5 + pos: -51.5,73.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11244 + - uid: 8834 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,37.5 + pos: -51.5,76.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11245 + - uid: 8835 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,40.5 + pos: -51.5,74.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11246 + color: '#0000FFFF' + - uid: 8836 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,39.5 + pos: -51.5,72.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11247 + color: '#0000FFFF' + - uid: 8838 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,38.5 + pos: -51.5,67.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11248 + color: '#0000FFFF' + - uid: 8839 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,37.5 + pos: -51.5,62.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11249 + color: '#0000FFFF' + - uid: 8840 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,36.5 + pos: -51.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11250 + color: '#0000FFFF' + - uid: 8842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,35.5 + pos: -47.5,60.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11251 + - uid: 8843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,34.5 + rot: -1.5707963267948966 rad + pos: -48.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11252 + color: '#0000FFFF' + - uid: 8844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,34.5 + rot: -1.5707963267948966 rad + pos: -50.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11253 + - uid: 8848 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,32.5 + pos: -17.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11254 + - uid: 8851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,32.5 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11255 + - uid: 8854 + components: + - type: Transform + pos: -40.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8855 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,32.5 + pos: -32.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11256 + color: '#0000FFFF' + - uid: 8856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 + rot: -1.5707963267948966 rad + pos: -41.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11257 + - uid: 8858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,31.5 + pos: -57.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11259 + color: '#0000FFFF' + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,31.5 + rot: -1.5707963267948966 rad + pos: -52.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11260 + color: '#0000FFFF' + - uid: 8863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,31.5 + rot: -1.5707963267948966 rad + pos: -56.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11261 + color: '#0000FFFF' + - uid: 8866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,31.5 + rot: -1.5707963267948966 rad + pos: -42.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11262 + color: '#0000FFFF' + - uid: 8867 components: - type: Transform - pos: -50.5,32.5 + rot: -1.5707963267948966 rad + pos: -43.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11263 + color: '#0000FFFF' + - uid: 8868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,32.5 + pos: -45.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11264 + - uid: 8869 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,31.5 + pos: -46.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11265 + color: '#0000FFFF' + - uid: 8870 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,32.5 + pos: -53.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11273 + - uid: 8871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,33.5 + pos: -57.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11275 + - uid: 8872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,32.5 + pos: -57.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11276 + - uid: 8873 components: - type: Transform - pos: -48.5,32.5 + rot: -1.5707963267948966 rad + pos: -51.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11277 + color: '#0000FFFF' + - uid: 8875 components: - type: Transform - pos: -48.5,33.5 + rot: -1.5707963267948966 rad + pos: -50.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11281 + color: '#0000FFFF' + - uid: 8877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,31.5 + pos: -57.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11282 + color: '#0000FFFF' + - uid: 8895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,31.5 + rot: -1.5707963267948966 rad + pos: -48.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11283 + color: '#0000FFFF' + - uid: 8896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,31.5 + rot: -1.5707963267948966 rad + pos: -49.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11284 + - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,30.5 + pos: -47.5,52.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11285 + - uid: 8904 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,30.5 + pos: -47.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11286 + color: '#0000FFFF' + - uid: 8905 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,29.5 + pos: -47.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11289 + - uid: 8906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,28.5 + rot: 3.141592653589793 rad + pos: -47.5,50.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11290 + - uid: 8912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,28.5 + rot: 3.141592653589793 rad + pos: -47.5,49.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11291 + - uid: 8914 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,29.5 + pos: -30.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11292 + color: '#0000FFFF' + - uid: 8915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,29.5 + pos: -31.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11295 + color: '#0000FFFF' + - uid: 8920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,28.5 + rot: 3.141592653589793 rad + pos: -37.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11296 + - uid: 8921 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,28.5 + pos: -32.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11297 + color: '#0000FFFF' + - uid: 8922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,27.5 + rot: 1.5707963267948966 rad + pos: -35.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11298 + color: '#0000FFFF' + - uid: 8923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,27.5 + rot: 1.5707963267948966 rad + pos: -34.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11299 + - uid: 8931 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,26.5 + pos: -37.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11300 + color: '#0000FFFF' + - uid: 8932 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,26.5 + pos: -48.5,29.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11301 + - uid: 10083 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,25.5 + pos: -47.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11302 + color: '#0000FFFF' + - uid: 10241 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,25.5 + pos: -47.5,37.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11307 + - uid: 10258 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,34.5 + pos: -47.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11309 + - uid: 10312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,33.5 + rot: -1.5707963267948966 rad + pos: -51.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11310 + color: '#0000FFFF' + - uid: 10347 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,34.5 + pos: -50.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11311 + color: '#0000FFFF' + - uid: 10703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,35.5 + pos: -48.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11313 + color: '#0000FFFF' + - uid: 10956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,36.5 + rot: -1.5707963267948966 rad + pos: -51.5,36.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11314 + - uid: 11086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,37.5 + rot: -1.5707963267948966 rad + pos: -50.5,36.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11315 + - uid: 11087 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,38.5 + pos: -47.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11316 + - uid: 11088 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,39.5 + pos: -47.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11489 + - uid: 11090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,47.5 + rot: 1.5707963267948966 rad + pos: -59.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11520 + - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,31.5 + rot: 1.5707963267948966 rad + pos: -39.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11521 + color: '#0000FFFF' + - uid: 11096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,38.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11522 + color: '#0000FFFF' + - uid: 11099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,36.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11523 + - uid: 11102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11524 + - uid: 11103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11525 + - uid: 11109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,31.5 + rot: 3.141592653589793 rad + pos: -31.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11526 + color: '#0000FFFF' + - uid: 11111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,31.5 + rot: 1.5707963267948966 rad + pos: -32.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11527 + color: '#0000FFFF' + - uid: 11113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,33.5 + rot: 1.5707963267948966 rad + pos: -34.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11528 + - uid: 11117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,31.5 + rot: 1.5707963267948966 rad + pos: -35.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11529 + color: '#0000FFFF' + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,33.5 + rot: 1.5707963267948966 rad + pos: -36.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11530 + - uid: 11123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,31.5 + rot: 1.5707963267948966 rad + pos: -33.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11531 + color: '#0000FFFF' + - uid: 11130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11535 + - uid: 11133 components: - type: Transform - pos: -36.5,34.5 + rot: 3.141592653589793 rad + pos: -37.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11537 + - uid: 11134 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,33.5 + pos: -37.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11538 + color: '#0000FFFF' + - uid: 11135 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,34.5 + pos: -37.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11539 + color: '#0000FFFF' + - uid: 11136 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,35.5 + pos: -37.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11540 + color: '#0000FFFF' + - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,15.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11541 + - uid: 11138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11542 + - uid: 11139 components: - type: Transform - pos: -36.5,35.5 + rot: 3.141592653589793 rad + pos: -37.5,18.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11544 + - uid: 11140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11545 + - uid: 11151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11546 + - uid: 11152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11547 + color: '#0000FFFF' + - uid: 11153 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,31.5 + pos: -41.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11548 + color: '#0000FFFF' + - uid: 11154 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,31.5 + pos: -39.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11549 + color: '#0000FFFF' + - uid: 11156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,31.5 + rot: 1.5707963267948966 rad + pos: -33.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11550 + color: '#0000FFFF' + - uid: 11167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,31.5 + rot: 1.5707963267948966 rad + pos: -28.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11551 + - uid: 11168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: -32.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11552 + - uid: 11169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,29.5 + rot: 1.5707963267948966 rad + pos: -31.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11553 + - uid: 11170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -30.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11554 + color: '#0000FFFF' + - uid: 11171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,29.5 + rot: 1.5707963267948966 rad + pos: -29.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11561 + color: '#0000FFFF' + - uid: 11172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,36.5 + rot: 1.5707963267948966 rad + pos: -27.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11562 + - uid: 11175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,36.5 + pos: -26.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11563 + color: '#0000FFFF' + - uid: 11184 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,36.5 + pos: -34.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11564 + color: '#0000FFFF' + - uid: 11186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,37.5 + pos: -36.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11565 + - uid: 11194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,37.5 + rot: 3.141592653589793 rad + pos: -52.5,15.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11566 + - uid: 11195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,36.5 + rot: 3.141592653589793 rad + pos: -52.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11567 + color: '#0000FFFF' + - uid: 11215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,37.5 + rot: -1.5707963267948966 rad + pos: -56.5,14.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11568 + - uid: 11240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 + pos: -57.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11569 + color: '#0000FFFF' + - uid: 11242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,37.5 + pos: -57.5,15.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11570 + - uid: 11244 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,37.5 + pos: -55.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11571 + - uid: 11245 components: - type: Transform - pos: -38.5,39.5 + rot: 1.5707963267948966 rad + pos: -56.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11572 + color: '#0000FFFF' + - uid: 11246 components: - type: Transform - pos: -36.5,39.5 + pos: -57.5,7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11573 + - uid: 11248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 + rot: -1.5707963267948966 rad + pos: -54.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11574 + color: '#0000FFFF' + - uid: 11250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 + pos: -57.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11576 + color: '#0000FFFF' + - uid: 11266 components: - type: Transform - pos: -38.5,38.5 + rot: -1.5707963267948966 rad + pos: -66.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11577 + color: '#0000FFFF' + - uid: 11267 components: - type: Transform - pos: -36.5,38.5 + rot: -1.5707963267948966 rad + pos: -65.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11578 + - uid: 11268 components: - type: Transform - pos: -38.5,37.5 + rot: -1.5707963267948966 rad + pos: -63.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11581 + color: '#0000FFFF' + - uid: 11269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,36.5 + rot: -1.5707963267948966 rad + pos: -62.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11582 + color: '#0000FFFF' + - uid: 11270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,37.5 + rot: -1.5707963267948966 rad + pos: -60.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11583 + - uid: 11272 components: - type: Transform - pos: -31.5,37.5 + rot: -1.5707963267948966 rad + pos: -39.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11584 + color: '#0000FFFF' + - uid: 11273 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,37.5 + pos: -58.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11585 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,36.5 + pos: -41.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11586 + color: '#0000FFFF' + - uid: 11276 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,37.5 + pos: -64.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11587 + - uid: 11277 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,36.5 + pos: -53.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11588 + color: '#0000FFFF' + - uid: 11281 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,37.5 + pos: -56.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11589 + - uid: 11282 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,36.5 + pos: -54.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11590 + color: '#0000FFFF' + - uid: 11283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 + rot: -1.5707963267948966 rad + pos: -53.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11591 + color: '#0000FFFF' + - uid: 11284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,38.5 + rot: -1.5707963267948966 rad + pos: -51.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11609 + - uid: 11285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,28.5 + rot: -1.5707963267948966 rad + pos: -48.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11610 + color: '#0000FFFF' + - uid: 11295 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,27.5 + rot: -1.5707963267948966 rad + pos: -45.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11611 + - uid: 11296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,26.5 + rot: -1.5707963267948966 rad + pos: -44.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11612 + - uid: 11299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,25.5 + rot: -1.5707963267948966 rad + pos: -49.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11613 + - uid: 11300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,26.5 + pos: -57.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11615 + color: '#0000FFFF' + - uid: 11301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,24.5 + pos: -57.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11617 + color: '#0000FFFF' + - uid: 11306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,22.5 + pos: -57.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11618 + - uid: 11307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 + pos: -57.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11619 + - uid: 11308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,22.5 + pos: -57.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11620 + color: '#0000FFFF' + - uid: 11309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,20.5 + pos: -57.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11621 + color: '#0000FFFF' + - uid: 11310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,19.5 + pos: -57.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11622 + color: '#0000FFFF' + - uid: 11311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,18.5 + pos: -57.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11623 + color: '#0000FFFF' + - uid: 11312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,17.5 + pos: -57.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11624 + color: '#0000FFFF' + - uid: 11313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,16.5 + pos: -57.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11625 + color: '#0000FFFF' + - uid: 11314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11626 + color: '#0000FFFF' + - uid: 11315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,14.5 + pos: -44.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11627 + color: '#0000FFFF' + - uid: 11318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11628 + - uid: 11319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,14.5 + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11629 + - uid: 11321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,15.5 + rot: 1.5707963267948966 rad + pos: -38.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11630 + - uid: 11489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,16.5 + rot: 1.5707963267948966 rad + pos: -38.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11631 + - uid: 11518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,17.5 + rot: 1.5707963267948966 rad + pos: -37.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11632 + - uid: 11528 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,18.5 + pos: -44.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11633 + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,19.5 + pos: -44.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11634 + - uid: 11531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,23.5 + pos: -42.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11635 + color: '#0000FFFF' + - uid: 11533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,23.5 + rot: -1.5707963267948966 rad + pos: -45.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11636 + color: '#0000FFFF' + - uid: 11534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,24.5 + pos: -44.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11637 + - uid: 11548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,24.5 + pos: -66.5,49.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11638 + - uid: 11549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,24.5 + rot: 3.141592653589793 rad + pos: -37.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11639 + - uid: 11552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,24.5 + rot: 3.141592653589793 rad + pos: -37.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11648 + - uid: 11553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,23.5 + rot: 3.141592653589793 rad + pos: -37.5,29.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11650 + - uid: 11554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,23.5 + rot: 3.141592653589793 rad + pos: -37.5,26.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11651 + - uid: 11555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,23.5 + rot: 3.141592653589793 rad + pos: -37.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11652 + - uid: 11556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,23.5 + rot: 3.141592653589793 rad + pos: -37.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11653 + - uid: 11557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,23.5 + rot: 3.141592653589793 rad + pos: -37.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11654 + - uid: 11564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,23.5 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11655 + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,23.5 + pos: -34.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11656 + - uid: 11569 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,23.5 + pos: -33.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11657 + - uid: 11572 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,23.5 + pos: -25.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11658 + - uid: 11574 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,25.5 + pos: -28.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11659 + color: '#0000FFFF' + - uid: 11576 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,25.5 + pos: -27.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11660 + color: '#0000FFFF' + - uid: 11579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,25.5 + rot: -1.5707963267948966 rad + pos: -24.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11661 + color: '#0000FFFF' + - uid: 11580 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,25.5 + pos: -29.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11663 + color: '#0000FFFF' + - uid: 11586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11664 + color: '#0000FFFF' + - uid: 11587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11665 + color: '#0000FFFF' + - uid: 11588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11666 + color: '#0000FFFF' + - uid: 11589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11667 + color: '#0000FFFF' + - uid: 11590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11668 + color: '#0000FFFF' + - uid: 11591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11669 + color: '#0000FFFF' + - uid: 11592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,24.5 + rot: 3.141592653589793 rad + pos: -23.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11671 + color: '#0000FFFF' + - uid: 11593 components: - type: Transform - pos: -34.5,24.5 + rot: -1.5707963267948966 rad + pos: -15.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11672 + - uid: 11594 components: - type: Transform - pos: -34.5,25.5 + rot: -1.5707963267948966 rad + pos: -21.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11673 + - uid: 11595 components: - type: Transform - pos: -34.5,26.5 + rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11674 + - uid: 11596 components: - type: Transform - pos: -33.5,26.5 + rot: 1.5707963267948966 rad + pos: -36.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11683 + color: '#0000FFFF' + - uid: 11603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,25.5 + pos: -22.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11684 + color: '#0000FFFF' + - uid: 11604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,24.5 + pos: -22.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11685 + - uid: 11613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,24.5 + pos: -16.5,58.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11686 + - uid: 11614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,24.5 + pos: -16.5,62.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11687 + - uid: 11619 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,25.5 + pos: -12.5,15.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11688 + - uid: 11620 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,26.5 + pos: -12.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11690 + - uid: 11621 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,28.5 + pos: -12.5,7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11691 + - uid: 11622 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,29.5 + pos: -12.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11693 + - uid: 11637 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,27.5 + pos: -16.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11694 + color: '#0000FFFF' + - uid: 11639 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,28.5 + pos: -16.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11695 + color: '#0000FFFF' + - uid: 11640 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,29.5 + pos: -16.5,38.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11696 + color: '#0000FFFF' + - uid: 11641 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,30.5 + pos: -16.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11699 + color: '#0000FFFF' + - uid: 11642 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,24.5 + pos: -16.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11708 + color: '#0000FFFF' + - uid: 11644 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,15.5 + pos: -16.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11709 + - uid: 11645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,15.5 + pos: -17.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11710 + color: '#0000FFFF' + - uid: 11646 components: - type: Transform - pos: -56.5,23.5 + pos: -16.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11711 + color: '#0000FFFF' + - uid: 11649 components: - type: Transform - pos: -56.5,22.5 + pos: -16.5,50.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11712 + color: '#0000FFFF' + - uid: 11651 components: - type: Transform - pos: -56.5,21.5 + pos: -16.5,49.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11713 + color: '#0000FFFF' + - uid: 11653 components: - type: Transform - pos: -56.5,20.5 + pos: -16.5,56.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11714 + color: '#0000FFFF' + - uid: 11654 components: - type: Transform - pos: -56.5,19.5 + pos: -16.5,57.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11715 + color: '#0000FFFF' + - uid: 11655 components: - type: Transform - pos: -58.5,18.5 + pos: -16.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11716 + - uid: 11658 components: - type: Transform - pos: -58.5,19.5 + rot: 3.141592653589793 rad + pos: -16.5,37.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11717 + - uid: 11664 components: - type: Transform - pos: -58.5,20.5 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11718 + - uid: 11665 components: - type: Transform - pos: -58.5,21.5 + rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11719 + - uid: 11666 components: - type: Transform - pos: -58.5,22.5 + rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11720 + - uid: 11681 components: - type: Transform - pos: -58.5,23.5 + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11721 + - uid: 11682 components: - type: Transform - pos: -56.5,17.5 + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11722 + color: '#0000FFFF' + - uid: 11692 components: - type: Transform - pos: -56.5,16.5 + pos: -1.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11723 + color: '#0000FFFF' + - uid: 11693 components: - type: Transform - pos: -58.5,15.5 + pos: -1.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11724 + - uid: 11696 components: - type: Transform - pos: -58.5,16.5 + pos: -1.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11725 + - uid: 11697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,15.5 + pos: -1.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11726 + color: '#0000FFFF' + - uid: 11702 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,14.5 + pos: -0.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11727 + - uid: 11706 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,14.5 + pos: -2.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11728 + - uid: 11707 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,14.5 + pos: 0.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11729 + - uid: 11711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,14.5 + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11730 + - uid: 11713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,13.5 + pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11731 + - uid: 11717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,12.5 + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11732 + - uid: 11719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,14.5 + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11733 + color: '#0000FFFF' + - uid: 11721 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,13.5 + pos: -7.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11734 + color: '#0000FFFF' + - uid: 11722 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,12.5 + pos: -7.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11735 + color: '#0000FFFF' + - uid: 11726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,11.5 + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11736 + color: '#0000FFFF' + - uid: 11727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,10.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,9.5 + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,8.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,9.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 11740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,8.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 11741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,16.5 + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 11742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,17.5 + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11743 + color: '#0000FFFF' + - uid: 11747 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,18.5 + pos: -12.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11744 + color: '#0000FFFF' + - uid: 11748 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,16.5 + pos: -12.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11745 + - uid: 11750 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,17.5 + pos: -12.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11746 + - uid: 11753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,18.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11762 + - uid: 11754 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,7.5 + pos: -7.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11763 + color: '#0000FFFF' + - uid: 11755 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,6.5 + pos: -7.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11765 + color: '#0000FFFF' + - uid: 11762 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,7.5 + pos: -12.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11766 + - uid: 11763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,6.5 + rot: 3.141592653589793 rad + pos: -12.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11767 + - uid: 11764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,6.5 + rot: -1.5707963267948966 rad + pos: -14.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11768 + - uid: 11765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,6.5 + rot: -1.5707963267948966 rad + pos: -13.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,6.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,4.5 + rot: 3.141592653589793 rad + pos: -12.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 11771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,4.5 + rot: 3.141592653589793 rad + pos: -12.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 11772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11773 - components: - - type: Transform - pos: -56.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11774 - components: - - type: Transform - pos: -56.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11775 - components: - - type: Transform - pos: -56.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11776 - components: - - type: Transform - pos: -58.5,4.5 + rot: 3.141592653589793 rad + pos: -12.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11777 + - uid: 11773 components: - type: Transform - pos: -58.5,3.5 + rot: 3.141592653589793 rad + pos: -12.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11778 + - uid: 11774 components: - type: Transform - pos: -58.5,2.5 + rot: 3.141592653589793 rad + pos: -12.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11779 + - uid: 11775 components: - type: Transform - pos: -58.5,1.5 + rot: 3.141592653589793 rad + pos: -12.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11785 + - uid: 11812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,6.5 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11786 + - uid: 11818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,6.5 + rot: 1.5707963267948966 rad + pos: 23.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11787 + - uid: 11820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,6.5 + rot: 1.5707963267948966 rad + pos: 19.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11791 + - uid: 11823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,4.5 + pos: 25.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11792 + color: '#0000FFFF' + - uid: 11824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,4.5 + pos: 20.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11793 + color: '#0000FFFF' + - uid: 11827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,4.5 + pos: 21.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11794 + color: '#0000FFFF' + - uid: 11828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,4.5 + pos: 9.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11795 + color: '#0000FFFF' + - uid: 11829 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,4.5 + pos: 13.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11796 + color: '#0000FFFF' + - uid: 11830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,6.5 + pos: 22.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11797 + - uid: 11831 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,6.5 + pos: 11.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11798 + - uid: 11833 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,6.5 + pos: 17.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11799 + - uid: 11834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,6.5 + pos: 2.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11800 + - uid: 11835 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,6.5 + pos: 14.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11801 + - uid: 11836 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,6.5 + pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11802 + - uid: 11837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,6.5 + pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11803 + - uid: 11838 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,6.5 + pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11804 + - uid: 11839 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,6.5 + pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11805 + - uid: 11840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,4.5 + pos: -6.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11806 + color: '#0000FFFF' + - uid: 11841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,4.5 + pos: -5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11807 + color: '#0000FFFF' + - uid: 11842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,4.5 + pos: -4.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11808 + color: '#0000FFFF' + - uid: 11843 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,4.5 + pos: 9.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11809 + color: '#0000FFFF' + - uid: 11844 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,4.5 + pos: 18.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11810 + color: '#0000FFFF' + - uid: 11848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,6.5 + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11822 + - uid: 11890 components: - type: Transform - pos: -58.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11823 + - uid: 11891 components: - type: Transform - pos: -58.5,-0.5 + rot: 3.141592653589793 rad + pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11824 + - uid: 11892 components: - type: Transform - pos: -56.5,0.5 + pos: 1.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11825 + color: '#0000FFFF' + - uid: 11893 components: - type: Transform - pos: -56.5,-0.5 + pos: 1.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11826 + color: '#0000FFFF' + - uid: 11922 components: - type: Transform - pos: -56.5,-1.5 + rot: 3.141592653589793 rad + pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11827 + color: '#0000FFFF' + - uid: 11923 components: - type: Transform - pos: -58.5,-2.5 + rot: 3.141592653589793 rad + pos: 10.5,4.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11828 + - uid: 11925 components: - type: Transform - pos: -58.5,-3.5 + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11829 + - uid: 11928 components: - type: Transform - pos: -58.5,-4.5 + pos: 1.5,9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11830 + - uid: 11931 components: - type: Transform - pos: -58.5,-5.5 + rot: 3.141592653589793 rad + pos: 15.5,29.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11831 + - uid: 11932 components: - type: Transform - pos: -56.5,-3.5 + rot: 1.5707963267948966 rad + pos: 14.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11832 + color: '#0000FFFF' + - uid: 11941 components: - type: Transform - pos: -56.5,-4.5 + rot: 1.5707963267948966 rad + pos: -9.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11833 + color: '#0000FFFF' + - uid: 11953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 + pos: 26.5,7.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11834 + - uid: 11954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-6.5 + pos: 26.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11835 + - uid: 11955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-6.5 + pos: 26.5,14.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11836 + - uid: 11962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-6.5 + rot: 1.5707963267948966 rad + pos: 27.5,9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11837 + - uid: 11964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-5.5 + rot: 1.5707963267948966 rad + pos: 27.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11838 + color: '#0000FFFF' + - uid: 11970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 + pos: 26.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11839 + color: '#0000FFFF' + - uid: 11971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-6.5 + pos: 26.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11844 + color: '#0000FFFF' + - uid: 11974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-9.5 + pos: 26.5,12.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11845 + color: '#0000FFFF' + - uid: 11975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-9.5 + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11846 + - uid: 11976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-8.5 + pos: 26.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11847 + color: '#0000FFFF' + - uid: 11977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-7.5 + pos: 26.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11848 + color: '#0000FFFF' + - uid: 11979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-7.5 + pos: 3.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11890 + - uid: 11985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,4.5 + rot: 1.5707963267948966 rad + pos: 0.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11891 + color: '#0000FFFF' + - uid: 11986 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,4.5 + pos: -1.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11892 + color: '#0000FFFF' + - uid: 11988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,6.5 + rot: 1.5707963267948966 rad + pos: 2.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11893 + - uid: 11989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11922 + - uid: 11996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,6.5 + pos: 3.5,26.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11923 + - uid: 11997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,6.5 + pos: 3.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11924 + - uid: 12002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11927 + color: '#0000FFFF' + - uid: 12003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11928 + color: '#0000FFFF' + - uid: 12004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11929 + color: '#0000FFFF' + - uid: 12010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11930 + color: '#0000FFFF' + - uid: 12011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,4.5 + pos: -12.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11931 + color: '#0000FFFF' + - uid: 12012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,4.5 + pos: -11.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11932 + color: '#0000FFFF' + - uid: 12016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,4.5 + pos: -14.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11933 + color: '#0000FFFF' + - uid: 12048 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,4.5 + pos: -10.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11935 + color: '#0000FFFF' + - uid: 12049 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,6.5 + pos: -9.5,55.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11936 + - uid: 12051 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,6.5 + pos: -12.5,55.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11937 + - uid: 12052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,6.5 + pos: -13.5,55.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11938 + - uid: 12053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,6.5 + pos: -15.5,55.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11939 + - uid: 12057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,56.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11942 + - uid: 12058 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,5.5 + pos: -7.5,57.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11943 + color: '#0000FFFF' + - uid: 12061 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,6.5 + pos: -7.5,58.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11944 + color: '#0000FFFF' + - uid: 12063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,7.5 + rot: 1.5707963267948966 rad + pos: -11.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11945 + color: '#0000FFFF' + - uid: 12067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,8.5 + rot: 1.5707963267948966 rad + pos: -19.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11946 + color: '#0000FFFF' + - uid: 12068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,7.5 + rot: 1.5707963267948966 rad + pos: -17.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11947 + - uid: 12079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,8.5 + pos: -73.5,18.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11950 + - uid: 12080 components: - type: Transform - pos: -41.5,5.5 + pos: -70.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11951 + - uid: 12081 components: - type: Transform - pos: -41.5,4.5 + pos: -73.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11953 + - uid: 12082 components: - type: Transform - pos: -40.5,1.5 + pos: -70.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11956 + color: '#0000FFFF' + - uid: 12083 components: - type: Transform - pos: -41.5,-0.5 + pos: -57.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11957 + - uid: 12084 components: - type: Transform - pos: -41.5,-1.5 + pos: -57.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11958 + - uid: 12085 components: - type: Transform - pos: -40.5,3.5 + rot: 1.5707963267948966 rad + pos: -58.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11959 + color: '#0000FFFF' + - uid: 12086 components: - type: Transform - pos: -41.5,2.5 + pos: -57.5,38.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11960 + - uid: 12089 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,1.5 + pos: -60.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11962 + - uid: 12090 components: - type: Transform - pos: -40.5,-0.5 + pos: -62.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11963 + color: '#0000FFFF' + - uid: 12094 components: - type: Transform - pos: -40.5,-1.5 + pos: -62.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11964 + color: '#0000FFFF' + - uid: 12098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,0.5 + pos: -67.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11965 + - uid: 12100 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,1.5 + pos: -60.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11966 + - uid: 12101 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,6.5 + pos: -63.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11967 + - uid: 12102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,0.5 + pos: -62.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11976 + color: '#0000FFFF' + - uid: 12104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-3.5 + rot: 1.5707963267948966 rad + pos: -65.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11977 + - uid: 12108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-4.5 + rot: 1.5707963267948966 rad + pos: -64.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11978 + - uid: 12112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-5.5 + rot: -1.5707963267948966 rad + pos: -59.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11979 + - uid: 12113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-4.5 + pos: -70.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11980 + color: '#0000FFFF' + - uid: 12114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-5.5 + rot: 1.5707963267948966 rad + pos: -68.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11981 + color: '#0000FFFF' + - uid: 12122 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-3.5 + pos: -75.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11982 + color: '#0000FFFF' + - uid: 12124 components: - type: Transform - pos: -43.5,-2.5 + pos: -73.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11983 + color: '#0000FFFF' + - uid: 12125 components: - type: Transform - pos: -43.5,-1.5 + pos: -73.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11984 + color: '#0000FFFF' + - uid: 12129 components: - type: Transform - pos: -43.5,-0.5 + pos: -70.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11985 + color: '#0000FFFF' + - uid: 12130 components: - type: Transform - pos: -44.5,-1.5 + rot: 1.5707963267948966 rad + pos: -51.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11986 + - uid: 12132 components: - type: Transform - pos: -44.5,-0.5 + rot: 3.141592653589793 rad + pos: -63.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11987 + - uid: 12134 components: - type: Transform - pos: -44.5,0.5 + rot: -1.5707963267948966 rad + pos: -64.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11988 + - uid: 12135 components: - type: Transform - pos: -43.5,0.5 + rot: -1.5707963267948966 rad + pos: -65.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11989 + color: '#0000FFFF' + - uid: 12136 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-2.5 + pos: -66.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11990 + - uid: 12138 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-2.5 + pos: -67.5,34.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11991 + - uid: 12143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 + pos: -73.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11992 + color: '#0000FFFF' + - uid: 12144 + components: + - type: Transform + pos: -73.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12145 + components: + - type: Transform + pos: -73.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12146 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-3.5 + pos: -74.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11993 + color: '#0000FFFF' + - uid: 12147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 + pos: -73.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12004 + color: '#0000FFFF' + - uid: 12148 components: - type: Transform - pos: -37.5,-3.5 + rot: 1.5707963267948966 rad + pos: -69.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12005 + - uid: 12149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -68.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12006 + - uid: 12150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 + rot: 1.5707963267948966 rad + pos: -71.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12007 + color: '#0000FFFF' + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-3.5 + pos: -76.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12008 + color: '#0000FFFF' + - uid: 12152 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-3.5 + pos: -78.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12010 + color: '#0000FFFF' + - uid: 12154 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-2.5 + pos: -79.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12011 + - uid: 12157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 + rot: 1.5707963267948966 rad + pos: -49.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12012 + - uid: 12159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 + pos: -73.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12013 + color: '#0000FFFF' + - uid: 12168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -46.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12014 + - uid: 12190 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -68.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12019 + color: '#0000FFFF' + - uid: 12191 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-2.5 + pos: -72.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12021 + - uid: 12192 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-3.5 + pos: -71.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12040 + color: '#0000FFFF' + - uid: 12197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,6.5 + pos: -63.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12041 + - uid: 12198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,6.5 + pos: -63.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12042 + - uid: 12200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,6.5 + pos: -63.5,29.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12043 + - uid: 12201 components: - type: Transform - pos: -38.5,12.5 + pos: -63.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12044 + color: '#0000FFFF' + - uid: 12204 components: - type: Transform - pos: -38.5,11.5 + rot: 1.5707963267948966 rad + pos: -56.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12045 + color: '#0000FFFF' + - uid: 12205 components: - type: Transform - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: -62.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12046 + color: '#0000FFFF' + - uid: 12206 components: - type: Transform - pos: -38.5,9.5 + rot: 1.5707963267948966 rad + pos: -61.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12047 + color: '#0000FFFF' + - uid: 12209 components: - type: Transform - pos: -38.5,8.5 + pos: -73.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12048 + color: '#0000FFFF' + - uid: 12210 components: - type: Transform - pos: -38.5,7.5 + rot: -1.5707963267948966 rad + pos: -75.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12049 + color: '#0000FFFF' + - uid: 12212 components: - type: Transform - pos: -38.5,6.5 + pos: -73.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12050 + color: '#0000FFFF' + - uid: 12216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,4.5 + rot: 1.5707963267948966 rad + pos: -70.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12051 + color: '#0000FFFF' + - uid: 12217 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,5.5 + pos: -32.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12054 + color: '#0000FFFF' + - uid: 12218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,11.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12055 + - uid: 12227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12056 + - uid: 12230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,9.5 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12057 + - uid: 12232 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,8.5 + pos: 9.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12058 + - uid: 12234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,7.5 + rot: 1.5707963267948966 rad + pos: 10.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12059 + - uid: 12235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,5.5 + rot: 1.5707963267948966 rad + pos: 8.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12060 + - uid: 12236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12061 + - uid: 12237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,4.5 + pos: 4.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12062 + color: '#0000FFFF' + - uid: 12239 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,4.5 + pos: 4.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12065 + color: '#0000FFFF' + - uid: 12243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12066 + color: '#0000FFFF' + - uid: 12244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,4.5 + rot: -1.5707963267948966 rad + pos: -43.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12067 + color: '#0000FFFF' + - uid: 12245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,6.5 + rot: -1.5707963267948966 rad + pos: -58.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12068 + - uid: 12250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,6.5 + rot: 3.141592653589793 rad + pos: -40.5,49.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12069 + - uid: 12262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,6.5 + rot: -1.5707963267948966 rad + pos: -55.5,89.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12070 + - uid: 12263 components: - type: Transform - pos: -32.5,5.5 + pos: -57.5,84.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12071 + - uid: 12264 components: - type: Transform - pos: -32.5,4.5 + pos: -57.5,87.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12072 + - uid: 12269 components: - type: Transform - pos: -32.5,3.5 + rot: 3.141592653589793 rad + pos: -51.5,88.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12073 + - uid: 12271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 + pos: -55.5,62.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12074 + color: '#0000FFFF' + - uid: 12272 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,3.5 + pos: -51.5,70.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12075 + color: '#0000FFFF' + - uid: 12274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,86.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12076 + - uid: 12275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,4.5 + rot: 3.141592653589793 rad + pos: -51.5,81.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12081 + color: '#0000FFFF' + - uid: 12279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 + pos: 3.5,38.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12082 + - uid: 12281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,6.5 + pos: -44.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12083 + - uid: 12284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 + rot: 3.141592653589793 rad + pos: -12.5,10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12084 + - uid: 12285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 + pos: -57.5,37.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12085 + - uid: 12286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 + rot: -1.5707963267948966 rad + pos: -49.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12086 + - uid: 12288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 + rot: -1.5707963267948966 rad + pos: -48.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12087 + - uid: 12289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 + pos: -57.5,43.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12088 + - uid: 12290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,4.5 + rot: -1.5707963267948966 rad + pos: -55.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12089 + color: '#0000FFFF' + - uid: 12291 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,4.5 + pos: -58.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12090 + color: '#0000FFFF' + - uid: 12300 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,4.5 + pos: -33.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12091 + color: '#0000FFFF' + - uid: 12303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,4.5 + rot: 3.141592653589793 rad + pos: -47.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12092 + color: '#0000FFFF' + - uid: 12306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,4.5 + pos: -50.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12095 + color: '#0000FFFF' + - uid: 12307 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,5.5 + pos: -47.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12096 + color: '#0000FFFF' + - uid: 12318 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,6.5 + pos: -37.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12097 + color: '#0000FFFF' + - uid: 12319 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,7.5 + pos: -37.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12098 + color: '#0000FFFF' + - uid: 12332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,8.5 + rot: -1.5707963267948966 rad + pos: -54.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12099 + color: '#0000FFFF' + - uid: 12336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 + pos: -57.5,9.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12102 + - uid: 12337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + pos: -57.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12103 + - uid: 12338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,10.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12104 + - uid: 12339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,10.5 + rot: -1.5707963267948966 rad + pos: -55.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12105 + color: '#0000FFFF' + - uid: 12342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 + rot: -1.5707963267948966 rad + pos: -50.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12108 + - uid: 12343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,12.5 + pos: -57.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12109 + color: '#0000FFFF' + - uid: 12344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,12.5 + pos: -57.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12110 + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,12.5 + pos: -36.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12111 + - uid: 12346 components: - type: Transform - pos: -25.5,13.5 + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12112 + color: '#0000FFFF' + - uid: 12347 components: - type: Transform - pos: -25.5,14.5 + rot: 1.5707963267948966 rad + pos: -37.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12113 + color: '#0000FFFF' + - uid: 12350 components: - type: Transform - pos: -25.5,15.5 + rot: -1.5707963267948966 rad + pos: -14.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12114 + color: '#0000FFFF' + - uid: 12351 components: - type: Transform - pos: -23.5,13.5 + rot: 1.5707963267948966 rad + pos: -30.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12115 + - uid: 12354 components: - type: Transform - pos: -23.5,14.5 + rot: 1.5707963267948966 rad + pos: -31.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12116 + - uid: 12355 components: - type: Transform - pos: -23.5,15.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12117 + - uid: 12360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,8.5 + rot: 3.141592653589793 rad + pos: -16.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12118 + - uid: 12361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,8.5 + rot: 1.5707963267948966 rad + pos: -19.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12119 + - uid: 12362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,8.5 + rot: 3.141592653589793 rad + pos: -16.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12120 + - uid: 12363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,8.5 + rot: 3.141592653589793 rad + pos: -16.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12121 + - uid: 12374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,8.5 + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12122 + - uid: 12375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,8.5 + pos: -1.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12123 + - uid: 12378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,9.5 + rot: 3.141592653589793 rad + pos: -7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12124 + color: '#0000FFFF' + - uid: 12383 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,9.5 + pos: -15.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12125 + color: '#0000FFFF' + - uid: 12384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,9.5 + rot: 3.141592653589793 rad + pos: -12.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12126 + color: '#0000FFFF' + - uid: 12385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,9.5 + rot: 3.141592653589793 rad + pos: -12.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12134 + color: '#0000FFFF' + - uid: 12391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,4.5 + pos: 3.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12135 + color: '#0000FFFF' + - uid: 12397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,4.5 + rot: 1.5707963267948966 rad + pos: 15.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12136 + color: '#0000FFFF' + - uid: 12398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,4.5 + pos: 12.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12137 + color: '#0000FFFF' + - uid: 12399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,6.5 + pos: 1.5,8.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12138 + - uid: 12400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,6.5 + pos: 14.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12141 + - uid: 12410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,33.5 + pos: -4.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12142 + - uid: 12411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 + pos: 3.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12143 + - uid: 12414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,33.5 + rot: 1.5707963267948966 rad + pos: -15.5,48.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12144 + - uid: 12417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,31.5 + rot: 1.5707963267948966 rad + pos: -14.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12145 + color: '#0000FFFF' + - uid: 12419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,31.5 + pos: -70.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12146 + color: '#0000FFFF' + - uid: 12420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,31.5 + pos: -70.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12147 + color: '#0000FFFF' + - uid: 12423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,33.5 + pos: -61.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12148 + - uid: 12424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,31.5 + rot: 1.5707963267948966 rad + pos: -61.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12149 + color: '#0000FFFF' + - uid: 12425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,33.5 + rot: 1.5707963267948966 rad + pos: -74.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12150 + - uid: 12426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,33.5 + rot: 1.5707963267948966 rad + pos: -54.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12151 + - uid: 12430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 + pos: -73.5,31.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12152 + - uid: 12433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,33.5 + pos: -73.5,26.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12153 + - uid: 12434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,33.5 + rot: 1.5707963267948966 rad + pos: -72.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12154 + - uid: 12435 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,33.5 + pos: -77.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12155 + - uid: 12437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,31.5 + rot: 1.5707963267948966 rad + pos: -50.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12156 + color: '#0000FFFF' + - uid: 12441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,31.5 + pos: -6.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12157 + color: '#0000FFFF' + - uid: 12442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,31.5 + pos: -5.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12158 + color: '#0000FFFF' + - uid: 12450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,31.5 + rot: 1.5707963267948966 rad + pos: 9.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12159 + color: '#0000FFFF' + - uid: 12451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,31.5 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12160 + color: '#0000FFFF' + - uid: 12452 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,31.5 + pos: -42.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12161 + color: '#0000FFFF' + - uid: 12453 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,31.5 + pos: -61.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12162 + color: '#0000FFFF' + - uid: 12455 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,32.5 + pos: -12.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12163 + - uid: 12456 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,31.5 + pos: -12.5,11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12164 + - uid: 12457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,30.5 + pos: -40.5,41.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12165 + - uid: 12460 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,29.5 + pos: -51.5,59.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12166 + - uid: 12465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,30.5 + rot: -1.5707963267948966 rad + pos: -52.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12167 + color: '#0000FFFF' + - uid: 12469 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,29.5 + pos: -51.5,85.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12176 + color: '#0000FFFF' + - uid: 12470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,33.5 + rot: 3.141592653589793 rad + pos: -51.5,80.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12177 + - uid: 12472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,33.5 + rot: 3.141592653589793 rad + pos: -51.5,69.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12178 + - uid: 12473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,33.5 + rot: 3.141592653589793 rad + pos: -51.5,65.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12179 + - uid: 12477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,33.5 + rot: 3.141592653589793 rad + pos: -32.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12180 + - uid: 12478 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,31.5 + pos: 7.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12181 + color: '#0000FFFF' + - uid: 12479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: -57.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12182 + color: '#0000FFFF' + - uid: 12480 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 + pos: -54.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12185 + color: '#0000FFFF' + - uid: 12483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,35.5 + rot: 3.141592653589793 rad + pos: -47.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12187 + color: '#0000FFFF' + - uid: 12485 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,36.5 + pos: -37.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12188 + color: '#0000FFFF' + - uid: 12490 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,37.5 + pos: -47.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12193 + color: '#0000FFFF' + - uid: 12491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,31.5 + rot: -1.5707963267948966 rad + pos: -48.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12194 + color: '#0000FFFF' + - uid: 12496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12195 + color: '#0000FFFF' + - uid: 12498 components: - type: Transform - pos: -17.5,32.5 + rot: -1.5707963267948966 rad + pos: -40.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12196 + - uid: 12500 components: - type: Transform - pos: -17.5,31.5 + rot: 1.5707963267948966 rad + pos: -25.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12197 + - uid: 12509 components: - type: Transform - pos: -17.5,30.5 + rot: -1.5707963267948966 rad + pos: -55.5,14.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12198 + - uid: 12511 components: - type: Transform - pos: -17.5,29.5 + pos: -57.5,11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12199 + - uid: 12513 components: - type: Transform - pos: -15.5,30.5 + rot: -1.5707963267948966 rad + pos: -61.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12200 + color: '#0000FFFF' + - uid: 12516 components: - type: Transform - pos: -15.5,29.5 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12203 + color: '#0000FFFF' + - uid: 12517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,31.5 + pos: -57.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12204 + color: '#0000FFFF' + - uid: 12518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,33.5 + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12205 + - uid: 12523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,33.5 + rot: 1.5707963267948966 rad + pos: -26.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12206 + - uid: 12524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,33.5 + rot: 3.141592653589793 rad + pos: -23.5,12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12207 + - uid: 12525 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,33.5 + pos: -25.5,17.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12210 + - uid: 12531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,33.5 + pos: -16.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12211 + color: '#0000FFFF' + - uid: 12532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,34.5 + pos: -16.5,59.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12213 + color: '#0000FFFF' + - uid: 12536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,36.5 + pos: -1.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12214 + color: '#0000FFFF' + - uid: 12537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,34.5 + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12215 + - uid: 12538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,35.5 + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12216 + - uid: 12539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,36.5 + pos: -16.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12226 + - uid: 12541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,38.5 + rot: 1.5707963267948966 rad + pos: -9.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12227 + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,39.5 + pos: -12.5,29.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12228 + - uid: 12548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12229 + - uid: 12550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,41.5 + rot: 1.5707963267948966 rad + pos: 3.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12230 + - uid: 12551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,42.5 + rot: 1.5707963267948966 rad + pos: -10.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12231 + - uid: 12554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,43.5 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12232 + - uid: 12559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 + pos: 26.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12233 + color: '#0000FFFF' + - uid: 12560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,39.5 + pos: 26.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12234 + color: '#0000FFFF' + - uid: 12561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,40.5 + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12235 + color: '#0000FFFF' + - uid: 12568 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,41.5 + pos: -7.5,59.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12236 + color: '#0000FFFF' + - uid: 12574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 + rot: -1.5707963267948966 rad + pos: -58.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12237 + color: '#0000FFFF' + - uid: 12577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,43.5 + rot: 1.5707963267948966 rad + pos: -55.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12238 + color: '#0000FFFF' + - uid: 12580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,44.5 + rot: 1.5707963267948966 rad + pos: -2.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12241 + color: '#0000FFFF' + - uid: 12582 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,45.5 + pos: 8.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12242 + - uid: 12586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,46.5 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12243 + color: '#0000FFFF' + - uid: 12587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,46.5 + pos: 3.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12244 + color: '#0000FFFF' + - uid: 12589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,46.5 + pos: -66.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12245 + color: '#0000FFFF' + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,46.5 + pos: -64.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12246 + color: '#0000FFFF' + - uid: 12595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,45.5 + pos: -40.5,42.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12248 + - uid: 12596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,46.5 + pos: -40.5,50.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12249 + color: '#0000FFFF' + - uid: 12603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,44.5 + rot: -1.5707963267948966 rad + pos: -52.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12250 + - uid: 12613 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,43.5 + pos: -51.5,78.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12251 + - uid: 12614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,42.5 + rot: -1.5707963267948966 rad + pos: -53.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12252 + - uid: 12616 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,41.5 + pos: -51.5,66.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12253 + - uid: 12619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,40.5 + pos: -57.5,36.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12254 + - uid: 12624 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,46.5 + pos: -47.5,47.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12264 + - uid: 12631 components: - type: Transform - pos: -15.5,47.5 + rot: -1.5707963267948966 rad + pos: -49.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12265 + color: '#0000FFFF' + - uid: 12636 components: - type: Transform - pos: -17.5,48.5 + rot: 3.141592653589793 rad + pos: -37.5,11.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12266 + - uid: 12637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,47.5 + rot: 3.141592653589793 rad + pos: -37.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12267 + - uid: 12638 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,47.5 + pos: -38.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12268 + - uid: 12640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,47.5 + rot: 1.5707963267948966 rad + pos: -35.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12269 + - uid: 12643 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,47.5 + pos: -53.5,14.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12270 + - uid: 12646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,48.5 + pos: -38.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12271 + color: '#0000FFFF' + - uid: 12647 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,48.5 + pos: -59.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12274 + color: '#0000FFFF' + - uid: 12653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,4.5 + rot: 1.5707963267948966 rad + pos: -41.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12275 + color: '#0000FFFF' + - uid: 12658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,4.5 + rot: 3.141592653589793 rad + pos: -23.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12276 + color: '#0000FFFF' + - uid: 12660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,4.5 + pos: -23.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12277 + color: '#0000FFFF' + - uid: 12661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,4.5 + pos: -16.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12278 + color: '#0000FFFF' + - uid: 12663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,6.5 + pos: -16.5,60.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12279 + - uid: 12666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,6.5 + rot: 3.141592653589793 rad + pos: -16.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12280 + - uid: 12675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,6.5 + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12281 + - uid: 12677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,6.5 + pos: -7.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12282 + - uid: 12686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 + rot: 3.141592653589793 rad + pos: -12.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12283 + color: '#0000FFFF' + - uid: 12692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,6.5 + rot: 1.5707963267948966 rad + pos: 24.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12284 + - uid: 12693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12285 + color: '#0000FFFF' + - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,6.5 + rot: 1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12286 + - uid: 12695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 + rot: 3.141592653589793 rad + pos: 10.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12287 + - uid: 12696 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,6.5 + pos: 13.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12288 + - uid: 12697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,5.5 + rot: 1.5707963267948966 rad + pos: -8.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12289 + color: '#0000FFFF' + - uid: 12704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,6.5 + pos: 3.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12290 + color: '#0000FFFF' + - uid: 12711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,4.5 + pos: -8.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12291 + color: '#0000FFFF' + - uid: 12718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 + rot: 3.141592653589793 rad + pos: -44.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12292 + color: '#0000FFFF' + - uid: 12719 components: - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12293 + - uid: 12723 components: - type: Transform - pos: -11.5,4.5 + rot: -1.5707963267948966 rad + pos: -52.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12300 + - uid: 12725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,4.5 + rot: 1.5707963267948966 rad + pos: -72.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12301 + color: '#0000FFFF' + - uid: 12726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 + rot: 1.5707963267948966 rad + pos: -45.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12302 + color: '#0000FFFF' + - uid: 12727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 + rot: 1.5707963267948966 rad + pos: -44.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12303 + - uid: 12728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,6.5 + rot: 1.5707963267948966 rad + pos: -43.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12304 + - uid: 12729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,7.5 + rot: 1.5707963267948966 rad + pos: -52.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12305 + - uid: 12730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,8.5 + rot: 1.5707963267948966 rad + pos: -42.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12306 + - uid: 12731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,7.5 + rot: 1.5707963267948966 rad + pos: -39.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12307 + color: '#0000FFFF' + - uid: 12732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,8.5 + rot: 1.5707963267948966 rad + pos: -40.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12308 + color: '#0000FFFF' + - uid: 12733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,3.5 + rot: 1.5707963267948966 rad + pos: -41.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12309 + - uid: 12734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,3.5 + rot: 1.5707963267948966 rad + pos: -38.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12312 + color: '#0000FFFF' + - uid: 12736 components: - type: Transform - anchored: False - pos: -11.5,3.5 + rot: 1.5707963267948966 rad + pos: -36.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12313 + color: '#0000FFFF' + - uid: 12738 components: - type: Transform - pos: -11.5,2.5 + rot: 1.5707963267948966 rad + pos: -33.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12314 + - uid: 12739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 + rot: 1.5707963267948966 rad + pos: -35.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12315 + color: '#0000FFFF' + - uid: 12740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 + rot: 1.5707963267948966 rad + pos: -34.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12316 + color: '#0000FFFF' + - uid: 12741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 + rot: 1.5707963267948966 rad + pos: -30.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12317 + color: '#0000FFFF' + - uid: 12742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12318 + - uid: 12743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,1.5 + rot: 1.5707963267948966 rad + pos: -29.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12322 + color: '#0000FFFF' + - uid: 12744 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,2.5 + pos: -27.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12325 + color: '#0000FFFF' + - uid: 12745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: -26.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12326 + - uid: 12746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: -24.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12327 + color: '#0000FFFF' + - uid: 12747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 + rot: 1.5707963267948966 rad + pos: -31.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12328 + - uid: 12748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 + rot: 1.5707963267948966 rad + pos: -32.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12329 + - uid: 12749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 + rot: 1.5707963267948966 rad + pos: -25.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12330 + color: '#0000FFFF' + - uid: 12751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12335 + color: '#0000FFFF' + - uid: 12752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -19.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12336 + color: '#0000FFFF' + - uid: 12753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 + rot: 1.5707963267948966 rad + pos: -20.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12337 + color: '#0000FFFF' + - uid: 12754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 + rot: 1.5707963267948966 rad + pos: -17.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12338 + color: '#0000FFFF' + - uid: 12755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 + rot: 1.5707963267948966 rad + pos: -14.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12339 + color: '#0000FFFF' + - uid: 12757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 + rot: 1.5707963267948966 rad + pos: -21.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12340 + color: '#0000FFFF' + - uid: 12758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12342 + color: '#0000FFFF' + - uid: 12759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12343 + - uid: 12760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12344 + - uid: 12761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + rot: 3.141592653589793 rad + pos: -7.5,22.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12345 + - uid: 12762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 + rot: 1.5707963267948966 rad + pos: -11.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12346 + - uid: 12763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 + rot: 1.5707963267948966 rad + pos: -15.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12347 + - uid: 12765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 + rot: 3.141592653589793 rad + pos: -7.5,21.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12348 + - uid: 12915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-3.5 + pos: 3.5,41.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12350 + - uid: 12967 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-2.5 + pos: -47.5,38.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12351 + color: '#0000FFFF' + - uid: 12978 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: -37.5,33.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12356 + - uid: 12988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + pos: -22.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12357 + color: '#0000FFFF' + - uid: 13001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + rot: 3.141592653589793 rad + pos: -7.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12358 + color: '#0000FFFF' + - uid: 13002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: 3.141592653589793 rad + pos: -7.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12359 + color: '#0000FFFF' + - uid: 13952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + rot: -1.5707963267948966 rad + pos: -43.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12360 + color: '#0000FFFF' + - uid: 14099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 + rot: -1.5707963267948966 rad + pos: -45.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12361 + - uid: 14100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + rot: -1.5707963267948966 rad + pos: -46.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12362 + - uid: 14107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 + rot: -1.5707963267948966 rad + pos: -47.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12363 + - uid: 14124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 + rot: -1.5707963267948966 rad + pos: -44.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12364 + - uid: 14125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -50.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12365 + - uid: 14126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + rot: -1.5707963267948966 rad + pos: -48.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12369 + - uid: 14128 components: - type: Transform - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: -41.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12374 + color: '#0000FFFF' + - uid: 14132 components: - type: Transform - pos: -16.5,-6.5 + rot: -1.5707963267948966 rad + pos: -49.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12375 + color: '#0000FFFF' + - uid: 14953 components: - type: Transform - pos: -16.5,-7.5 + rot: 3.141592653589793 rad + pos: -7.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12376 + color: '#0000FFFF' + - uid: 14956 components: - type: Transform - pos: -17.5,-9.5 + rot: 3.141592653589793 rad + pos: -7.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12377 + color: '#0000FFFF' + - uid: 14963 components: - type: Transform - pos: -17.5,-10.5 + rot: 3.141592653589793 rad + pos: -7.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12378 + color: '#0000FFFF' + - uid: 14964 components: - type: Transform - pos: -2.5,-1.5 + rot: 3.141592653589793 rad + pos: -7.5,30.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12380 + - uid: 14978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12382 + color: '#0000FFFF' + - uid: 15027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 + rot: 1.5707963267948966 rad + pos: -19.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12385 + - uid: 15028 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: -18.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12386 + color: '#0000FFFF' + - uid: 15031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-1.5 + pos: -21.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12387 + color: '#0000FFFF' + - uid: 15033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + pos: -24.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12388 + color: '#0000FFFF' + - uid: 15035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: -23.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12389 + color: '#0000FFFF' + - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + pos: -22.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12390 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + pos: -20.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12391 + - uid: 15089 components: - type: Transform - pos: -1.5,-3.5 + pos: -25.5,52.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12392 +- proto: GasPipeStraightAlt2 + entities: + - uid: 1064 components: - type: Transform - pos: -1.5,-4.5 + rot: -1.5707963267948966 rad + pos: -45.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12393 + color: '#FF0000FF' + - uid: 1338 components: - type: Transform - pos: -1.5,-5.5 + rot: 3.141592653589793 rad + pos: -7.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12394 + color: '#FF0000FF' + - uid: 1483 components: - type: Transform - pos: -1.5,-6.5 + pos: 3.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12395 + color: '#FF0000FF' + - uid: 1773 components: - type: Transform - pos: -1.5,-7.5 + pos: -57.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12396 + color: '#FF0000FF' + - uid: 2164 components: - type: Transform - pos: -1.5,-8.5 + rot: 1.5707963267948966 rad + pos: 4.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12397 + color: '#FF0000FF' + - uid: 2210 components: - type: Transform - pos: -1.5,-9.5 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12403 + color: '#FF0000FF' + - uid: 2256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 + rot: 1.5707963267948966 rad + pos: 13.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12404 + color: '#FF0000FF' + - uid: 2413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 + rot: 3.141592653589793 rad + pos: -51.5,56.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12405 + color: '#FF0000FF' + - uid: 2414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -51.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12406 + color: '#FF0000FF' + - uid: 2418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 + rot: 3.141592653589793 rad + pos: -51.5,63.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12407 + color: '#FF0000FF' + - uid: 2419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 + rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12408 + color: '#FF0000FF' + - uid: 2420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 3.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12409 + color: '#FF0000FF' + - uid: 2421 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-12.5 + pos: -52.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12410 + color: '#FF0000FF' + - uid: 2424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 + rot: 1.5707963267948966 rad + pos: -36.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12411 + color: '#FF0000FF' + - uid: 2425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 + rot: 1.5707963267948966 rad + pos: -34.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12412 + color: '#FF0000FF' + - uid: 2427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + pos: -48.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12424 + color: '#FF0000FF' + - uid: 2429 components: - type: Transform - pos: -13.5,9.5 + rot: 1.5707963267948966 rad + pos: -39.5,39.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12425 + - uid: 2430 components: - type: Transform - pos: -13.5,10.5 + rot: 1.5707963267948966 rad + pos: -30.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12426 + - uid: 2434 components: - type: Transform - pos: -11.5,11.5 + rot: 3.141592653589793 rad + pos: -57.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12428 + color: '#FF0000FF' + - uid: 2435 components: - type: Transform - pos: -11.5,13.5 + pos: -16.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12430 + color: '#FF0000FF' + - uid: 2437 components: - type: Transform - pos: -11.5,15.5 + pos: -16.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12431 + color: '#FF0000FF' + - uid: 2438 components: - type: Transform - pos: -11.5,16.5 + pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12433 + color: '#FF0000FF' + - uid: 2439 components: - type: Transform - pos: -13.5,12.5 + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12434 + - uid: 2440 components: - type: Transform - pos: -13.5,13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12435 + - uid: 2441 components: - type: Transform - pos: -13.5,14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12436 + - uid: 2443 components: - type: Transform - pos: -13.5,15.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12437 + - uid: 2446 components: - type: Transform - pos: -13.5,16.5 + rot: 1.5707963267948966 rad + pos: -11.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12438 + - uid: 2450 components: - type: Transform - pos: -13.5,17.5 + rot: 1.5707963267948966 rad + pos: -26.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12439 + - uid: 2454 components: - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,55.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12440 + - uid: 2460 components: - type: Transform - pos: -11.5,19.5 + rot: 1.5707963267948966 rad + pos: -73.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12441 + color: '#FF0000FF' + - uid: 2466 components: - type: Transform - pos: -11.5,20.5 + rot: 3.141592653589793 rad + pos: -74.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12442 + color: '#FF0000FF' + - uid: 2467 components: - type: Transform - pos: -11.5,21.5 + rot: 1.5707963267948966 rad + pos: -71.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12443 + color: '#FF0000FF' + - uid: 2469 components: - type: Transform - pos: -11.5,22.5 + rot: -1.5707963267948966 rad + pos: -71.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12444 + color: '#FF0000FF' + - uid: 2488 components: - type: Transform - pos: -11.5,23.5 + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12445 + color: '#FF0000FF' + - uid: 2492 components: - type: Transform - pos: -11.5,24.5 + pos: -57.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12446 + color: '#FF0000FF' + - uid: 2673 components: - type: Transform - pos: -11.5,25.5 + rot: 1.5707963267948966 rad + pos: -36.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12447 + color: '#FF0000FF' + - uid: 2675 components: - type: Transform - pos: -11.5,26.5 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12448 + color: '#FF0000FF' + - uid: 2680 components: - type: Transform - pos: -13.5,20.5 + rot: 1.5707963267948966 rad + pos: -4.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12449 + - uid: 2683 components: - type: Transform - pos: -13.5,21.5 + rot: -1.5707963267948966 rad + pos: -59.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12450 + - uid: 2789 components: - type: Transform - pos: -13.5,22.5 + pos: 3.5,38.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12451 + - uid: 2864 components: - type: Transform - pos: -13.5,23.5 + rot: -1.5707963267948966 rad + pos: -6.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12452 + - uid: 3006 components: - type: Transform - pos: -13.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12453 + - uid: 3008 components: - type: Transform - pos: -13.5,25.5 + rot: 3.141592653589793 rad + pos: 9.5,17.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12454 + - uid: 3009 components: - type: Transform - pos: -13.5,26.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12455 + - uid: 3014 components: - type: Transform - pos: -13.5,27.5 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12456 + - uid: 3015 components: - type: Transform - pos: -11.5,28.5 + rot: 1.5707963267948966 rad + pos: 9.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12457 + color: '#FF0000FF' + - uid: 3017 components: - type: Transform - pos: -11.5,29.5 + rot: 3.141592653589793 rad + pos: 3.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12458 + color: '#FF0000FF' + - uid: 3019 components: - type: Transform - pos: -11.5,30.5 + rot: 3.141592653589793 rad + pos: 3.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12459 + color: '#FF0000FF' + - uid: 3020 components: - type: Transform - pos: -11.5,31.5 + rot: 3.141592653589793 rad + pos: 3.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12460 + color: '#FF0000FF' + - uid: 3025 components: - type: Transform - pos: -11.5,32.5 + rot: 3.141592653589793 rad + pos: 9.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12461 + color: '#FF0000FF' + - uid: 3320 components: - type: Transform - pos: -13.5,29.5 + pos: 3.5,20.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12462 + - uid: 3360 components: - type: Transform - pos: -13.5,30.5 + rot: 1.5707963267948966 rad + pos: -2.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12463 + - uid: 3386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,31.5 + pos: 3.5,22.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12464 + - uid: 3551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,31.5 + rot: 1.5707963267948966 rad + pos: -1.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12465 + - uid: 3563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,31.5 + rot: 1.5707963267948966 rad + pos: 1.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12466 + - uid: 3574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,31.5 + pos: 3.5,25.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12467 + - uid: 3657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,33.5 + pos: 3.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12468 + color: '#FF0000FF' + - uid: 3687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,33.5 + rot: 1.5707963267948966 rad + pos: 4.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12469 + color: '#FF0000FF' + - uid: 3704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,33.5 + pos: 3.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12470 + color: '#FF0000FF' + - uid: 3706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,31.5 + pos: 3.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12471 + - uid: 3739 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,31.5 + pos: -12.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12472 + color: '#FF0000FF' + - uid: 3837 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,32.5 + pos: -12.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12473 + color: '#FF0000FF' + - uid: 3851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,33.5 + pos: 11.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12474 + color: '#FF0000FF' + - uid: 3960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,31.5 + pos: 10.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12477 + - uid: 3967 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: 7.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12478 + - uid: 4749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,30.5 + rot: 1.5707963267948966 rad + pos: 9.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12479 + color: '#FF0000FF' + - uid: 4775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,29.5 + pos: -12.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12480 + color: '#FF0000FF' + - uid: 4776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,29.5 + pos: -40.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12489 + - uid: 4781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,9.5 + pos: -40.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12490 + color: '#FF0000FF' + - uid: 4784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,9.5 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12491 + color: '#FF0000FF' + - uid: 4802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: -40.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12492 + color: '#FF0000FF' + - uid: 4804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,9.5 + rot: 3.141592653589793 rad + pos: -32.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12493 + color: '#FF0000FF' + - uid: 4807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + pos: -40.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12494 + color: '#FF0000FF' + - uid: 4878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,9.5 + rot: 3.141592653589793 rad + pos: -32.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12495 + color: '#FF0000FF' + - uid: 4914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,12.5 + rot: 3.141592653589793 rad + pos: -32.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12496 + color: '#FF0000FF' + - uid: 4917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,12.5 + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12497 + color: '#FF0000FF' + - uid: 4918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,12.5 + rot: 3.141592653589793 rad + pos: -32.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12498 + color: '#FF0000FF' + - uid: 4919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 + rot: 3.141592653589793 rad + pos: -32.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12499 + color: '#FF0000FF' + - uid: 4921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 + rot: 3.141592653589793 rad + pos: -57.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12500 + color: '#FF0000FF' + - uid: 4957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,12.5 + rot: 3.141592653589793 rad + pos: -57.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12511 + color: '#FF0000FF' + - uid: 5688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + rot: 3.141592653589793 rad + pos: -57.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12519 + color: '#FF0000FF' + - uid: 5716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,4.5 + rot: 3.141592653589793 rad + pos: -7.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12520 + - uid: 5764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,4.5 + pos: -62.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12521 + - uid: 5765 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,4.5 + pos: -60.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12522 + - uid: 5771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12523 + color: '#FF0000FF' + - uid: 5772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12524 + color: '#FF0000FF' + - uid: 5775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12525 + color: '#FF0000FF' + - uid: 5778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12526 + color: '#FF0000FF' + - uid: 5783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12527 + color: '#FF0000FF' + - uid: 5784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,6.5 + rot: 3.141592653589793 rad + pos: -7.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12528 + color: '#FF0000FF' + - uid: 5787 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,6.5 + pos: -8.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12529 + color: '#FF0000FF' + - uid: 7090 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,6.5 + pos: -61.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12531 + color: '#FF0000FF' + - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,6.5 + pos: -58.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12532 + color: '#FF0000FF' + - uid: 7214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,6.5 + rot: 1.5707963267948966 rad + pos: -52.5,71.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12533 + color: '#FF0000FF' + - uid: 7215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,6.5 + rot: 1.5707963267948966 rad + pos: -54.5,71.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12534 + color: '#FF0000FF' + - uid: 7217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 + rot: 1.5707963267948966 rad + pos: -53.5,71.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12535 + - uid: 7442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,4.5 + pos: -63.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12536 + - uid: 7846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 + pos: -57.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12537 + - uid: 8328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 + rot: 1.5707963267948966 rad + pos: -18.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12539 + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 + pos: -40.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12540 + - uid: 8679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + pos: 3.5,36.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12541 + - uid: 8680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12542 + - uid: 8682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: 3.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12543 + - uid: 8683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12544 + - uid: 8684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,6.5 + pos: -40.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12545 + color: '#FF0000FF' + - uid: 8685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,6.5 + pos: -40.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12546 + color: '#FF0000FF' + - uid: 8688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 + rot: 3.141592653589793 rad + pos: -40.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12547 + color: '#FF0000FF' + - uid: 8689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,58.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12548 + color: '#FF0000FF' + - uid: 8690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,59.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12549 + color: '#FF0000FF' + - uid: 8695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: -40.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12550 + - uid: 8696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: -40.5,45.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12551 + - uid: 8697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 + rot: 1.5707963267948966 rad + pos: -41.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12552 + - uid: 8698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + pos: -40.5,50.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12553 + - uid: 8700 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: -58.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12555 + - uid: 8705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 + rot: -1.5707963267948966 rad + pos: -53.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12556 + color: '#FF0000FF' + - uid: 8708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 + pos: -61.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12557 + color: '#FF0000FF' + - uid: 8709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 + pos: -51.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12558 + color: '#FF0000FF' + - uid: 8710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 + pos: -51.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12559 + - uid: 8714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + rot: -1.5707963267948966 rad + pos: -60.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12560 + - uid: 8715 components: - type: Transform - pos: 10.5,5.5 + rot: 3.141592653589793 rad + pos: -40.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12561 + color: '#FF0000FF' + - uid: 8716 components: - type: Transform - pos: 10.5,4.5 + rot: 3.141592653589793 rad + pos: -51.5,60.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12562 + color: '#FF0000FF' + - uid: 8720 components: - type: Transform - pos: 10.5,3.5 + pos: -57.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12563 + color: '#FF0000FF' + - uid: 8721 components: - type: Transform - pos: 10.5,2.5 + pos: -57.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12564 + color: '#FF0000FF' + - uid: 8726 components: - type: Transform - pos: 11.5,3.5 + rot: 3.141592653589793 rad + pos: -51.5,57.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12565 + - uid: 8728 components: - type: Transform - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: -54.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12568 + - uid: 8729 components: - type: Transform - pos: 10.5,-1.5 + rot: -1.5707963267948966 rad + pos: -52.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12571 + color: '#FF0000FF' + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-1.5 + pos: -50.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12572 + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-2.5 + pos: -48.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12573 + color: '#FF0000FF' + - uid: 8740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 + rot: 1.5707963267948966 rad + pos: -56.5,83.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12574 + - uid: 8741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 + pos: -48.5,60.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12575 + color: '#FF0000FF' + - uid: 8742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + rot: 1.5707963267948966 rad + pos: -50.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12576 + color: '#FF0000FF' + - uid: 8745 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,1.5 + pos: -51.5,70.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12577 + - uid: 8746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + rot: 3.141592653589793 rad + pos: -51.5,69.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12578 + - uid: 8751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,0.5 + rot: -1.5707963267948966 rad + pos: -43.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12580 + - uid: 8752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + rot: -1.5707963267948966 rad + pos: -45.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12581 + - uid: 8753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 + rot: -1.5707963267948966 rad + pos: -46.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12590 + color: '#FF0000FF' + - uid: 8756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 + rot: -1.5707963267948966 rad + pos: -41.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12591 + - uid: 8757 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: -44.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12592 + color: '#FF0000FF' + - uid: 8758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: -42.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12594 + color: '#FF0000FF' + - uid: 8761 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,1.5 + pos: -51.5,68.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12597 + color: '#FF0000FF' + - uid: 8766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 + rot: 3.141592653589793 rad + pos: -51.5,67.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12598 + - uid: 8767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-2.5 + pos: -59.5,85.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12599 + color: '#FF0000FF' + - uid: 8772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -57.5,84.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12600 + - uid: 8774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-1.5 + pos: -54.5,89.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12601 + - uid: 8776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-1.5 + pos: -52.5,89.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12602 + - uid: 8778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 + rot: 1.5707963267948966 rad + pos: -55.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12603 + color: '#FF0000FF' + - uid: 8781 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-2.5 + pos: -56.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12604 + color: '#FF0000FF' + - uid: 8783 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-2.5 + pos: -53.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12613 + color: '#FF0000FF' + - uid: 8785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 + pos: -57.5,88.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12614 + - uid: 8795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 + pos: -59.5,62.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12617 + color: '#FF0000FF' + - uid: 8797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 + rot: -1.5707963267948966 rad + pos: -58.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12618 + color: '#FF0000FF' + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 + rot: -1.5707963267948966 rad + pos: -56.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12619 + color: '#FF0000FF' + - uid: 8800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: -54.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12620 + color: '#FF0000FF' + - uid: 8802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 + rot: -1.5707963267948966 rad + pos: -53.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12621 + color: '#FF0000FF' + - uid: 8803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,80.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12622 + color: '#FF0000FF' + - uid: 8804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,73.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12623 + - uid: 8805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,76.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12624 + - uid: 8806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,77.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12625 + - uid: 8807 components: - type: Transform - pos: 17.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,78.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12626 + - uid: 8808 components: - type: Transform - pos: 17.5,7.5 + rot: 3.141592653589793 rad + pos: -51.5,79.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12627 + - uid: 8809 components: - type: Transform - pos: 17.5,8.5 + rot: 3.141592653589793 rad + pos: -51.5,82.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12628 + - uid: 8810 components: - type: Transform - pos: 17.5,9.5 + rot: 3.141592653589793 rad + pos: -51.5,81.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12629 + - uid: 8812 components: - type: Transform - pos: 19.5,7.5 + rot: 3.141592653589793 rad + pos: -51.5,84.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12630 + color: '#FF0000FF' + - uid: 8813 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: -51.5,86.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12631 + color: '#FF0000FF' + - uid: 8814 components: - type: Transform - pos: 19.5,9.5 + rot: 3.141592653589793 rad + pos: -51.5,87.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12632 + color: '#FF0000FF' + - uid: 8815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,88.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12633 + - uid: 8816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,5.5 + pos: -52.5,61.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12634 + - uid: 8817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,5.5 + pos: -57.5,61.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12637 + - uid: 8821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,6.5 + pos: -55.5,62.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12638 + color: '#FF0000FF' + - uid: 8841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 + rot: 3.141592653589793 rad + pos: -51.5,62.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12639 + color: '#FF0000FF' + - uid: 8849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 + pos: 3.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12640 + color: '#FF0000FF' + - uid: 8850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,6.5 + pos: -37.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12641 + color: '#FF0000FF' + - uid: 8861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 + rot: -1.5707963267948966 rad + pos: -48.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12642 + color: '#FF0000FF' + - uid: 8874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,5.5 + rot: -1.5707963267948966 rad + pos: -49.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12643 + - uid: 8876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,5.5 + rot: -1.5707963267948966 rad + pos: -50.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12644 + - uid: 8879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 + pos: -57.5,43.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12646 + - uid: 8880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,5.5 + pos: -57.5,42.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12648 + - uid: 8881 components: - type: Transform - pos: 26.5,5.5 + pos: -57.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12649 + color: '#FF0000FF' + - uid: 8883 components: - type: Transform - pos: 26.5,4.5 + rot: -1.5707963267948966 rad + pos: -51.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12650 + color: '#FF0000FF' + - uid: 8884 components: - type: Transform - pos: 25.5,4.5 + rot: -1.5707963267948966 rad + pos: -53.5,46.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12660 + - uid: 8885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 + pos: -57.5,36.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12661 + - uid: 8886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,6.5 + pos: -57.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12664 + color: '#FF0000FF' + - uid: 8887 components: - type: Transform - pos: 26.5,7.5 + rot: -1.5707963267948966 rad + pos: -56.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12670 + color: '#FF0000FF' + - uid: 8888 components: - type: Transform - pos: -90.5,9.5 + rot: -1.5707963267948966 rad + pos: -54.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12671 + color: '#FF0000FF' + - uid: 8889 components: - type: Transform - pos: 26.5,9.5 + pos: -57.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12672 + color: '#FF0000FF' + - uid: 8890 components: - type: Transform - pos: 26.5,11.5 + pos: -57.5,37.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12673 + color: '#FF0000FF' + - uid: 8891 components: - type: Transform - pos: 26.5,13.5 + pos: -57.5,38.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12674 + color: '#FF0000FF' + - uid: 8897 components: - type: Transform - pos: 26.5,14.5 + rot: 3.141592653589793 rad + pos: -47.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12675 + color: '#FF0000FF' + - uid: 8900 components: - type: Transform - pos: 26.5,15.5 + rot: 3.141592653589793 rad + pos: -47.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12676 + color: '#FF0000FF' + - uid: 8907 components: - type: Transform - pos: 26.5,17.5 + rot: 3.141592653589793 rad + pos: -47.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12677 + color: '#FF0000FF' + - uid: 8908 components: - type: Transform - pos: 26.5,19.5 + rot: 3.141592653589793 rad + pos: -47.5,49.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12680 + color: '#FF0000FF' + - uid: 8909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,8.5 + rot: 3.141592653589793 rad + pos: -47.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12681 + color: '#FF0000FF' + - uid: 8910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,8.5 + rot: 3.141592653589793 rad + pos: -47.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12682 + color: '#FF0000FF' + - uid: 8911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,8.5 + rot: 3.141592653589793 rad + pos: -47.5,50.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12683 + color: '#FF0000FF' + - uid: 8916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,8.5 + rot: -1.5707963267948966 rad + pos: -31.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12684 + color: '#FF0000FF' + - uid: 8917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,8.5 + pos: -32.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12685 + color: '#FF0000FF' + - uid: 8924 components: - type: Transform - pos: 27.5,18.5 + rot: 1.5707963267948966 rad + pos: -35.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12686 + - uid: 8928 components: - type: Transform - pos: 27.5,17.5 + rot: 3.141592653589793 rad + pos: -37.5,42.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12687 + - uid: 9022 components: - type: Transform - pos: 27.5,16.5 + rot: 3.141592653589793 rad + pos: -47.5,40.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12688 + - uid: 9027 components: - type: Transform - pos: 27.5,15.5 + rot: 3.141592653589793 rad + pos: -47.5,41.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12689 + - uid: 9139 components: - type: Transform - pos: 27.5,14.5 + rot: 3.141592653589793 rad + pos: -47.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12690 + - uid: 9573 components: - type: Transform - pos: 27.5,13.5 + rot: 3.141592653589793 rad + pos: -47.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12691 + - uid: 10050 components: - type: Transform - pos: 27.5,12.5 + rot: 3.141592653589793 rad + pos: -47.5,35.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12692 + - uid: 10061 components: - type: Transform - pos: 27.5,10.5 + rot: 3.141592653589793 rad + pos: -47.5,37.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12693 + - uid: 10072 components: - type: Transform - pos: 27.5,9.5 + rot: 3.141592653589793 rad + pos: -47.5,42.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12694 + - uid: 10084 components: - type: Transform - pos: 27.5,8.5 + rot: 3.141592653589793 rad + pos: -47.5,43.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12695 + - uid: 10231 components: - type: Transform - pos: 27.5,7.5 + rot: -1.5707963267948966 rad + pos: -51.5,36.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12696 + - uid: 10234 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,8.5 + pos: -52.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12697 + color: '#FF0000FF' + - uid: 10240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,8.5 + pos: -50.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12698 + color: '#FF0000FF' + - uid: 10377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,8.5 + pos: 3.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12699 + color: '#FF0000FF' + - uid: 10796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + pos: -50.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12700 + color: '#FF0000FF' + - uid: 10797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: -50.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12701 + color: '#FF0000FF' + - uid: 10798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: -49.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12702 + color: '#FF0000FF' + - uid: 10953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 + rot: 1.5707963267948966 rad + pos: -51.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12703 + color: '#FF0000FF' + - uid: 11083 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,16.5 + pos: -49.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12704 + color: '#FF0000FF' + - uid: 11084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,16.5 + pos: -48.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12705 + color: '#FF0000FF' + - uid: 11095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 + rot: 1.5707963267948966 rad + pos: -38.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12706 + color: '#FF0000FF' + - uid: 11098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 + rot: 3.141592653589793 rad + pos: -37.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12707 + color: '#FF0000FF' + - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 + rot: 3.141592653589793 rad + pos: -37.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12714 + color: '#FF0000FF' + - uid: 11101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,8.5 + rot: 3.141592653589793 rad + pos: -37.5,12.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12717 + color: '#FF0000FF' + - uid: 11110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,8.5 + rot: 3.141592653589793 rad + pos: -31.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12718 + color: '#FF0000FF' + - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,31.5 + rot: 1.5707963267948966 rad + pos: -35.5,40.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12719 + - uid: 11122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,33.5 + rot: 1.5707963267948966 rad + pos: -33.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12722 + color: '#FF0000FF' + - uid: 11124 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,32.5 + pos: -31.5,37.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12723 + - uid: 11125 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: -37.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12724 + - uid: 11126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,14.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12725 + - uid: 11127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12730 + color: '#FF0000FF' + - uid: 11129 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,32.5 + pos: -37.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12731 + color: '#FF0000FF' + - uid: 11131 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,31.5 + pos: -37.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12732 + color: '#FF0000FF' + - uid: 11132 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,30.5 + pos: -37.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12733 + color: '#FF0000FF' + - uid: 11141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,30.5 + rot: 3.141592653589793 rad + pos: -37.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12734 + - uid: 11142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12738 + color: '#FF0000FF' + - uid: 11143 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,15.5 + pos: -37.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12739 + - uid: 11144 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,17.5 + pos: -37.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12740 + color: '#FF0000FF' + - uid: 11145 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,16.5 + pos: -37.5,25.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12741 + - uid: 11149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,30.5 + rot: -1.5707963267948966 rad + pos: -39.5,24.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12742 + - uid: 11150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,30.5 + rot: -1.5707963267948966 rad + pos: -40.5,24.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12744 + - uid: 11155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12745 + color: '#FF0000FF' + - uid: 11176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,29.5 + rot: 3.141592653589793 rad + pos: -37.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12746 + color: '#FF0000FF' + - uid: 11177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,14.5 + rot: 3.141592653589793 rad + pos: -37.5,18.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12749 + - uid: 11180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,16.5 + rot: 1.5707963267948966 rad + pos: -31.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12750 + color: '#FF0000FF' + - uid: 11181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,16.5 + rot: 1.5707963267948966 rad + pos: -33.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12753 + color: '#FF0000FF' + - uid: 11182 components: - type: Transform - pos: 8.5,15.5 + rot: 1.5707963267948966 rad + pos: -34.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12754 + color: '#FF0000FF' + - uid: 11183 components: - type: Transform - pos: 8.5,14.5 + rot: 1.5707963267948966 rad + pos: -35.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12755 + color: '#FF0000FF' + - uid: 11185 components: - type: Transform - pos: 6.5,15.5 + rot: 1.5707963267948966 rad + pos: -36.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12756 + color: '#FF0000FF' + - uid: 11187 components: - type: Transform - pos: 6.5,14.5 + pos: 10.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12757 + color: '#FF0000FF' + - uid: 11189 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: -26.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12758 + color: '#FF0000FF' + - uid: 11190 components: - type: Transform - pos: 11.5,14.5 + rot: 1.5707963267948966 rad + pos: -28.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12772 + color: '#FF0000FF' + - uid: 11196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,8.5 + rot: -1.5707963267948966 rad + pos: -51.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12777 + color: '#FF0000FF' + - uid: 11198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,9.5 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12784 + - uid: 11211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,9.5 + rot: 3.141592653589793 rad + pos: -54.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12808 + - uid: 11213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,9.5 + rot: -1.5707963267948966 rad + pos: -55.5,14.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12809 + - uid: 11214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,9.5 + rot: -1.5707963267948966 rad + pos: -56.5,14.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12823 + - uid: 11216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,9.5 + pos: -57.5,15.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12824 + - uid: 11217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,9.5 + pos: -57.5,11.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12852 + - uid: 11220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 + pos: -57.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12853 + color: '#FF0000FF' + - uid: 11221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 + pos: -57.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12854 + color: '#FF0000FF' + - uid: 11223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,25.5 + pos: -57.5,12.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12855 + color: '#FF0000FF' + - uid: 11224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,26.5 + pos: -57.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12856 + - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: -57.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12857 + - uid: 11226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: -57.5,22.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12960 + - uid: 11227 components: - type: Transform - pos: -17.5,49.5 + rot: -1.5707963267948966 rad + pos: -49.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12961 + color: '#FF0000FF' + - uid: 11229 components: - type: Transform - pos: -17.5,50.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12962 + color: '#FF0000FF' + - uid: 11230 components: - type: Transform - pos: -17.5,51.5 + rot: 3.141592653589793 rad + pos: -54.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12963 + color: '#FF0000FF' + - uid: 11231 components: - type: Transform - pos: -17.5,52.5 + rot: -1.5707963267948966 rad + pos: -52.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12964 + color: '#FF0000FF' + - uid: 11232 components: - type: Transform - pos: -17.5,53.5 + rot: -1.5707963267948966 rad + pos: -45.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12965 + color: '#FF0000FF' + - uid: 11233 components: - type: Transform - pos: -15.5,49.5 + pos: -57.5,21.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12966 + - uid: 11234 components: - type: Transform - pos: -15.5,50.5 + pos: -57.5,20.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12967 + - uid: 11235 components: - type: Transform - pos: -15.5,51.5 + pos: -57.5,17.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12968 + - uid: 11236 components: - type: Transform - pos: -15.5,52.5 + pos: -57.5,18.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12969 + - uid: 11237 components: - type: Transform - pos: -15.5,53.5 + pos: -57.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12972 + - uid: 11238 components: - type: Transform - pos: -15.5,54.5 + pos: -57.5,25.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12973 + - uid: 11243 components: - type: Transform - pos: -17.5,55.5 + rot: 1.5707963267948966 rad + pos: -55.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12975 + color: '#FF0000FF' + - uid: 11251 components: - type: Transform - pos: -15.5,56.5 + rot: -1.5707963267948966 rad + pos: -47.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12977 + - uid: 11252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,57.5 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12978 + color: '#FF0000FF' + - uid: 11253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,58.5 + rot: -1.5707963267948966 rad + pos: -44.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12979 + color: '#FF0000FF' + - uid: 11254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,58.5 + rot: 1.5707963267948966 rad + pos: -63.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12982 + - uid: 11255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,59.5 + rot: 1.5707963267948966 rad + pos: -62.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12983 + - uid: 11256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,60.5 + rot: 1.5707963267948966 rad + pos: -61.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12984 + color: '#FF0000FF' + - uid: 11259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,61.5 + rot: -1.5707963267948966 rad + pos: -43.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12985 + color: '#FF0000FF' + - uid: 11260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,62.5 + rot: -1.5707963267948966 rad + pos: -42.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12986 + color: '#FF0000FF' + - uid: 11261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,61.5 + rot: -1.5707963267948966 rad + pos: -41.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12987 + - uid: 11262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,62.5 + rot: 1.5707963267948966 rad + pos: -59.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12988 + - uid: 11263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,54.5 + pos: -58.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12989 + color: '#FF0000FF' + - uid: 11264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,54.5 + pos: -60.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12990 + color: '#FF0000FF' + - uid: 11265 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,54.5 + pos: -64.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12991 + color: '#FF0000FF' + - uid: 11279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,54.5 + pos: -54.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12992 + color: '#FF0000FF' + - uid: 11280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,55.5 + pos: -56.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12993 + - uid: 11286 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,55.5 + pos: -56.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12994 + - uid: 11288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,55.5 + rot: 3.141592653589793 rad + pos: -57.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12995 + - uid: 11290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,55.5 + rot: 3.141592653589793 rad + pos: -57.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12996 + - uid: 11293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,55.5 + rot: 3.141592653589793 rad + pos: -57.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12997 + - uid: 11297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,55.5 + rot: 3.141592653589793 rad + pos: -57.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12998 + - uid: 11298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,55.5 + rot: 3.141592653589793 rad + pos: -57.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12999 + - uid: 11302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,55.5 + pos: -57.5,26.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13000 + - uid: 11303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,55.5 + pos: -57.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13001 + - uid: 11304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,54.5 + pos: -57.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13002 + color: '#FF0000FF' + - uid: 11305 + components: + - type: Transform + pos: -57.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11317 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,54.5 + pos: -41.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13003 + color: '#FF0000FF' + - uid: 11320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,54.5 + pos: -33.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13009 + color: '#FF0000FF' + - uid: 11520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,55.5 + rot: 3.141592653589793 rad + pos: -40.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13017 + - uid: 11523 components: - type: Transform - pos: -12.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13018 + - uid: 11524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,54.5 + rot: 3.141592653589793 rad + pos: -44.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13019 + color: '#FF0000FF' + - uid: 11526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,54.5 + rot: 3.141592653589793 rad + pos: -44.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13020 + color: '#FF0000FF' + - uid: 11527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,54.5 + rot: 3.141592653589793 rad + pos: -44.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13021 + color: '#FF0000FF' + - uid: 11536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,54.5 + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13022 + color: '#FF0000FF' + - uid: 11540 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,55.5 + pos: -40.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13023 + color: '#FF0000FF' + - uid: 11541 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,56.5 + pos: -40.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13024 + color: '#FF0000FF' + - uid: 11542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,57.5 + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13025 + color: '#FF0000FF' + - uid: 11547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,58.5 + pos: -66.5,49.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13026 + color: '#FF0000FF' + - uid: 11558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,59.5 + rot: -1.5707963267948966 rad + pos: -38.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13027 + color: '#FF0000FF' + - uid: 11561 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,56.5 + pos: -23.5,12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13028 + - uid: 11562 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,57.5 + pos: -23.5,14.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13029 + - uid: 11565 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,58.5 + pos: -23.5,13.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13030 + - uid: 11566 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,59.5 + pos: -23.5,15.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13039 + - uid: 11567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,9.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13218 + - uid: 11571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,9.5 + rot: 3.141592653589793 rad + pos: -23.5,11.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13221 + - uid: 11581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,9.5 + rot: -1.5707963267948966 rad + pos: -25.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13291 + - uid: 11582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,9.5 + rot: -1.5707963267948966 rad + pos: -24.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13293 + - uid: 11583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,9.5 + rot: 3.141592653589793 rad + pos: -23.5,10.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13298 + - uid: 11597 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,9.5 + pos: -35.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13317 + - uid: 11598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,9.5 + pos: -16.5,56.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13342 + - uid: 11601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,9.5 + pos: -16.5,60.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13613 + - uid: 11602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,9.5 + pos: -16.5,57.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13614 + - uid: 11605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,9.5 + rot: 3.141592653589793 rad + pos: -22.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13639 + - uid: 11606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,44.5 + rot: 3.141592653589793 rad + pos: -22.5,30.5 parent: 1 - - uid: 13640 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,44.5 + pos: -16.5,58.5 parent: 1 - - uid: 13641 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,44.5 + pos: -16.5,53.5 parent: 1 - - uid: 13642 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,44.5 + pos: -17.5,54.5 parent: 1 - - uid: 13643 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,44.5 + pos: -16.5,62.5 parent: 1 - - uid: 13644 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,45.5 + pos: -16.5,50.5 parent: 1 - - uid: 13645 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,45.5 + pos: -16.5,49.5 parent: 1 - - uid: 13646 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,45.5 + pos: -16.5,52.5 parent: 1 - - uid: 13647 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,43.5 + rot: 3.141592653589793 rad + pos: -12.5,12.5 parent: 1 - - uid: 13648 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,43.5 + rot: 3.141592653589793 rad + pos: -16.5,35.5 parent: 1 - - uid: 13649 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11627 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,43.5 + pos: -23.5,28.5 parent: 1 - - uid: 13650 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,42.5 + rot: 3.141592653589793 rad + pos: -16.5,37.5 parent: 1 - - uid: 13651 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,42.5 + rot: 3.141592653589793 rad + pos: -16.5,40.5 parent: 1 - - uid: 13652 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,42.5 + rot: 3.141592653589793 rad + pos: -16.5,39.5 parent: 1 - - uid: 13653 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,42.5 + rot: 3.141592653589793 rad + pos: -16.5,38.5 parent: 1 - - uid: 13654 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,42.5 + rot: 3.141592653589793 rad + pos: -16.5,36.5 parent: 1 - - uid: 13656 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,41.5 + rot: 3.141592653589793 rad + pos: -16.5,33.5 parent: 1 - - uid: 13663 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,8.5 + rot: 1.5707963267948966 rad + pos: -17.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13664 + color: '#FF0000FF' + - uid: 11662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,8.5 + rot: 3.141592653589793 rad + pos: -20.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13665 + color: '#FF0000FF' + - uid: 11663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,8.5 + rot: 3.141592653589793 rad + pos: -20.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13666 + color: '#FF0000FF' + - uid: 11667 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,8.5 + pos: -18.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13668 + color: '#FF0000FF' + - uid: 11668 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,41.5 + pos: -34.5,5.5 parent: 1 - - uid: 13670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,41.5 - parent: 1 - - uid: 13672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,8.5 + pos: -33.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13677 + color: '#FF0000FF' + - uid: 11670 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,40.5 + pos: -31.5,5.5 parent: 1 - - uid: 13678 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,40.5 + pos: -30.5,5.5 parent: 1 - - uid: 13679 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,40.5 + rot: -1.5707963267948966 rad + pos: -21.5,5.5 parent: 1 - - uid: 13680 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11673 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,40.5 + pos: -27.5,5.5 parent: 1 - - uid: 13681 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,40.5 + rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 1 - - uid: 13685 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,39.5 + pos: -25.5,5.5 parent: 1 - - uid: 13686 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,39.5 + rot: -1.5707963267948966 rad + pos: -15.5,5.5 parent: 1 - - uid: 13687 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,39.5 + rot: -1.5707963267948966 rad + pos: -14.5,5.5 parent: 1 - - uid: 13688 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,38.5 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 1 - - uid: 13689 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,38.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 1 - - uid: 13690 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,38.5 + rot: -1.5707963267948966 rad + pos: -16.5,5.5 parent: 1 - - uid: 13691 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,38.5 + pos: -1.5,-6.5 parent: 1 - - uid: 13692 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,38.5 + pos: -1.5,-5.5 parent: 1 - - uid: 13693 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,37.5 + pos: -1.5,-7.5 parent: 1 - - uid: 13694 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11698 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,37.5 + pos: -3.5,-2.5 parent: 1 - - uid: 13695 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11699 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,37.5 + pos: -4.5,-2.5 parent: 1 - - uid: 13696 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11700 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,36.5 + pos: -5.5,-2.5 parent: 1 - - uid: 13697 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,36.5 + pos: -6.5,-2.5 parent: 1 - - uid: 13698 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,36.5 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 parent: 1 - - uid: 13702 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,36.5 + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 parent: 1 - - uid: 13703 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,36.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 1 - - uid: 13710 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11708 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,8.5 + pos: 0.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13711 + color: '#FF0000FF' + - uid: 11709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,35.5 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 parent: 1 - - uid: 13712 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11710 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,35.5 + pos: -2.5,-2.5 parent: 1 - - uid: 13713 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,35.5 + pos: -8.5,-2.5 parent: 1 - - uid: 13714 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,34.5 + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 parent: 1 - - uid: 13715 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,34.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 1 - - uid: 13716 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,34.5 + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 parent: 1 - - uid: 13717 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,34.5 + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 parent: 1 - - uid: 13718 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,34.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 parent: 1 - - uid: 13751 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11730 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,8.5 + pos: -11.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13753 + color: '#FF0000FF' + - uid: 11731 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,8.5 + pos: -10.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13754 + color: '#FF0000FF' + - uid: 11732 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,8.5 + pos: -17.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13755 + color: '#FF0000FF' + - uid: 11733 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,9.5 + pos: -18.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13757 + color: '#FF0000FF' + - uid: 11735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,10.5 + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13758 + color: '#FF0000FF' + - uid: 11736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,7.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13760 + color: '#FF0000FF' + - uid: 11744 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,6.5 + pos: -12.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13761 + color: '#FF0000FF' + - uid: 11745 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,8.5 + pos: -12.5,3.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13768 + - uid: 11746 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,6.5 + pos: -12.5,4.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13769 + - uid: 11751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,7.5 + rot: 1.5707963267948966 rad + pos: -9.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13770 + - uid: 11752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13771 + - uid: 11756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,9.5 + rot: -1.5707963267948966 rad + pos: -14.5,27.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13772 + - uid: 11757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,9.5 + rot: -1.5707963267948966 rad + pos: -13.5,27.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13773 + - uid: 11766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,9.5 + rot: 3.141592653589793 rad + pos: -12.5,31.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13779 + - uid: 11768 components: - type: Transform - pos: -84.5,47.5 + rot: 3.141592653589793 rad + pos: -12.5,29.5 parent: 1 - - uid: 13857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11777 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: -84.5,47.5 + pos: -12.5,16.5 parent: 1 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11778 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,48.5 + pos: -12.5,25.5 parent: 1 - - uid: 13865 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11779 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,49.5 + pos: -12.5,23.5 parent: 1 - - uid: 13866 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11780 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,49.5 + pos: -12.5,24.5 parent: 1 - - uid: 13867 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11781 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,48.5 + pos: -12.5,22.5 parent: 1 - - uid: 13868 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11782 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,47.5 + pos: -12.5,20.5 parent: 1 - - uid: 13915 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,33.5 + rot: 3.141592653589793 rad + pos: -12.5,19.5 parent: 1 - - uid: 13936 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,35.5 + rot: 3.141592653589793 rad + pos: -12.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13937 + color: '#FF0000FF' + - uid: 11785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,34.5 + rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13938 + - uid: 11787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,35.5 + rot: 1.5707963267948966 rad + pos: -8.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13939 + color: '#FF0000FF' + - uid: 11788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,34.5 + rot: 1.5707963267948966 rad + pos: -9.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13940 + - uid: 11789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,35.5 + rot: 1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13942 + color: '#FF0000FF' + - uid: 11791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,34.5 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13943 + color: '#FF0000FF' + - uid: 11792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,33.5 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13944 + - uid: 11793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,33.5 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13945 + color: '#FF0000FF' + - uid: 11794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,41.5 + pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13946 + - uid: 11795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,43.5 + pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13947 + - uid: 11796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,43.5 + pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13948 + - uid: 11797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,44.5 + pos: 4.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13949 + color: '#FF0000FF' + - uid: 11802 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,44.5 + pos: 5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13952 + color: '#FF0000FF' + - uid: 11803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,43.5 + pos: 7.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13953 + - uid: 11804 components: - type: Transform - pos: -61.5,44.5 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13954 + - uid: 11805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,44.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13955 + color: '#FF0000FF' + - uid: 11814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,44.5 + rot: 1.5707963267948966 rad + pos: 18.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13956 + color: '#FF0000FF' + - uid: 11815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,43.5 + rot: 1.5707963267948966 rad + pos: 17.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13957 + color: '#FF0000FF' + - uid: 11816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,42.5 + rot: 1.5707963267948966 rad + pos: 19.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13958 + color: '#FF0000FF' + - uid: 11817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,42.5 + rot: 1.5707963267948966 rad + pos: 20.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13959 + - uid: 11819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,41.5 + rot: 1.5707963267948966 rad + pos: 25.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13960 + color: '#FF0000FF' + - uid: 11822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,41.5 + rot: 1.5707963267948966 rad + pos: 23.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13965 + - uid: 11825 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,47.5 + pos: 22.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13966 + color: '#FF0000FF' + - uid: 11826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,47.5 + pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13967 + color: '#FF0000FF' + - uid: 11888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,47.5 + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13968 + color: '#FF0000FF' + - uid: 11924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,47.5 + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13969 + color: '#FF0000FF' + - uid: 11926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,47.5 + pos: 10.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13970 + color: '#FF0000FF' + - uid: 11927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,47.5 + pos: 1.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13971 + color: '#FF0000FF' + - uid: 11929 components: - type: Transform - pos: -66.5,48.5 + pos: 1.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13973 + color: '#FF0000FF' + - uid: 11930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,47.5 + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13974 + color: '#FF0000FF' + - uid: 11945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,47.5 + rot: 3.141592653589793 rad + pos: 14.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13975 + color: '#FF0000FF' + - uid: 11956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,47.5 + pos: 26.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13976 + color: '#FF0000FF' + - uid: 11957 components: - type: Transform - pos: -66.5,49.5 + pos: 26.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13977 + color: '#FF0000FF' + - uid: 11958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,47.5 + pos: 26.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13978 + color: '#FF0000FF' + - uid: 11959 components: - type: Transform - pos: -67.5,51.5 + pos: 26.5,12.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13979 + color: '#FF0000FF' + - uid: 11960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,52.5 + pos: 26.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13980 + color: '#FF0000FF' + - uid: 11961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,52.5 + rot: 1.5707963267948966 rad + pos: 27.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13986 + color: '#FF0000FF' + - uid: 11963 components: - type: Transform - pos: -61.5,46.5 + rot: 1.5707963267948966 rad + pos: 27.5,15.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13987 + - uid: 11967 components: - type: Transform - pos: -61.5,47.5 + pos: 26.5,6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13988 + - uid: 11978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,48.5 + pos: -5.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13989 + - uid: 11980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,48.5 + pos: -1.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13990 + - uid: 11987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,48.5 + rot: 3.141592653589793 rad + pos: -2.5,31.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13991 + - uid: 11991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,48.5 + rot: 1.5707963267948966 rad + pos: -0.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13992 + - uid: 11992 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,48.5 + pos: -3.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13993 + - uid: 11999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,48.5 + rot: 1.5707963267948966 rad + pos: -0.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13994 + - uid: 12000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,48.5 + rot: 1.5707963267948966 rad + pos: 0.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13995 + - uid: 12001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,48.5 + rot: 1.5707963267948966 rad + pos: 2.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14013 + - uid: 12007 components: - type: Transform - pos: -73.5,34.5 + rot: 3.141592653589793 rad + pos: -20.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14014 + color: '#FF0000FF' + - uid: 12008 components: - type: Transform - pos: -73.5,33.5 + rot: 3.141592653589793 rad + pos: -20.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14015 + color: '#FF0000FF' + - uid: 12013 components: - type: Transform - pos: -73.5,32.5 + rot: 1.5707963267948966 rad + pos: -15.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14016 + color: '#FF0000FF' + - uid: 12046 components: - type: Transform - pos: -73.5,31.5 + rot: 1.5707963267948966 rad + pos: -12.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14017 + color: '#FF0000FF' + - uid: 12047 components: - type: Transform - pos: -74.5,33.5 + rot: 1.5707963267948966 rad + pos: -14.5,48.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14018 + - uid: 12050 components: - type: Transform - pos: -74.5,32.5 + rot: 1.5707963267948966 rad + pos: -8.5,55.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14019 + - uid: 12054 components: - type: Transform - pos: -74.5,31.5 + rot: 1.5707963267948966 rad + pos: -13.5,48.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14020 + - uid: 12059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,34.5 + rot: 3.141592653589793 rad + pos: -7.5,59.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14025 + - uid: 12060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12062 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,35.5 + pos: -12.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14026 + color: '#FF0000FF' + - uid: 12065 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,33.5 + pos: -18.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14027 + - uid: 12066 components: - type: Transform - pos: -70.5,33.5 + rot: 1.5707963267948966 rad + pos: -19.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14028 + color: '#FF0000FF' + - uid: 12069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,33.5 + rot: 1.5707963267948966 rad + pos: -20.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14032 + - uid: 12070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,32.5 + rot: 1.5707963267948966 rad + pos: -21.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14033 + color: '#FF0000FF' + - uid: 12073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,31.5 + rot: 1.5707963267948966 rad + pos: -10.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14034 + color: '#FF0000FF' + - uid: 12074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,30.5 + rot: 1.5707963267948966 rad + pos: -11.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14035 + color: '#FF0000FF' + - uid: 12075 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,33.5 + pos: -13.5,55.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14036 + - uid: 12076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,34.5 + pos: -14.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14056 + color: '#FF0000FF' + - uid: 12092 components: - type: Transform - pos: -74.5,29.5 + rot: -1.5707963267948966 rad + pos: -58.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14057 + - uid: 12093 components: - type: Transform - pos: -74.5,28.5 + rot: -1.5707963267948966 rad + pos: -59.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14058 + - uid: 12095 components: - type: Transform - pos: -74.5,27.5 + rot: -1.5707963267948966 rad + pos: -60.5,44.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14059 + - uid: 12096 components: - type: Transform - pos: -74.5,26.5 + pos: -62.5,43.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14060 + - uid: 12097 components: - type: Transform - pos: -73.5,25.5 + pos: -67.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14061 + color: '#FF0000FF' + - uid: 12099 components: - type: Transform - pos: -73.5,26.5 + pos: -70.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14062 + color: '#FF0000FF' + - uid: 12105 components: - type: Transform - pos: -73.5,27.5 + rot: 1.5707963267948966 rad + pos: -65.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14063 + color: '#FF0000FF' + - uid: 12106 components: - type: Transform - pos: -73.5,28.5 + rot: 1.5707963267948966 rad + pos: -63.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14064 + color: '#FF0000FF' + - uid: 12115 components: - type: Transform - pos: -73.5,30.5 + rot: 1.5707963267948966 rad + pos: -68.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14065 + color: '#FF0000FF' + - uid: 12116 components: - type: Transform - pos: -74.5,24.5 + rot: 1.5707963267948966 rad + pos: -69.5,52.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14066 + - uid: 12118 components: - type: Transform - pos: -74.5,23.5 + rot: 1.5707963267948966 rad + pos: -58.5,47.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14067 + - uid: 12119 components: - type: Transform - pos: -74.5,22.5 + rot: 1.5707963267948966 rad + pos: -59.5,47.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14068 + - uid: 12120 components: - type: Transform - pos: -73.5,23.5 + rot: 1.5707963267948966 rad + pos: -60.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14069 + color: '#FF0000FF' + - uid: 12121 components: - type: Transform - pos: -73.5,21.5 + rot: 1.5707963267948966 rad + pos: -61.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14070 + color: '#FF0000FF' + - uid: 12128 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,21.5 + pos: -76.5,25.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14071 + - uid: 12133 components: - type: Transform - pos: -73.5,20.5 + rot: -1.5707963267948966 rad + pos: -67.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14072 + color: '#FF0000FF' + - uid: 12137 components: - type: Transform - pos: -73.5,19.5 + rot: -1.5707963267948966 rad + pos: -65.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14073 + color: '#FF0000FF' + - uid: 12139 components: - type: Transform - pos: -73.5,18.5 + rot: -1.5707963267948966 rad + pos: -78.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14074 + color: '#FF0000FF' + - uid: 12140 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,22.5 + pos: -77.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14075 + color: '#FF0000FF' + - uid: 12141 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,21.5 + pos: -75.5,25.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14076 + - uid: 12142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,24.5 + rot: 3.141592653589793 rad + pos: -67.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14077 + color: '#FF0000FF' + - uid: 12153 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,25.5 + pos: -76.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14078 + - uid: 12156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12158 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,24.5 + pos: -75.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14079 + color: '#FF0000FF' + - uid: 12162 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,20.5 + pos: -74.5,22.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14080 + - uid: 12163 components: - type: Transform rot: 3.141592653589793 rad @@ -63658,7 +63965,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14081 + - uid: 12164 components: - type: Transform rot: 3.141592653589793 rad @@ -63666,7 +63973,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14082 + - uid: 12165 components: - type: Transform rot: 3.141592653589793 rad @@ -63674,7 +63981,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14083 + - uid: 12166 components: - type: Transform rot: 1.5707963267948966 rad @@ -63682,7 +63989,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14084 + - uid: 12167 components: - type: Transform rot: 1.5707963267948966 rad @@ -63690,4902 +63997,5449 @@ entities: parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14085 + - uid: 12169 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14088 - components: - - type: Transform - rot: 3.141592653589793 rad pos: -70.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,19.5 - parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14090 + - uid: 12170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,19.5 + rot: 3.141592653589793 rad + pos: -74.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14091 + - uid: 12171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,19.5 + rot: 3.141592653589793 rad + pos: -74.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14092 + - uid: 12172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,19.5 + rot: 3.141592653589793 rad + pos: -74.5,27.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14093 + - uid: 12174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,20.5 + rot: 1.5707963267948966 rad + pos: -72.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14094 + color: '#FF0000FF' + - uid: 12175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,20.5 + rot: 1.5707963267948966 rad + pos: -73.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14095 + color: '#FF0000FF' + - uid: 12178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,20.5 + rot: 3.141592653589793 rad + pos: -74.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14096 + color: '#FF0000FF' + - uid: 12179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,22.5 + rot: 3.141592653589793 rad + pos: -74.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14097 + color: '#FF0000FF' + - uid: 12180 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,22.5 + pos: -74.5,24.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14098 + - uid: 12181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,23.5 + rot: 3.141592653589793 rad + pos: -74.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14099 + - uid: 12186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,23.5 + rot: 3.141592653589793 rad + pos: -74.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14100 + - uid: 12188 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,23.5 + pos: -69.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14101 + - uid: 12189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,23.5 + pos: -70.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14102 + - uid: 12196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,22.5 + rot: 3.141592653589793 rad + pos: -64.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14103 + color: '#FF0000FF' + - uid: 12199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,22.5 + rot: 3.141592653589793 rad + pos: -64.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14104 + color: '#FF0000FF' + - uid: 12211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,22.5 + rot: 1.5707963267948966 rad + pos: -69.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14105 + color: '#FF0000FF' + - uid: 12219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,20.5 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14117 + - uid: 12228 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,33.5 + pos: 7.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14118 + - uid: 12231 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,33.5 + pos: 5.5,19.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14119 + - uid: 12233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,33.5 + rot: 1.5707963267948966 rad + pos: 5.5,24.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14120 + - uid: 12238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,34.5 + rot: 1.5707963267948966 rad + pos: 12.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14121 + color: '#FF0000FF' + - uid: 12240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,34.5 + pos: -40.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14122 + color: '#FF0000FF' + - uid: 12241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,34.5 + pos: -40.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14123 + color: '#FF0000FF' + - uid: 12246 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,34.5 + pos: -58.5,85.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14124 + color: '#FF0000FF' + - uid: 12248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,33.5 + pos: -40.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14125 + color: '#FF0000FF' + - uid: 12252 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,32.5 + pos: -40.5,49.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14126 + - uid: 12256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,30.5 + rot: -1.5707963267948966 rad + pos: -59.5,54.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14127 + - uid: 12257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,31.5 + rot: -1.5707963267948966 rad + pos: -49.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14128 + color: '#FF0000FF' + - uid: 12259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,30.5 + pos: -40.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14129 + color: '#FF0000FF' + - uid: 12261 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,29.5 + pos: -51.5,66.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14130 + - uid: 12266 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,29.5 + pos: -51.5,75.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14131 + color: '#FF0000FF' + - uid: 12267 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,27.5 + pos: -51.5,74.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14139 + color: '#FF0000FF' + - uid: 12268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,31.5 + pos: -52.5,83.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14140 + - uid: 12278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,31.5 + pos: 3.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14142 + - uid: 12280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,31.5 + pos: 7.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14143 + - uid: 12282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,31.5 + pos: -38.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14144 + - uid: 12283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,32.5 + rot: 3.141592653589793 rad + pos: -12.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14145 + color: '#FF0000FF' + - uid: 12292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,32.5 + pos: -57.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14147 + color: '#FF0000FF' + - uid: 12293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,32.5 + pos: -57.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14150 + color: '#FF0000FF' + - uid: 12294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,24.5 + rot: -1.5707963267948966 rad + pos: -55.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14151 + color: '#FF0000FF' + - uid: 12298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,24.5 + rot: -1.5707963267948966 rad + pos: -30.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14152 + color: '#FF0000FF' + - uid: 12304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,24.5 + rot: 3.141592653589793 rad + pos: -47.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14153 + color: '#FF0000FF' + - uid: 12305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,24.5 + rot: 3.141592653589793 rad + pos: -50.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14154 + color: '#FF0000FF' + - uid: 12310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,25.5 + rot: 3.141592653589793 rad + pos: -37.5,38.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14155 + - uid: 12311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,25.5 + rot: 3.141592653589793 rad + pos: -31.5,38.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14156 + - uid: 12313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,25.5 + rot: 3.141592653589793 rad + pos: -37.5,13.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14157 + - uid: 12314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,25.5 + rot: 3.141592653589793 rad + pos: -37.5,7.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14162 + - uid: 12316 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,32.5 + pos: -37.5,16.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14205 + - uid: 12317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + rot: 3.141592653589793 rad + pos: -37.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15864 - components: - - type: Transform - pos: 7.5,49.5 - parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 1778 + color: '#FF0000FF' + - uid: 12320 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-1.5 + pos: -37.5,26.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2256 + - uid: 12321 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,4.5 + pos: -37.5,20.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2257 + - uid: 12322 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,6.5 + pos: -37.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2394 + color: '#FF0000FF' + - uid: 12323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 + rot: 1.5707963267948966 rad + pos: -29.5,23.5 parent: 1 - - uid: 2411 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 + pos: 10.5,2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2416 + - uid: 12328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 + pos: -57.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2418 + color: '#FF0000FF' + - uid: 12329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,33.5 + pos: -57.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2421 + color: '#FF0000FF' + - uid: 12333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,29.5 + pos: -48.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2422 + color: '#FF0000FF' + - uid: 12334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,30.5 + pos: -38.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2423 + - uid: 12341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,29.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2424 + - uid: 12352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2425 + color: '#FF0000FF' + - uid: 12356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,34.5 + rot: 3.141592653589793 rad + pos: -12.5,15.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2459 + - uid: 12358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,30.5 + rot: 3.141592653589793 rad + pos: -16.5,34.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2461 + - uid: 12359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,29.5 + rot: 3.141592653589793 rad + pos: -16.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2485 + color: '#FF0000FF' + - uid: 12366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 + rot: 1.5707963267948966 rad + pos: -18.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2486 + color: '#FF0000FF' + - uid: 12367 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,29.5 + pos: -20.5,42.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2683 + - uid: 12368 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,23.5 + pos: -22.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2684 + - uid: 12373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,22.5 + pos: -1.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2686 + color: '#FF0000FF' + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,26.5 + pos: -5.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2863 + - uid: 12377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + rot: 3.141592653589793 rad + pos: -7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3001 + - uid: 12386 components: - type: Transform - pos: 3.5,19.5 + rot: 3.141592653589793 rad + pos: -12.5,26.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3002 + color: '#FF0000FF' + - uid: 12387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,20.5 + pos: -11.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3558 + - uid: 12388 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -39.5,-6.5 + pos: 2.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3706 + color: '#FF0000FF' + - uid: 12389 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-7.5 + pos: 11.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4782 + - uid: 12393 components: - type: Transform - pos: -64.5,-9.5 + rot: 1.5707963267948966 rad + pos: 21.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4805 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8691 + - uid: 12394 components: - type: Transform - pos: -48.5,53.5 + rot: 1.5707963267948966 rad + pos: 14.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8698 + - uid: 12396 components: - type: Transform - pos: -50.5,53.5 + rot: 1.5707963267948966 rad + pos: 24.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8699 + - uid: 12404 components: - type: Transform - pos: -53.5,53.5 + pos: 26.5,11.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8700 + - uid: 12408 components: - type: Transform - pos: -56.5,53.5 + rot: 3.141592653589793 rad + pos: 14.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8702 + - uid: 12412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,53.5 + rot: 1.5707963267948966 rad + pos: 2.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8704 + - uid: 12413 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,53.5 + pos: -7.5,60.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8722 + - uid: 12428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,56.5 + rot: -1.5707963267948966 rad + pos: -66.5,33.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8724 + - uid: 12429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,55.5 + rot: -1.5707963267948966 rad + pos: -79.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8727 + color: '#FF0000FF' + - uid: 12431 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,55.5 + pos: -67.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8733 + color: '#FF0000FF' + - uid: 12436 components: - type: Transform - pos: -54.5,55.5 + rot: 3.141592653589793 rad + pos: -74.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8734 + color: '#FF0000FF' + - uid: 12438 components: - type: Transform - pos: -51.5,55.5 + rot: 3.141592653589793 rad + pos: -64.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8735 + color: '#FF0000FF' + - uid: 12445 components: - type: Transform - pos: -57.5,55.5 + rot: -1.5707963267948966 rad + pos: 4.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8736 + color: '#FF0000FF' + - uid: 12447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,55.5 + rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8782 + color: '#FF0000FF' + - uid: 12449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,65.5 + pos: 6.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8783 + - uid: 12458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,64.5 + rot: -1.5707963267948966 rad + pos: -56.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8784 + color: '#FF0000FF' + - uid: 12462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,60.5 + pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8785 + color: '#FF0000FF' + - uid: 12466 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,61.5 + pos: -51.5,65.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8787 + - uid: 12468 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,61.5 + pos: -51.5,72.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8788 + - uid: 12475 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,60.5 + pos: -32.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8793 + color: '#FF0000FF' + - uid: 12476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,63.5 + pos: -66.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8814 + color: '#FF0000FF' + - uid: 12481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,67.5 + pos: -57.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8817 + color: '#FF0000FF' + - uid: 12484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,62.5 + rot: 3.141592653589793 rad + pos: -37.5,43.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8850 + - uid: 12487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,80.5 + rot: 3.141592653589793 rad + pos: -47.5,38.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8911 + color: '#FF0000FF' + - uid: 12488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,83.5 + rot: 1.5707963267948966 rad + pos: -52.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8912 + color: '#FF0000FF' + - uid: 12489 components: - type: Transform - pos: -55.5,84.5 + pos: -48.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8913 + - uid: 12492 components: - type: Transform - pos: -55.5,89.5 + rot: 3.141592653589793 rad + pos: -37.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8914 + color: '#FF0000FF' + - uid: 12494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,88.5 + rot: 1.5707963267948966 rad + pos: -34.5,40.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8915 + - uid: 12495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,83.5 + rot: 3.141592653589793 rad + pos: -37.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8916 + color: '#FF0000FF' + - uid: 12497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,84.5 + rot: 3.141592653589793 rad + pos: -37.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8917 + color: '#FF0000FF' + - uid: 12499 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,85.5 + pos: -27.5,23.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8918 + - uid: 12510 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,84.5 + pos: -54.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10050 + - uid: 12515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 + rot: 3.141592653589793 rad + pos: -57.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10083 + color: '#FF0000FF' + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,19.5 + pos: -44.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10084 + color: '#FF0000FF' + - uid: 12521 components: - type: Transform - pos: 7.5,20.5 + rot: 3.141592653589793 rad + pos: -40.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10231 + - uid: 12529 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-2.5 + pos: -16.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10244 + color: '#FF0000FF' + - uid: 12530 components: - type: Transform - pos: -39.5,-2.5 + rot: 1.5707963267948966 rad + pos: -19.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10306 + color: '#FF0000FF' + - uid: 12534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12540 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,28.5 + pos: -15.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10308 + - uid: 12543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,27.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10953 + color: '#FF0000FF' + - uid: 12547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,42.5 + rot: 1.5707963267948966 rad + pos: 15.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10954 + color: '#FF0000FF' + - uid: 12549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,41.5 + rot: 1.5707963267948966 rad + pos: 12.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11086 + - uid: 12552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,33.5 + pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11093 + color: '#FF0000FF' + - uid: 12553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,37.5 + pos: 1.5,6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11094 + - uid: 12558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,43.5 + pos: 26.5,9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11095 + - uid: 12562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,44.5 + rot: 1.5707963267948966 rad + pos: 0.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11096 + color: '#FF0000FF' + - uid: 12563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,38.5 + pos: -4.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11103 + color: '#FF0000FF' + - uid: 12567 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,31.5 + pos: -7.5,56.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11125 + - uid: 12573 components: - type: Transform - pos: -57.5,47.5 + rot: -1.5707963267948966 rad + pos: -61.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11134 + color: '#FF0000FF' + - uid: 12575 components: - type: Transform - pos: -52.5,47.5 + rot: 1.5707963267948966 rad + pos: -62.5,47.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11137 + color: '#FF0000FF' + - uid: 12579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,46.5 + rot: 1.5707963267948966 rad + pos: -24.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11147 + - uid: 12581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,47.5 + rot: 1.5707963267948966 rad + pos: 7.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11156 + color: '#FF0000FF' + - uid: 12583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,44.5 + pos: 3.5,21.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11167 + - uid: 12584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,41.5 + rot: 3.141592653589793 rad + pos: -12.5,6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11168 + - uid: 12585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,42.5 + rot: 3.141592653589793 rad + pos: -12.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11169 + color: '#FF0000FF' + - uid: 12588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,43.5 + pos: 5.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11184 + color: '#FF0000FF' + - uid: 12590 components: - type: Transform - pos: -42.5,43.5 + rot: 3.141592653589793 rad + pos: -32.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11185 + color: '#FF0000FF' + - uid: 12594 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,43.5 + pos: -57.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11211 + color: '#FF0000FF' + - uid: 12598 components: - type: Transform - pos: -36.5,44.5 + rot: 3.141592653589793 rad + pos: -51.5,55.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11212 + - uid: 12599 components: - type: Transform - pos: -35.5,43.5 + rot: 1.5707963267948966 rad + pos: -49.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11223 + color: '#FF0000FF' + - uid: 12600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,45.5 + pos: -57.5,86.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11224 + - uid: 12601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,44.5 + pos: -57.5,87.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11258 + color: '#FF0000FF' + - uid: 12605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,31.5 + rot: 1.5707963267948966 rad + pos: -53.5,83.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11266 + - uid: 12618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,32.5 + pos: 3.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11267 + color: '#FF0000FF' + - uid: 12626 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,31.5 + pos: -37.5,41.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11268 + - uid: 12628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,35.5 + rot: 3.141592653589793 rad + pos: -47.5,45.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11269 + - uid: 12629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,36.5 + pos: -50.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11271 + color: '#FF0000FF' + - uid: 12633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,32.5 + rot: 1.5707963267948966 rad + pos: -32.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11274 + color: '#FF0000FF' + - uid: 12634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,32.5 + rot: 1.5707963267948966 rad + pos: -36.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11280 + color: '#FF0000FF' + - uid: 12635 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,33.5 + pos: -37.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11293 + color: '#FF0000FF' + - uid: 12639 components: - type: Transform - pos: -50.5,28.5 + rot: 1.5707963267948966 rad + pos: -32.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11294 + color: '#FF0000FF' + - uid: 12642 components: - type: Transform - pos: -51.5,29.5 + pos: -57.5,8.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11308 + - uid: 12644 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,35.5 + pos: -53.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11518 + color: '#FF0000FF' + - uid: 12648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,31.5 + rot: -1.5707963267948966 rad + pos: -55.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11519 + - uid: 12649 components: - type: Transform - pos: -42.5,33.5 + rot: 3.141592653589793 rad + pos: -57.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11536 + color: '#FF0000FF' + - uid: 12651 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,32.5 + pos: -42.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11543 + - uid: 12652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,32.5 + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11579 + color: '#FF0000FF' + - uid: 12654 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,37.5 + pos: -40.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11580 + color: '#FF0000FF' + - uid: 12655 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,36.5 + pos: -44.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11601 + - uid: 12659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,28.5 + rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11602 + color: '#FF0000FF' + - uid: 12662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,27.5 + rot: 3.141592653589793 rad + pos: -22.5,31.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11603 + - uid: 12664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,21.5 + pos: -16.5,47.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11604 + - uid: 12665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 3.141592653589793 rad + pos: -16.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11605 + color: '#FF0000FF' + - uid: 12671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,24.5 + rot: 1.5707963267948966 rad + pos: -29.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11606 + color: '#FF0000FF' + - uid: 12672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,23.5 + pos: -1.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11607 + - uid: 12673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,13.5 + pos: -1.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11608 + - uid: 12674 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,23.5 + pos: 3.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11616 + color: '#FF0000FF' + - uid: 12676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,25.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11662 + - uid: 12685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,25.5 + pos: -16.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11670 + - uid: 12687 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,23.5 + pos: -12.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11681 + color: '#FF0000FF' + - uid: 12688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,24.5 + rot: -1.5707963267948966 rad + pos: -15.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11682 + color: '#FF0000FF' + - uid: 12689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,25.5 + pos: -10.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11689 + - uid: 12690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,27.5 + pos: 8.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11692 + color: '#FF0000FF' + - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,26.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11700 + - uid: 12701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,17.5 + pos: 1.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11701 + color: '#FF0000FF' + - uid: 12702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,18.5 + pos: -4.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11702 + - uid: 12706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,11.5 + rot: 3.141592653589793 rad + pos: -7.5,57.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11703 + color: '#FF0000FF' + - uid: 12710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,10.5 + rot: 1.5707963267948966 rad + pos: -15.5,55.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11704 + - uid: 12712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,14.5 + pos: -62.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11705 + color: '#FF0000FF' + - uid: 12715 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,15.5 + pos: -64.5,47.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11706 + - uid: 12720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,14.5 + pos: -57.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11707 + color: '#FF0000FF' + - uid: 12750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,15.5 + pos: -16.5,59.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11757 + - uid: 12766 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,4.5 + pos: -12.5,28.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11758 - components: - - type: Transform - pos: -66.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11760 + - uid: 12852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,5.5 + pos: -63.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11764 + color: '#FF0000FF' + - uid: 12853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,5.5 + rot: 1.5707963267948966 rad + pos: -62.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11815 + - uid: 12854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-1.5 + pos: -60.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11816 + color: '#FF0000FF' + - uid: 12856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 + rot: 1.5707963267948966 rad + pos: -58.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11817 + - uid: 12858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-5.5 + pos: -61.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11818 + - uid: 12859 components: - type: Transform - pos: -57.5,-9.5 + rot: 1.5707963267948966 rad + pos: -56.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11819 + - uid: 12960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-6.5 + pos: -53.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11888 + color: '#FF0000FF' + - uid: 12961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,4.5 + rot: 1.5707963267948966 rad + pos: -54.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11889 + - uid: 12962 components: - type: Transform - pos: -48.5,6.5 + rot: 1.5707963267948966 rad + pos: -52.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11952 + color: '#FF0000FF' + - uid: 12963 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,0.5 + pos: -51.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11954 + - uid: 12964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,1.5 + pos: -50.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11955 + color: '#FF0000FF' + - uid: 12965 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,3.5 + pos: -49.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11961 + color: '#FF0000FF' + - uid: 12968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,2.5 + rot: 1.5707963267948966 rad + pos: -55.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12002 + - uid: 12969 components: - type: Transform - pos: -37.5,-2.5 + rot: 1.5707963267948966 rad + pos: -45.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12003 + color: '#FF0000FF' + - uid: 12970 components: - type: Transform - pos: -36.5,-3.5 + rot: 1.5707963267948966 rad + pos: -44.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12077 + - uid: 12971 components: - type: Transform - pos: -33.5,4.5 + rot: 1.5707963267948966 rad + pos: -43.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12078 + - uid: 12972 components: - type: Transform - pos: -32.5,6.5 + rot: 1.5707963267948966 rad + pos: -42.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12093 + color: '#FF0000FF' + - uid: 12973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 + rot: 1.5707963267948966 rad + pos: -41.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12100 + - uid: 12974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,8.5 + rot: 1.5707963267948966 rad + pos: -40.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12101 + color: '#FF0000FF' + - uid: 12975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 + rot: 1.5707963267948966 rad + pos: -39.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12106 + - uid: 12976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 + rot: 1.5707963267948966 rad + pos: -38.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12107 + - uid: 12977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: -36.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12133 + color: '#FF0000FF' + - uid: 12979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 + rot: 1.5707963267948966 rad + pos: -33.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12168 + - uid: 12980 components: - type: Transform - pos: -24.5,31.5 + rot: 1.5707963267948966 rad + pos: -32.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12169 + - uid: 12981 components: - type: Transform - pos: -22.5,33.5 + rot: 1.5707963267948966 rad + pos: -34.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12170 + color: '#FF0000FF' + - uid: 12983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,31.5 + rot: 1.5707963267948966 rad + pos: -29.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12171 + - uid: 12984 components: - type: Transform - pos: -30.5,33.5 + rot: 1.5707963267948966 rad + pos: -26.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12201 + color: '#FF0000FF' + - uid: 12985 components: - type: Transform - pos: -13.5,31.5 + rot: 1.5707963267948966 rad + pos: -25.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12202 + - uid: 12986 components: - type: Transform - pos: -11.5,33.5 + rot: 1.5707963267948966 rad + pos: -24.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12208 + color: '#FF0000FF' + - uid: 12987 components: - type: Transform - pos: -16.5,33.5 + rot: 1.5707963267948966 rad + pos: -23.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12209 + color: '#FF0000FF' + - uid: 12989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,32.5 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12212 + - uid: 12990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,35.5 + rot: 1.5707963267948966 rad + pos: -20.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12222 + - uid: 12991 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,37.5 + pos: -19.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12223 + color: '#FF0000FF' + - uid: 12992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,38.5 + rot: 1.5707963267948966 rad + pos: -17.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12224 + - uid: 12993 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,44.5 + pos: -35.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12225 + color: '#FF0000FF' + - uid: 12994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,46.5 + rot: 1.5707963267948966 rad + pos: -15.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12239 + - uid: 12995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 + rot: 1.5707963267948966 rad + pos: -21.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12240 + - uid: 12996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,45.5 + rot: 1.5707963267948966 rad + pos: -31.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12247 + color: '#FF0000FF' + - uid: 12997 components: - type: Transform - pos: -20.5,45.5 + rot: 1.5707963267948966 rad + pos: -14.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12262 + color: '#FF0000FF' + - uid: 12998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,47.5 + pos: -18.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12263 + color: '#FF0000FF' + - uid: 12999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,48.5 + pos: -30.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12294 + - uid: 13000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 + rot: 1.5707963267948966 rad + pos: -11.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12295 + - uid: 13003 components: - type: Transform - pos: -16.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12310 + color: '#FF0000FF' + - uid: 13004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,2.5 + pos: -13.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12311 + - uid: 13005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 + rot: 3.141592653589793 rad + pos: -12.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12323 + color: '#FF0000FF' + - uid: 13006 components: - type: Transform - pos: -9.5,1.5 + rot: 1.5707963267948966 rad + pos: -46.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12324 + color: '#FF0000FF' + - uid: 13008 components: - type: Transform - pos: -8.5,2.5 + rot: 1.5707963267948966 rad + pos: -9.5,32.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12333 + - uid: 13482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 + rot: 1.5707963267948966 rad + pos: -19.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12334 + - uid: 14053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + pos: -22.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12341 + - uid: 14123 components: - type: Transform - pos: -15.5,-3.5 + rot: -1.5707963267948966 rad + pos: -49.5,64.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12366 + - uid: 14127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 + rot: -1.5707963267948966 rad + pos: -47.5,64.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12367 + - uid: 14129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 + rot: -1.5707963267948966 rad + pos: -48.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12368 + color: '#FF0000FF' + - uid: 14130 components: - type: Transform - pos: -1.5,-2.5 + rot: -1.5707963267948966 rad + pos: -50.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12398 + color: '#FF0000FF' + - uid: 14133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + rot: -1.5707963267948966 rad + pos: -46.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12417 + color: '#FF0000FF' + - uid: 14135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,10.5 + pos: -45.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12418 + color: '#FF0000FF' + - uid: 14136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 + rot: -1.5707963267948966 rad + pos: -44.5,64.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12419 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,18.5 + pos: -43.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12420 + color: '#FF0000FF' + - uid: 14138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 + rot: -1.5707963267948966 rad + pos: -42.5,64.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12421 + - uid: 14139 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,27.5 + pos: -41.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12422 + color: '#FF0000FF' + - uid: 14976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,28.5 + rot: 3.141592653589793 rad + pos: -7.5,30.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12429 + - uid: 14977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,14.5 + rot: 3.141592653589793 rad + pos: -7.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12475 + color: '#FF0000FF' + - uid: 14979 components: - type: Transform - pos: -8.5,31.5 + rot: 1.5707963267948966 rad + pos: -8.5,29.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12476 + - uid: 14980 components: - type: Transform - pos: -7.5,33.5 + rot: 1.5707963267948966 rad + pos: -8.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12513 + color: '#FF0000FF' + - uid: 15030 components: - type: Transform - pos: -6.5,6.5 + rot: 1.5707963267948966 rad + pos: -23.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12514 + color: '#FF0000FF' + - uid: 15032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 + rot: 1.5707963267948966 rad + pos: -24.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12515 + - uid: 15034 components: - type: Transform - pos: 4.5,6.5 + rot: 1.5707963267948966 rad + pos: -21.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12516 + color: '#FF0000FF' + - uid: 15048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,4.5 + rot: 1.5707963267948966 rad + pos: -20.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12517 + - uid: 15084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,4.5 + rot: 1.5707963267948966 rad + pos: -17.5,51.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12518 + - uid: 15090 components: - type: Transform - pos: 10.5,6.5 + pos: -25.5,52.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12530 + color: '#FF0000FF' + - uid: 15091 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,17.5 + pos: -26.5,53.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12538 + - uid: 15092 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,14.5 + pos: -27.5,53.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12566 + - uid: 15094 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,1.5 + pos: -28.5,53.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12567 + color: '#FF0000FF' + - uid: 15208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 + pos: 3.5,42.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12569 + - uid: 15209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: 3.5,43.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12570 + color: '#FF0000FF' +- proto: GasPipeTJunction + entities: + - uid: 2394 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-1.5 + pos: 7.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12593 + - uid: 12669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 + pos: -90.5,10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12615 + - uid: 13657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,6.5 + pos: -91.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12616 + color: '#FF0000FF' + - uid: 13905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: -77.5,35.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12635 + color: '#0000FFFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 2174 components: - type: Transform - pos: 20.5,6.5 + rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12636 + - uid: 2257 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,5.5 + pos: 11.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12645 + color: '#0000FFFF' + - uid: 2403 components: - type: Transform - pos: 25.5,5.5 + rot: -1.5707963267948966 rad + pos: 3.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12659 + color: '#0000FFFF' + - uid: 2470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 + rot: 1.5707963267948966 rad + pos: -69.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12662 + color: '#0000FFFF' + - uid: 2490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,11.5 + pos: -37.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12663 + color: '#0000FFFF' + - uid: 2672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 + rot: 3.141592653589793 rad + pos: -37.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12665 + - uid: 3631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,18.5 + pos: 3.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12666 + - uid: 3840 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,10.5 + pos: -12.5,13.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12667 + - uid: 4920 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,8.5 + pos: -57.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12668 + - uid: 5222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,16.5 + rot: -1.5707963267948966 rad + pos: -16.5,51.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12669 + - uid: 5786 components: - type: Transform - pos: -90.5,10.5 + pos: -7.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12720 + - uid: 7391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,33.5 + rot: -1.5707963267948966 rad + pos: -51.5,71.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12721 + - uid: 8703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,31.5 + pos: -55.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12737 + color: '#0000FFFF' + - uid: 8759 components: - type: Transform - pos: 9.5,14.5 + pos: -44.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12747 + color: '#0000FFFF' + - uid: 8765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 + rot: -1.5707963267948966 rad + pos: -57.5,85.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12748 + - uid: 8811 components: - type: Transform - pos: 8.5,16.5 + rot: -1.5707963267948966 rad + pos: -51.5,87.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12974 + - uid: 8852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,56.5 + pos: -32.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12976 + - uid: 8860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,57.5 + rot: 1.5707963267948966 rad + pos: -57.5,42.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12980 + color: '#0000FFFF' + - uid: 8865 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,59.5 + pos: -57.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12981 + - uid: 8899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,60.5 + rot: 3.141592653589793 rad + pos: -53.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13008 + color: '#0000FFFF' + - uid: 8902 components: - type: Transform - pos: -12.5,55.5 + rot: 3.141592653589793 rad + pos: -51.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13016 + color: '#0000FFFF' + - uid: 8926 components: - type: Transform - pos: -11.5,54.5 + rot: 3.141592653589793 rad + pos: -36.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13546 + - uid: 10054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,46.5 + pos: -47.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13657 + color: '#0000FFFF' + - uid: 10308 components: - type: Transform - pos: -91.5,9.5 + rot: 1.5707963267948966 rad + pos: -48.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13905 + color: '#0000FFFF' + - uid: 10337 components: - type: Transform - pos: -77.5,35.5 + pos: -50.5,28.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13909 + - uid: 11089 components: - type: Transform - pos: -76.5,34.5 + rot: -1.5707963267948966 rad + pos: -47.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13941 + color: '#0000FFFF' + - uid: 11094 components: - type: Transform - pos: -74.5,34.5 + rot: 1.5707963267948966 rad + pos: -37.5,37.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13950 + color: '#0000FFFF' + - uid: 11146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,44.5 + rot: -1.5707963267948966 rad + pos: -37.5,24.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13951 + - uid: 11147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,43.5 + pos: -37.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13963 + color: '#0000FFFF' + - uid: 11228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,45.5 + pos: -35.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13972 + color: '#0000FFFF' + - uid: 11241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,47.5 + rot: 1.5707963267948966 rad + pos: -57.5,14.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14012 + - uid: 11257 components: - type: Transform - pos: -73.5,35.5 + pos: -47.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14029 + - uid: 11258 components: - type: Transform - pos: -70.5,34.5 + pos: -40.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14030 + - uid: 11291 components: - type: Transform - pos: -69.5,34.5 + rot: 1.5707963267948966 rad + pos: -57.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14031 + - uid: 11535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,33.5 + rot: 1.5707963267948966 rad + pos: -44.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14048 + color: '#0000FFFF' + - uid: 11550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,30.5 + rot: -1.5707963267948966 rad + pos: -37.5,22.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14049 + color: '#0000FFFF' + - uid: 11573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,29.5 + rot: 3.141592653589793 rad + pos: -23.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14050 + - uid: 11584 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,25.5 + pos: -23.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14051 + color: '#0000FFFF' + - uid: 11599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,24.5 + pos: -16.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14052 + - uid: 11618 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,21.5 + pos: 3.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14053 + color: '#0000FFFF' + - uid: 11631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,22.5 + pos: -16.5,41.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14086 + - uid: 11647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,21.5 + rot: 1.5707963267948966 rad + pos: -16.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14087 + color: '#0000FFFF' + - uid: 11648 components: - type: Transform - pos: -70.5,22.5 + rot: -1.5707963267948966 rad + pos: -16.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14137 + - uid: 11650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,31.5 + pos: -16.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14138 + color: '#0000FFFF' + - uid: 11659 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,32.5 + pos: -20.5,45.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14141 + - uid: 11686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,31.5 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14146 + color: '#0000FFFF' + - uid: 11720 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,32.5 + pos: -7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasPort - entities: - - uid: 366 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1 - - uid: 367 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 1 - - uid: 1417 - components: - - type: Transform - pos: 12.5,37.5 - parent: 1 - - uid: 2398 + - uid: 11759 components: - type: Transform - pos: 6.5,37.5 + rot: -1.5707963267948966 rad + pos: -12.5,27.5 parent: 1 - - uid: 5573 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,24.5 + pos: -12.5,32.5 parent: 1 - - uid: 12504 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11786 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,10.5 + pos: -7.5,27.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15136 + - uid: 11790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,38.5 + rot: 3.141592653589793 rad + pos: 1.5,5.5 parent: 1 - - uid: 15137 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,37.5 + pos: 6.5,5.5 parent: 1 - - uid: 15138 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,36.5 + pos: 10.5,0.5 parent: 1 -- proto: GasPressurePump - entities: - - uid: 362 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-9.5 + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 parent: 1 - - uid: 363 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11968 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: 26.5,9.5 parent: 1 - - uid: 2396 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,35.5 + pos: 3.5,28.5 parent: 1 - - uid: 13904 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,34.5 + pos: -22.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13908 + color: '#0000FFFF' + - uid: 12064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,35.5 + rot: 3.141592653589793 rad + pos: -7.5,55.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15139 + - uid: 12123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,36.5 + pos: -73.5,35.5 parent: 1 - - uid: 15140 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,37.5 + pos: -73.5,29.5 parent: 1 - - uid: 15141 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12161 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,38.5 - parent: 1 -- proto: GasThermoMachineFreezer - entities: - - uid: 2384 - components: - - type: Transform - pos: 7.5,36.5 - parent: 1 - - uid: 13921 - components: - - type: Transform - pos: -77.5,39.5 + pos: -73.5,24.5 parent: 1 - - uid: 13922 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12176 components: - type: Transform - pos: -77.5,40.5 + rot: 1.5707963267948966 rad + pos: -73.5,21.5 parent: 1 -- proto: GasThermoMachineHeater - entities: - - uid: 13923 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12193 components: - type: Transform - pos: -77.5,41.5 + pos: -70.5,35.5 parent: 1 -- proto: GasValve - entities: - - uid: 13756 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12215 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,33.5 + pos: -67.5,21.5 parent: 1 - - type: GasValve - open: False -- proto: GasVentPump - entities: - - uid: 1331 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12242 components: - type: Transform - pos: 0.5,9.5 + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2102 + - uid: 12255 components: - type: Transform - pos: -4.5,34.5 + pos: -57.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2666 + - uid: 12260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,31.5 + pos: -51.5,83.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2670 + - uid: 12265 components: - type: Transform - pos: 3.5,37.5 + pos: -54.5,89.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2671 + - uid: 12270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,33.5 + rot: 3.141592653589793 rad + pos: -55.5,61.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2672 + - uid: 12297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,29.5 + pos: -54.5,54.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2673 + - uid: 12301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 + rot: 1.5707963267948966 rad + pos: -37.5,40.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2674 + - uid: 12381 components: - type: Transform - pos: 8.5,30.5 + pos: -9.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3019 + - uid: 12392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: -4.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3020 + - uid: 12395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,16.5 + pos: 10.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3021 + - uid: 12439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 + rot: 1.5707963267948966 rad + pos: -63.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3573 + - uid: 12459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-11.5 + rot: 1.5707963267948966 rad + pos: -51.5,64.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4749 + - uid: 12482 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-11.5 + pos: -47.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4800 + - uid: 12519 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-11.5 + pos: -43.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4802 + - uid: 12597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-10.5 + rot: -1.5707963267948966 rad + pos: -40.5,46.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 5688 + - uid: 12650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,23.5 + rot: 1.5707963267948966 rad + pos: -57.5,25.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 5692 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,54.5 + pos: 3.5,23.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8697 + - uid: 12713 components: - type: Transform - pos: -47.5,59.5 + rot: -1.5707963267948966 rad + pos: -57.5,44.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8761 + - uid: 12764 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,50.5 + pos: -16.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8762 + - uid: 12855 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,50.5 + pos: -59.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8763 + - uid: 12966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,50.5 + pos: -48.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8764 + - uid: 12982 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,52.5 + pos: -23.5,32.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8765 +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 2423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,57.5 + pos: -37.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8779 + color: '#FF0000FF' + - uid: 2681 components: - type: Transform - pos: -53.5,56.5 + rot: 1.5707963267948966 rad + pos: -12.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8845 + color: '#FF0000FF' + - uid: 2686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,60.5 + pos: 3.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8846 + color: '#FF0000FF' + - uid: 3339 components: - type: Transform - pos: -59.5,64.5 + rot: -1.5707963267948966 rad + pos: -7.5,29.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8847 + color: '#FF0000FF' + - uid: 3356 components: - type: Transform - pos: -55.5,64.5 + rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8848 + color: '#FF0000FF' + - uid: 3683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,63.5 + pos: 3.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8849 + color: '#FF0000FF' + - uid: 3708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,64.5 + rot: 3.141592653589793 rad + pos: 8.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8881 + color: '#FF0000FF' + - uid: 4279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,67.5 + rot: -1.5707963267948966 rad + pos: 3.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8882 + color: '#FF0000FF' + - uid: 5690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,80.5 + pos: -57.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8883 + color: '#FF0000FF' + - uid: 5791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,84.5 + pos: -7.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8885 + color: '#FF0000FF' + - uid: 7404 components: - type: Transform - pos: -54.5,84.5 + rot: -1.5707963267948966 rad + pos: -51.5,71.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8887 + color: '#FF0000FF' + - uid: 8699 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,88.5 + pos: -55.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8928 + color: '#FF0000FF' + - uid: 8704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,87.5 + rot: 1.5707963267948966 rad + pos: -51.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8967 + color: '#FF0000FF' + - uid: 8717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,83.5 + pos: -54.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10258 + color: '#FF0000FF' + - uid: 8733 + components: + - type: Transform + pos: -57.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-6.5 + pos: -57.5,85.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10337 + color: '#FF0000FF' + - uid: 8754 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + pos: -40.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10703 + color: '#FF0000FF' + - uid: 8763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 + rot: -1.5707963267948966 rad + pos: -51.5,83.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10805 + color: '#FF0000FF' + - uid: 8801 components: - type: Transform - pos: 6.5,20.5 + rot: 3.141592653589793 rad + pos: -55.5,61.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10955 + color: '#FF0000FF' + - uid: 8818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,42.5 + rot: -1.5707963267948966 rad + pos: -51.5,85.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11119 + color: '#FF0000FF' + - uid: 8864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,38.5 + pos: -57.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11124 + color: '#FF0000FF' + - uid: 8892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,33.5 + rot: 3.141592653589793 rad + pos: -47.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11145 + color: '#FF0000FF' + - uid: 8925 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,46.5 + pos: -33.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11172 + color: '#FF0000FF' + - uid: 8967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,42.5 + rot: -1.5707963267948966 rad + pos: -47.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11192 + color: '#FF0000FF' + - uid: 10244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,42.5 + rot: -1.5707963267948966 rad + pos: -47.5,36.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11208 + color: '#FF0000FF' + - uid: 10306 components: - type: Transform - pos: -40.5,50.5 + pos: -50.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11238 + color: '#FF0000FF' + - uid: 10378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,46.5 + rot: 1.5707963267948966 rad + pos: 3.5,37.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11239 + color: '#FF0000FF' + - uid: 11092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,44.5 + pos: -37.5,39.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11240 + color: '#FF0000FF' + - uid: 11128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,42.5 + rot: -1.5707963267948966 rad + pos: -37.5,19.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11272 + color: '#FF0000FF' + - uid: 11222 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,36.5 + pos: -57.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11304 + color: '#FF0000FF' + - uid: 11239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,24.5 + rot: 1.5707963267948966 rad + pos: -57.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11306 + color: '#FF0000FF' + - uid: 11271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,28.5 + pos: -39.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11317 + color: '#FF0000FF' + - uid: 11274 components: - type: Transform - pos: -52.5,40.5 + pos: -40.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11318 + color: '#FF0000FF' + - uid: 11292 components: - type: Transform - pos: -51.5,36.5 + rot: 1.5707963267948966 rad + pos: -57.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11321 + color: '#FF0000FF' + - uid: 11521 components: - type: Transform - pos: -53.5,33.5 + rot: 1.5707963267948966 rad + pos: -44.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11557 + color: '#FF0000FF' + - uid: 11522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,32.5 + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11558 + color: '#FF0000FF' + - uid: 11530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 + pos: -43.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11592 + color: '#FF0000FF' + - uid: 11551 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,37.5 + pos: -37.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11593 + color: '#FF0000FF' + - uid: 11585 components: - type: Transform - pos: -36.5,40.5 + rot: -1.5707963267948966 rad + pos: -23.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11594 + color: '#FF0000FF' + - uid: 11638 components: - type: Transform - pos: -32.5,39.5 + rot: -1.5707963267948966 rad + pos: -16.5,41.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11595 + color: '#FF0000FF' + - uid: 11643 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,37.5 + pos: -16.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11640 + color: '#FF0000FF' + - uid: 11652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,28.5 + pos: -16.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11641 + color: '#FF0000FF' + - uid: 11656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,20.5 + pos: -20.5,45.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11642 + color: '#FF0000FF' + - uid: 11687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,12.5 + pos: -1.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11647 + color: '#FF0000FF' + - uid: 11714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,24.5 + rot: 3.141592653589793 rad + pos: -7.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11676 + color: '#FF0000FF' + - uid: 11743 components: - type: Transform - pos: -34.5,27.5 + pos: -12.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11677 + color: '#FF0000FF' + - uid: 11758 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,23.5 + pos: -12.5,27.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11698 + color: '#FF0000FF' + - uid: 11761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,24.5 + pos: -12.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11752 + color: '#FF0000FF' + - uid: 11806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,27.5 + pos: 10.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11753 + color: '#FF0000FF' + - uid: 11832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,17.5 + rot: 3.141592653589793 rad + pos: 1.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11754 + color: '#FF0000FF' + - uid: 11851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,11.5 + pos: -16.5,51.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11755 + color: '#FF0000FF' + - uid: 11969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,14.5 + rot: 1.5707963267948966 rad + pos: 26.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11756 + color: '#FF0000FF' + - uid: 12006 components: - type: Transform - pos: -53.5,19.5 + pos: -22.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11790 + color: '#FF0000FF' + - uid: 12127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,4.5 + pos: -74.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11813 + color: '#FF0000FF' + - uid: 12173 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,6.5 + pos: -74.5,30.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11814 + color: '#FF0000FF' + - uid: 12177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,5.5 + pos: -48.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11840 + color: '#FF0000FF' + - uid: 12182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-6.5 + pos: -74.5,25.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11841 + color: '#FF0000FF' + - uid: 12185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 + rot: 1.5707963267948966 rad + pos: -74.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11926 + color: '#FF0000FF' + - uid: 12187 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,5.5 + pos: -68.5,33.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11948 + color: '#FF0000FF' + - uid: 12195 components: - type: Transform - pos: -41.5,9.5 + rot: 1.5707963267948966 rad + pos: -64.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11968 + color: '#FF0000FF' + - uid: 12214 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,3.5 + pos: -67.5,21.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11969 + color: '#FF0000FF' + - uid: 12296 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11996 - components: - - type: Transform - pos: -44.5,1.5 + pos: -48.5,31.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11997 + color: '#FF0000FF' + - uid: 12309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 + rot: -1.5707963267948966 rad + pos: -37.5,37.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11998 + color: '#FF0000FF' + - uid: 12315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-6.5 + rot: -1.5707963267948966 rad + pos: -37.5,24.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12016 + color: '#FF0000FF' + - uid: 12353 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-4.5 + pos: -23.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12063 + color: '#FF0000FF' + - uid: 12418 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,3.5 + pos: -7.5,55.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12079 + color: '#FF0000FF' + - uid: 12421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,2.5 + rot: -1.5707963267948966 rad + pos: -57.5,44.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12130 + color: '#FF0000FF' + - uid: 12440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 + pos: -59.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12131 + color: '#FF0000FF' + - uid: 12448 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,8.5 + pos: 3.5,28.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12132 + color: '#FF0000FF' + - uid: 12463 components: - type: Transform - pos: -23.5,16.5 + pos: -55.5,89.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12139 + color: '#FF0000FF' + - uid: 12522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,5.5 + pos: -32.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12172 + color: '#FF0000FF' + - uid: 12526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,32.5 + pos: -50.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12174 + color: '#FF0000FF' + - uid: 12528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,28.5 + rot: 1.5707963267948966 rad + pos: -16.5,48.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12218 + color: '#FF0000FF' + - uid: 12566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12255 + color: '#FF0000FF' + - uid: 12572 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,37.5 + pos: -16.5,54.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12256 + color: '#FF0000FF' + - uid: 12606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,44.5 + pos: -44.5,46.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12257 + color: '#FF0000FF' + - uid: 12621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,45.5 + pos: -57.5,40.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12258 + color: '#FF0000FF' + - uid: 12657 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,39.5 + pos: -37.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12273 + color: '#FF0000FF' + - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,47.5 + pos: -4.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12296 + color: '#FF0000FF' + - uid: 12756 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,5.5 + pos: -27.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12321 + color: '#FF0000FF' + - uid: 13007 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,0.5 + pos: -16.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12332 + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 + pos: 0.5,-8.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12353 + - uid: 367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 + pos: 2.5,-8.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12354 + - uid: 1417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 + pos: 12.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12383 + - uid: 2398 components: - type: Transform - pos: -2.5,0.5 + pos: 6.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12413 + - uid: 5573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + - uid: 12504 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-2.5 + pos: -89.5,10.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12414 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -77.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12415 + - uid: 15137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + rot: -1.5707963267948966 rad + pos: -77.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12485 + - uid: 15138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,28.5 + rot: -1.5707963267948966 rad + pos: -77.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12486 +- proto: GasPressurePump + entities: + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,27.5 + rot: 3.141592653589793 rad + pos: 0.5,-9.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12487 + - uid: 363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: 2.5,-9.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12488 + - uid: 2396 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,10.5 + pos: 8.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12506 + - uid: 13904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,12.5 + rot: -1.5707963267948966 rad + pos: -78.5,34.5 parent: 1 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12507 + color: '#FF0000FF' + - uid: 13908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,9.5 + pos: -78.5,35.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12508 + - uid: 15139 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,9.5 + pos: -78.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12509 + - uid: 15140 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,12.5 + pos: -78.5,37.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12510 + - uid: 15141 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,14.5 + pos: -78.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12582 +- proto: GasThermoMachineFreezer + entities: + - uid: 2384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 + pos: 7.5,36.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12583 + - uid: 13921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,5.5 + pos: -77.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12584 + - uid: 13922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: -77.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12585 +- proto: GasThermoMachineHeater + entities: + - uid: 13923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 + pos: -77.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12596 +- proto: GasValve + entities: + - uid: 13756 components: - type: Transform - pos: 15.5,2.5 + rot: -1.5707963267948966 rad + pos: -84.5,33.5 + parent: 1 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 2448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13096 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12605 + - uid: 2674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 + rot: 1.5707963267948966 rad + pos: -23.5,28.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12655 + - uid: 2875 components: - type: Transform - pos: 19.5,10.5 + pos: 2.5,34.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13299 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12656 + - uid: 2876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 + pos: -16.5,28.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12657 + - uid: 2895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 + pos: -23.5,33.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13071 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12658 + - uid: 2912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,6.5 + pos: 10.5,33.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12708 + - uid: 2919 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,8.5 + pos: 4.5,39.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12709 + - uid: 3001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 + pos: 11.5,29.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13299 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12710 + - uid: 3002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,12.5 + pos: 4.5,17.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12711 + - uid: 3023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,16.5 + pos: -3.5,24.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12712 + - uid: 8485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,18.5 + pos: -55.5,74.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12713 + - uid: 8687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + pos: -40.5,51.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13069 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12762 + - uid: 8718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 + rot: -1.5707963267948966 rad + pos: -56.5,51.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12763 + - uid: 8744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + rot: 1.5707963267948966 rad + pos: -52.5,87.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12764 + - uid: 8748 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,13.5 + pos: -44.5,42.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13069 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12765 + - uid: 8787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: -58.5,85.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12859 + - uid: 8788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + rot: 3.141592653589793 rad + pos: -55.5,82.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13010 + - uid: 8820 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,54.5 + pos: -60.5,64.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13011 + - uid: 8846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,56.5 + rot: 3.141592653589793 rad + pos: -47.5,59.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13012 + - uid: 8847 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,59.5 + pos: -36.5,37.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13065 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13013 + - uid: 8898 components: - type: Transform - pos: -17.5,63.5 + pos: -29.5,47.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13031 + - uid: 8901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,53.5 + pos: -36.5,45.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13067 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13032 + - uid: 10235 components: - type: Transform - pos: -7.5,60.5 + rot: 1.5707963267948966 rad + pos: -52.5,36.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13781 + - uid: 10954 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,8.5 + pos: -51.5,25.5 parent: 1 - type: DeviceNetwork + configurators: + - invalid deviceLists: - - 13790 + - 12295 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13782 + - uid: 11107 components: - type: Transform - pos: -100.5,11.5 + rot: -1.5707963267948966 rad + pos: -30.5,38.5 parent: 1 - type: DeviceNetwork deviceLists: - - 13790 + - 13065 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13784 + - uid: 11178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,5.5 + rot: -1.5707963267948966 rad + pos: -24.5,23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13790 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13785 + - uid: 11191 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,10.5 + pos: -24.5,9.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12503 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13961 + - uid: 11197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,40.5 + pos: -52.5,17.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13962 + - uid: 11199 components: - type: Transform - pos: -62.5,45.5 + rot: -1.5707963267948966 rad + pos: -56.5,25.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13981 + - uid: 11200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,47.5 + rot: 3.141592653589793 rad + pos: -67.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13051 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13982 + - uid: 11201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,52.5 + rot: 3.141592653589793 rad + pos: -35.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13058 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14038 + - uid: 11206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,33.5 + rot: -1.5707963267948966 rad + pos: -69.5,54.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14040 + - uid: 11207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,29.5 + rot: -1.5707963267948966 rad + pos: -53.5,-1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13053 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14046 + - uid: 11208 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,32.5 + pos: -47.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13055 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14109 + - uid: 11537 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,20.5 + pos: -43.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14111 + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 11538 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 13057 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11539 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,22.5 + pos: -36.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13057 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14112 + - uid: 11610 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,17.5 + pos: -56.5,42.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13040 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14116 + - uid: 11611 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,29.5 + pos: -48.5,41.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13040 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14149 + - uid: 11628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,27.5 + rot: -1.5707963267948966 rad + pos: -47.5,31.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13047 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14158 + - uid: 11846 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 13100 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11933 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,24.5 + pos: -42.5,24.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14161 + - uid: 11937 components: - type: Transform - pos: -60.5,33.5 + pos: 1.5,10.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 1064 + - uid: 11938 components: - type: Transform - pos: -0.5,9.5 + rot: 3.141592653589793 rad + pos: 6.5,4.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2487 + color: '#0000FFFF' + - uid: 11940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,32.5 + pos: 6.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13100 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2488 + color: '#0000FFFF' + - uid: 11947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,34.5 + pos: 15.5,31.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2489 + color: '#0000FFFF' + - uid: 11951 components: - type: Transform - pos: 4.5,37.5 + rot: 3.141592653589793 rad + pos: -9.5,-3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 316 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2490 + color: '#0000FFFF' + - uid: 11984 components: - type: Transform - pos: 9.5,30.5 + rot: -1.5707963267948966 rad + pos: -15.5,41.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13073 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2491 + color: '#0000FFFF' + - uid: 12019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,30.5 + pos: -19.5,40.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13074 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2492 + color: '#0000FFFF' + - uid: 12041 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: -10.5,48.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2900 + color: '#0000FFFF' + - uid: 12042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,28.5 + pos: -20.5,55.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2912 + color: '#0000FFFF' + - uid: 12043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,23.5 + rot: -1.5707963267948966 rad + pos: -15.5,63.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3022 + color: '#0000FFFF' + - uid: 12202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,23.5 + pos: -65.5,27.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13998 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3023 + color: '#0000FFFF' + - uid: 12208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 + pos: -59.5,33.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13998 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3024 + color: '#0000FFFF' + - uid: 12222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: -4.5,34.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3739 + color: '#0000FFFF' + - uid: 12229 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-3.5 + pos: 10.5,15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3837 + color: '#0000FFFF' + - uid: 12253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -61.5,54.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 8960 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3959 + color: '#0000FFFF' + - uid: 12325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-11.5 + rot: 1.5707963267948966 rad + pos: -26.5,17.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#0000FFFF' + - uid: 12327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-11.5 + pos: -52.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13053 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4750 + color: '#0000FFFF' + - uid: 12348 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,-9.5 + pos: -46.5,1.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4807 + color: '#0000FFFF' + - uid: 12369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-11.5 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13063 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8690 + color: '#0000FFFF' + - uid: 12402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,53.5 + pos: 7.5,2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13100 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8754 + color: '#0000FFFF' + - uid: 12406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,50.5 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 317 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8755 + color: '#0000FFFF' + - uid: 12409 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,50.5 + pos: -16.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 316 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8756 + color: '#0000FFFF' + - uid: 12415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,50.5 + rot: -1.5707963267948966 rad + pos: -19.5,46.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13074 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8757 + color: '#0000FFFF' + - uid: 12422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,52.5 + rot: -1.5707963267948966 rad + pos: -61.5,41.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8758 + color: '#0000FFFF' + - uid: 12444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,61.5 + pos: 10.5,25.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8759 + color: '#0000FFFF' + - uid: 12464 components: - type: Transform - pos: -54.5,64.5 + rot: 3.141592653589793 rad + pos: -54.5,88.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8760 + color: '#0000FFFF' + - uid: 12467 components: - type: Transform - pos: -58.5,64.5 + pos: -53.5,55.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 8960 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8766 + color: '#0000FFFF' + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,58.5 + pos: -56.5,64.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8778 + color: '#0000FFFF' + - uid: 12508 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,56.5 + pos: -8.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8842 + color: '#0000FFFF' + - uid: 12555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,61.5 + rot: -1.5707963267948966 rad + pos: 28.5,17.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13105 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8843 + color: '#0000FFFF' + - uid: 12570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,62.5 + pos: -6.5,56.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8844 + color: '#0000FFFF' + - uid: 12578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,65.5 + rot: 1.5707963267948966 rad + pos: -9.5,27.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13077 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8884 + color: '#0000FFFF' + - uid: 12602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,85.5 + rot: 3.141592653589793 rad + pos: -54.5,50.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8886 + color: '#0000FFFF' + - uid: 12630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,83.5 + rot: 1.5707963267948966 rad + pos: -52.5,28.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 12295 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8888 + color: '#0000FFFF' + - uid: 12641 components: - type: Transform - pos: -54.5,89.5 + rot: 3.141592653589793 rad + pos: -66.5,-11.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8924 + color: '#0000FFFF' + - uid: 12656 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,87.5 + pos: -40.5,-10.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8925 + color: '#0000FFFF' + - uid: 12698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,84.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13105 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10798 + color: '#0000FFFF' + - uid: 12700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,19.5 + pos: -12.5,-11.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10956 + color: '#0000FFFF' + - uid: 12709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,41.5 + pos: -6.5,61.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11122 + color: '#0000FFFF' + - uid: 13781 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,37.5 + pos: -109.5,8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13790 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11123 + color: '#0000FFFF' + - uid: 13782 components: - type: Transform - pos: -58.5,32.5 + pos: -100.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13790 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11146 + color: '#0000FFFF' + - uid: 13784 components: - type: Transform - pos: -53.5,47.5 + rot: 3.141592653589793 rad + pos: -100.5,5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13790 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11175 + color: '#0000FFFF' + - uid: 13785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,41.5 + rot: 1.5707963267948966 rad + pos: -91.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 12503 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11196 + color: '#0000FFFF' + - uid: 14038 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,42.5 + pos: -69.5,33.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11209 + color: '#0000FFFF' + - uid: 14040 components: - type: Transform - pos: -41.5,50.5 + rot: 3.141592653589793 rad + pos: -70.5,29.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11235 + color: '#0000FFFF' + - uid: 14046 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,42.5 + pos: -77.5,32.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11236 + color: '#0000FFFF' + - uid: 14109 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,45.5 + pos: -66.5,20.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11237 + color: '#0000FFFF' + - uid: 14111 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,47.5 + pos: -66.5,22.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11270 + color: '#0000FFFF' + - uid: 14112 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,35.5 + pos: -71.5,17.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11303 + color: '#0000FFFF' + - uid: 14116 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11319 - components: - - type: Transform - pos: -50.5,36.5 + pos: -74.5,29.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11320 + color: '#0000FFFF' + - uid: 14131 components: - type: Transform - pos: -54.5,33.5 + rot: -1.5707963267948966 rad + pos: -40.5,64.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11555 + color: '#0000FFFF' + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 14160 + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 14158 components: - type: Transform - pos: -43.5,32.5 + rot: 1.5707963267948966 rad + pos: -80.5,24.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11556 + color: '#0000FFFF' + - uid: 14981 components: - type: Transform - pos: -37.5,33.5 + rot: 1.5707963267948966 rad + pos: -8.5,20.5 parent: 1 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11596 + color: '#0000FFFF' + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 10376 + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 15088 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,36.5 + pos: -26.5,53.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11597 + color: '#0000FFFF' + - uid: 15210 components: - type: Transform - pos: -38.5,40.5 + rot: -1.5707963267948966 rad + pos: 4.5,42.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 15213 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11598 + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 1798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,36.5 + rot: 3.141592653589793 rad + pos: 2.5,32.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13299 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11599 + - uid: 1998 components: - type: Transform - pos: -31.5,39.5 + rot: -1.5707963267948966 rad + pos: 8.5,33.5 parent: 1 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11643 + - uid: 2449 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,27.5 + pos: -11.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13096 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11644 + - uid: 2871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,21.5 + rot: 1.5707963267948966 rad + pos: 8.5,15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11645 + - uid: 2872 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,13.5 + pos: 4.5,15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11646 + - uid: 2900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 + rot: 3.141592653589793 rad + pos: -3.5,22.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11675 + - uid: 2902 components: - type: Transform - pos: -33.5,27.5 + pos: 8.5,29.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13299 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11678 + - uid: 3004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,24.5 + rot: 3.141592653589793 rad + pos: -4.5,29.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11697 + - uid: 3005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,25.5 + rot: 1.5707963267948966 rad + pos: -9.5,29.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13077 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11747 + - uid: 7334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,26.5 + pos: -55.5,72.5 parent: 1 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11748 + - uid: 8707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,18.5 + rot: 3.141592653589793 rad + pos: -61.5,52.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 8960 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11749 + - uid: 8743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,10.5 + pos: -52.5,85.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11750 + - uid: 8755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,15.5 + rot: 3.141592653589793 rad + pos: -44.5,44.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13069 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11751 + - uid: 8786 components: - type: Transform - pos: -54.5,19.5 + rot: 1.5707963267948966 rad + pos: -60.5,85.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11789 + - uid: 8789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,5.5 + rot: 3.141592653589793 rad + pos: -55.5,88.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11811 + - uid: 8845 components: - type: Transform - pos: -67.5,5.5 + rot: 3.141592653589793 rad + pos: -48.5,59.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11812 + - uid: 10955 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,4.5 + pos: -53.5,28.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 12295 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11842 + - uid: 11104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-2.5 + rot: 3.141592653589793 rad + pos: -29.5,45.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11843 + - uid: 11105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-5.5 + pos: -33.5,45.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13067 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11925 + - uid: 11106 components: - type: Transform - pos: -49.5,5.5 + rot: -1.5707963267948966 rad + pos: -30.5,36.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13065 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11949 + - uid: 11108 components: - type: Transform - pos: -40.5,9.5 + rot: 1.5707963267948966 rad + pos: -38.5,37.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13065 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11970 + - uid: 11179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,2.5 + rot: -1.5707963267948966 rad + pos: -25.5,23.5 parent: 1 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11971 + - uid: 11192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,0.5 + rot: 1.5707963267948966 rad + pos: -26.5,16.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11999 + - uid: 11193 components: - type: Transform - pos: -43.5,1.5 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12000 + - uid: 11202 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-6.5 + pos: -50.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13055 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12001 + - uid: 11205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-3.5 + pos: -71.5,54.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12018 + - uid: 11209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-4.5 + pos: -54.5,17.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12064 + - uid: 11210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 + pos: -54.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13053 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12080 + - uid: 11212 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,2.5 + pos: -65.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13051 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12127 + - uid: 11543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,9.5 + pos: -46.5,0.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12128 + - uid: 11544 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,11.5 + pos: -45.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12129 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 11545 components: - type: Transform - pos: -25.5,16.5 + rot: -1.5707963267948966 rad + pos: -38.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13057 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12140 + - uid: 11546 components: - type: Transform - pos: -24.5,5.5 + rot: 3.141592653589793 rad + pos: -40.5,-11.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12173 + - uid: 11570 components: - type: Transform - pos: -31.5,32.5 + rot: 1.5707963267948966 rad + pos: -38.5,19.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13063 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12175 + - uid: 11624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,28.5 + rot: -1.5707963267948966 rad + pos: -56.5,40.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13040 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12190 + - uid: 11625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,38.5 + pos: -48.5,39.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13040 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12219 + - uid: 11629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,31.5 + rot: 1.5707963267948966 rad + pos: -49.5,31.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13047 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12259 + - uid: 11809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,38.5 + pos: 14.5,-0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13100 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12260 + - uid: 11935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,45.5 + rot: 3.141592653589793 rad + pos: -41.5,23.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12261 + - uid: 11939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,46.5 + pos: 0.5,10.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12272 + - uid: 11943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,48.5 + pos: 28.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13105 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12297 + - uid: 11944 components: - type: Transform - pos: -17.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,4.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12320 + - uid: 11948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,0.5 + pos: 4.5,-9.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 317 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12331 + - uid: 11949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + rot: 3.141592653589793 rad + pos: -12.5,-3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 316 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12352 + - uid: 11950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 + rot: 3.141592653589793 rad + pos: -18.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 316 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12355 + - uid: 11983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + rot: 1.5707963267948966 rad + pos: -17.5,41.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13073 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12381 + - uid: 12021 components: - type: Transform - pos: -3.5,0.5 + rot: 1.5707963267948966 rad + pos: -17.5,63.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12384 + - uid: 12040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 + pos: -7.5,61.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12416 + - uid: 12044 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + pos: -19.5,39.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13074 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12481 + - uid: 12045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,28.5 + rot: 1.5707963267948966 rad + pos: -21.5,46.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13074 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12482 + - uid: 12088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,28.5 + rot: 1.5707963267948966 rad + pos: -63.5,41.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12483 + - uid: 12207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,19.5 + rot: 3.141592653589793 rad + pos: -59.5,31.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13998 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12484 + - uid: 12223 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,11.5 + pos: 10.5,24.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13304 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12586 + - uid: 12224 components: - type: Transform - pos: -5.5,5.5 + rot: -1.5707963267948966 rad + pos: 4.5,37.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12587 + - uid: 12225 components: - type: Transform - pos: 5.5,5.5 + pos: -27.5,33.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13071 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12588 + - uid: 12249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: -42.5,51.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13069 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12589 + - uid: 12258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 + rot: 3.141592653589793 rad + pos: -57.5,50.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12595 + - uid: 12276 components: - type: Transform - pos: 14.5,2.5 + rot: 1.5707963267948966 rad + pos: -56.5,63.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12606 + - uid: 12277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-1.5 + rot: 1.5707963267948966 rad + pos: -60.5,63.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12651 + - uid: 12302 components: - type: Transform - pos: 17.5,10.5 + rot: 1.5707963267948966 rad + pos: -53.5,36.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12652 + - uid: 12326 components: - type: Transform - pos: 21.5,6.5 + rot: 3.141592653589793 rad + pos: -39.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13058 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12653 + - uid: 12330 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,3.5 + pos: -64.5,-11.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12654 + - uid: 12331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,5.5 + pos: -56.5,23.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12715 + - uid: 12349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,11.5 + rot: 3.141592653589793 rad + pos: -43.5,-3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13057 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12716 + - uid: 12357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,19.5 + pos: -24.5,28.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12736 + - uid: 12403 components: - type: Transform - pos: -3.5,34.5 + rot: -1.5707963267948966 rad + pos: 28.5,15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13105 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12759 + - uid: 12405 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,13.5 + pos: -12.5,-13.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12760 + - uid: 12416 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,13.5 + pos: -6.5,54.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12761 + - uid: 12443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 + rot: 1.5707963267948966 rad + pos: -16.5,27.5 parent: 1 + - type: Construction + step: 1 + edge: 0 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12766 + - uid: 12461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 + rot: 3.141592653589793 rad + pos: -51.5,50.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12858 + - uid: 12506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13053 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13004 + - uid: 12604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,55.5 + rot: 3.141592653589793 rad + pos: -54.5,82.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13005 + - uid: 12622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,57.5 + pos: -51.5,23.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 12295 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13006 + - uid: 12699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,60.5 + pos: 14.5,31.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13007 + - uid: 12707 components: - type: Transform - pos: -15.5,63.5 + rot: -1.5707963267948966 rad + pos: -10.5,47.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13033 + - uid: 12708 components: - type: Transform - pos: -8.5,60.5 + pos: -22.5,55.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13079 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13034 + - uid: 12721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,53.5 + pos: -55.5,55.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 8960 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 13775 @@ -68631,35 +69485,13 @@ entities: - 13790 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 14045 components: - type: Transform pos: -68.5,34.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 14047 @@ -68676,6 +69508,8 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,23.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 14113 @@ -68684,6 +69518,8 @@ entities: rot: -1.5707963267948966 rad pos: -71.5,16.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 14114 @@ -68692,6 +69528,8 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,19.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 14115 @@ -68700,14 +69538,36 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,30.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,63.5 + parent: 1 - type: AtmosPipeColor color: '#FF0000FF' + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 14160 + - type: AtmosPipeLayers + pipeLayer: Tertiary - uid: 14148 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,28.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 13998 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - uid: 14159 @@ -68716,13 +69576,48 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,25.5 parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14160 + - uid: 14982 components: - type: Transform - pos: -61.5,33.5 + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 10376 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 15087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,53.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 15213 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - proto: GeneratorBasic @@ -68859,16 +69754,6 @@ entities: - type: Transform pos: 13.5,38.5 parent: 1 - - uid: 1470 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1 - - uid: 1476 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1 - uid: 2059 components: - type: Transform @@ -69079,6 +69964,11 @@ entities: - type: Transform pos: -65.5,9.5 parent: 1 + - uid: 10752 + components: + - type: Transform + pos: -81.5,52.5 + parent: 1 - uid: 10845 components: - type: Transform @@ -69094,6 +69984,11 @@ entities: - type: Transform pos: -68.5,48.5 parent: 1 + - uid: 15427 + components: + - type: Transform + pos: -84.5,50.5 + parent: 1 - proto: GravityGenerator entities: - uid: 920 @@ -69120,6 +70015,124 @@ entities: - type: Transform pos: -61.997692,50.59159 parent: 1 + - uid: 8371 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8372 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8374 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9130 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeShrapnel + entities: + - uid: 14013 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14021 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14022 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14023 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 14014 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14015 + components: + - type: Transform + parent: 14012 + - type: TimerTrigger + delay: 0 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14016 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14017 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14018 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14019 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14020 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14024 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Grille entities: - uid: 28 @@ -70684,6 +71697,18 @@ entities: - type: Transform pos: -1.5,64.5 parent: 1 + - uid: 7467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,76.5 + parent: 1 + - uid: 7473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,77.5 + parent: 1 - uid: 7512 components: - type: Transform @@ -70764,10 +71789,11 @@ entities: - type: Transform pos: -19.5,70.5 parent: 1 - - uid: 8970 + - uid: 8583 components: - type: Transform - pos: -55.5,74.5 + rot: 3.141592653589793 rad + pos: -45.5,81.5 parent: 1 - uid: 8972 components: @@ -70777,23 +71803,14 @@ entities: - uid: 8973 components: - type: Transform - pos: -55.5,70.5 - parent: 1 - - uid: 8975 - components: - - type: Transform - pos: -55.5,72.5 + rot: 3.141592653589793 rad + pos: -56.5,74.5 parent: 1 - uid: 8976 components: - type: Transform pos: -23.5,69.5 parent: 1 - - uid: 8977 - components: - - type: Transform - pos: -55.5,75.5 - parent: 1 - uid: 8981 components: - type: Transform @@ -70829,30 +71846,17 @@ entities: - type: Transform pos: -64.5,89.5 parent: 1 - - uid: 9023 - components: - - type: Transform - pos: -47.5,77.5 - parent: 1 - uid: 9024 components: - type: Transform - pos: -47.5,76.5 - parent: 1 - - uid: 9026 - components: - - type: Transform - pos: -47.5,74.5 + rot: 3.141592653589793 rad + pos: -45.5,80.5 parent: 1 - uid: 9028 components: - type: Transform - pos: -46.5,71.5 - parent: 1 - - uid: 9029 - components: - - type: Transform - pos: -45.5,71.5 + rot: 3.141592653589793 rad + pos: -49.5,69.5 parent: 1 - uid: 9030 components: @@ -70924,6 +71928,12 @@ entities: - type: Transform pos: 13.5,55.5 parent: 1 + - uid: 9118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,73.5 + parent: 1 - uid: 9188 components: - type: Transform @@ -71300,30 +72310,6 @@ entities: - type: Transform pos: -111.5,15.5 parent: 1 - - uid: 10758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - - uid: 10759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - - uid: 10761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - - uid: 10762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - uid: 10833 components: - type: Transform @@ -71385,12 +72371,6 @@ entities: - type: Transform pos: -57.5,68.5 parent: 1 - - uid: 11509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - uid: 11994 components: - type: Transform @@ -71411,6 +72391,11 @@ entities: - type: Transform pos: -115.5,12.5 parent: 1 + - uid: 12545 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 - uid: 13752 components: - type: Transform @@ -71434,6 +72419,28 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,9.5 parent: 1 + - uid: 13943 + components: + - type: Transform + pos: -42.5,73.5 + parent: 1 + - uid: 14147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,73.5 + parent: 1 + - uid: 14153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,73.5 + parent: 1 + - uid: 14205 + components: + - type: Transform + pos: -39.5,73.5 + parent: 14162 - uid: 14209 components: - type: Transform @@ -71685,6 +72692,11 @@ entities: - type: Transform pos: -91.5,15.5 parent: 1 + - uid: 14686 + components: + - type: Transform + pos: -36.5,73.5 + parent: 14675 - uid: 14687 components: - type: Transform @@ -71747,6 +72759,11 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-13.5 parent: 1 + - uid: 14712 + components: + - type: Transform + pos: -35.5,73.5 + parent: 14711 - uid: 14714 components: - type: Transform @@ -72135,11 +73152,50 @@ entities: - type: Transform pos: 9.5,-15.5 parent: 1 + - uid: 14852 + components: + - type: Transform + pos: -32.5,69.5 + parent: 14835 + - uid: 14877 + components: + - type: Transform + pos: -32.5,68.5 + parent: 14835 + - uid: 14920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,72.5 + parent: 14835 + - uid: 14931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,73.5 + parent: 14835 + - uid: 14934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,73.5 + parent: 14932 + - uid: 14945 + components: + - type: Transform + pos: -32.5,66.5 + parent: 14944 - uid: 15011 components: - type: Transform pos: 12.5,-13.5 parent: 1 + - uid: 15017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,56.5 + parent: 1 - uid: 15147 components: - type: Transform @@ -72206,101 +73262,30 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,48.5 parent: 1 - - uid: 15386 - components: - - type: Transform - pos: -44.5,69.5 - parent: 1 - - uid: 15387 - components: - - type: Transform - pos: -43.5,69.5 - parent: 1 - - uid: 15388 - components: - - type: Transform - pos: -42.5,69.5 - parent: 1 - - uid: 15389 - components: - - type: Transform - pos: -41.5,69.5 - parent: 1 - - uid: 15390 - components: - - type: Transform - pos: -40.5,69.5 - parent: 1 - - uid: 15391 - components: - - type: Transform - pos: -39.5,69.5 - parent: 1 - - uid: 15392 - components: - - type: Transform - pos: -38.5,69.5 - parent: 1 - - uid: 15393 - components: - - type: Transform - pos: -37.5,69.5 - parent: 1 - - uid: 15394 - components: - - type: Transform - pos: -36.5,69.5 - parent: 1 - - uid: 15395 - components: - - type: Transform - pos: -36.5,68.5 - parent: 1 - - uid: 15396 - components: - - type: Transform - pos: -36.5,67.5 - parent: 1 - - uid: 15397 - components: - - type: Transform - pos: -36.5,66.5 - parent: 1 - - uid: 15398 - components: - - type: Transform - pos: -36.5,65.5 - parent: 1 - - uid: 15399 - components: - - type: Transform - pos: -36.5,64.5 - parent: 1 - - uid: 15400 - components: - - type: Transform - pos: -36.5,63.5 - parent: 1 - - uid: 15401 + - uid: 15421 components: - type: Transform - pos: -36.5,62.5 - parent: 1 - - uid: 15402 + rot: 3.141592653589793 rad + pos: -58.5,72.5 + parent: 15420 + - uid: 15423 components: - type: Transform - pos: -36.5,61.5 - parent: 1 - - uid: 15403 + rot: 3.141592653589793 rad + pos: -58.5,73.5 + parent: 15422 + - uid: 15429 components: - type: Transform - pos: -36.5,60.5 - parent: 1 - - uid: 15404 + rot: 3.141592653589793 rad + pos: -58.5,76.5 + parent: 15428 + - uid: 15433 components: - type: Transform - pos: -36.5,59.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -58.5,77.5 + parent: 15431 - uid: 15436 components: - type: Transform @@ -72379,31 +73364,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,60.5 parent: 1 - - uid: 15464 - components: - - type: Transform - pos: -42.5,57.5 - parent: 1 - - uid: 15465 - components: - - type: Transform - pos: -40.5,58.5 - parent: 1 - - uid: 15467 - components: - - type: Transform - pos: -37.5,57.5 - parent: 1 - - uid: 15475 - components: - - type: Transform - pos: -44.5,58.5 - parent: 1 - - uid: 15484 - components: - - type: Transform - pos: -38.5,59.5 - parent: 1 - uid: 15510 components: - type: Transform @@ -72625,6 +73585,28 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,70.5 parent: 1 + - uid: 7422 + components: + - type: Transform + pos: -45.5,74.5 + parent: 1 + - uid: 7428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,76.5 + parent: 1 + - uid: 7429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,79.5 + parent: 1 + - uid: 7471 + components: + - type: Transform + pos: -45.5,78.5 + parent: 1 - uid: 7521 components: - type: Transform @@ -72665,6 +73647,18 @@ entities: - type: Transform pos: 11.5,55.5 parent: 1 + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,77.5 + parent: 1 + - uid: 8977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,71.5 + parent: 1 - uid: 8979 components: - type: Transform @@ -72699,29 +73693,6 @@ entities: - type: Transform pos: -31.5,62.5 parent: 1 - - uid: 9049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,71.5 - parent: 1 - - uid: 9052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 1 - - uid: 9053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,75.5 - parent: 1 - - uid: 9054 - components: - - type: Transform - pos: -47.5,78.5 - parent: 1 - uid: 9056 components: - type: Transform @@ -72739,12 +73710,6 @@ entities: rot: -1.5707963267948966 rad pos: -64.5,90.5 parent: 1 - - uid: 9081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,71.5 - parent: 1 - uid: 9083 components: - type: Transform @@ -72755,11 +73720,6 @@ entities: - type: Transform pos: -65.5,83.5 parent: 1 - - uid: 9085 - components: - - type: Transform - pos: -55.5,76.5 - parent: 1 - uid: 9093 components: - type: Transform @@ -73113,6 +74073,30 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,4.5 parent: 1 + - uid: 13939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,72.5 + parent: 1 + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,73.5 + parent: 1 + - uid: 14155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,73.5 + parent: 1 + - uid: 14156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,72.5 + parent: 1 - uid: 14601 components: - type: Transform @@ -73588,6 +74572,22 @@ entities: - type: Transform pos: 26.5,32.5 parent: 1 + - uid: 14878 + components: + - type: Transform + pos: -32.5,70.5 + parent: 14835 + - uid: 14918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,70.5 + parent: 14835 + - uid: 14942 + components: + - type: Transform + pos: -32.5,67.5 + parent: 14940 - uid: 15150 components: - type: Transform @@ -73611,6 +74611,11 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,55.5 parent: 1 + - uid: 15425 + components: + - type: Transform + pos: -58.5,74.5 + parent: 15424 - uid: 15435 components: - type: Transform @@ -73700,38 +74705,127 @@ entities: - type: Transform pos: 26.766502,29.758364 parent: 1 -- proto: GunSafeSubMachineGunDrozd +- proto: GunSafeBaseSecure entities: - - uid: 9662 + - uid: 13971 components: - type: Transform - pos: -43.5,65.5 + pos: -42.5,61.5 parent: 1 -- proto: GunSafeSubMachineGunWt550 - entities: - - uid: 9666 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13954 + - 13956 + - 13953 + - 13955 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: AccessReader + accessListsOriginal: + - - Armory + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.8856695 + Nitrogen: 7.0937095 + - uid: 13984 components: + - type: MetaData + name: оружейный сейф боеприпасов - type: Transform - pos: -42.5,65.5 + pos: -40.5,67.5 parent: 1 + - type: AccessReader + accessListsOriginal: + - - Armory - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14096 + - 14095 + - 14094 + - 14025 + - 14030 + - 14054 + - 14036 + - 14026 + - 14055 + - 14061 + - 14076 + - 14082 + - 14089 + - 13988 + - 13983 + - 14090 + - 14091 + - 14092 + - 14093 + - 14097 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13997 + components: + - type: Transform + pos: -43.5,61.5 + parent: 1 + - type: AccessReader + accessListsOriginal: + - - Armory + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.8856695 + Nitrogen: 7.0937095 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13958 + - 13960 + - 13957 + - 13018 + - 13385 + - 13384 + - 13017 + - 13959 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Handcuffs + entities: + - uid: 15415 + components: + - type: Transform + pos: -50.480797,78.26645 + parent: 1 - proto: HandheldGPSBasic entities: - uid: 15784 @@ -73979,10 +75073,10 @@ entities: parent: 1 - proto: HolopadEngineeringTechVault entities: - - uid: 14330 + - uid: 10704 components: - type: Transform - pos: -50.5,25.5 + pos: -51.5,24.5 parent: 1 - proto: HolopadEngineeringTelecoms entities: @@ -74033,6 +75127,9 @@ entities: - type: Transform pos: -50.5,28.5 parent: 1 + - type: AccessReader + accessListsOriginal: + - - Command - proto: HolopadMedicalChemistry entities: - uid: 13803 @@ -74203,10 +75300,10 @@ entities: parent: 1 - proto: HolopadServiceBotany entities: - - uid: 13898 + - uid: 8747 components: - type: Transform - pos: -44.5,44.5 + pos: -44.5,43.5 parent: 1 - proto: HolopadServiceChapel entities: @@ -74245,6 +75342,14 @@ entities: parent: 1 - proto: HolyPointMarker entities: + - uid: 11942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + - type: HolyPoint + range: 2 - uid: 14369 components: - type: Transform @@ -74266,13 +75371,6 @@ entities: parent: 1 - type: HolyPoint range: 2 - - uid: 14398 - components: - - type: Transform - pos: 20.5,1.5 - parent: 1 - - type: HolyPoint - range: 2 - proto: HospitalCurtainsOpen entities: - uid: 78 @@ -74311,6 +75409,18 @@ entities: - type: Transform pos: 9.5,30.5 parent: 1 + - uid: 5801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,25.5 + parent: 1 + - uid: 8184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 - uid: 15349 components: - type: Transform @@ -74612,12 +75722,16 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8605 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,58.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 8606 @@ -74626,18 +75740,24 @@ entities: rot: 3.141592653589793 rad pos: -14.5,61.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8607 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,53.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8608 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,55.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 4801 @@ -74646,82 +75766,110 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-12.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8609 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8610 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,26.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8611 components: - type: Transform pos: -27.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8613 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,39.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8614 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,28.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8615 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8618 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,12.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8619 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8620 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,16.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8621 components: - type: Transform pos: 3.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8622 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8623 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,15.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 14171 @@ -74730,41 +75878,55 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14172 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,26.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14173 components: - type: Transform pos: -81.5,28.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14174 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,32.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14175 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14176 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,16.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14177 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,29.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 8629 @@ -74772,42 +75934,56 @@ entities: - type: Transform pos: -3.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8630 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8632 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,27.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8633 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8634 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8635 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 15134 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 8624 @@ -74816,28 +75992,38 @@ entities: rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8625 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8626 components: - type: Transform pos: -1.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8627 components: - type: Transform pos: 0.5,-7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8628 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 8643 @@ -74846,42 +76032,56 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,51.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8644 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,58.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8645 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,64.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8646 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,64.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8647 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,51.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8649 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,85.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8650 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,57.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 8639 @@ -74889,23 +76089,31 @@ entities: - type: Transform pos: -34.5,41.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8640 components: - type: Transform pos: -28.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8641 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8642 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,51.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 8636 @@ -74914,17 +76122,23 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8637 components: - type: Transform pos: -41.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7100 @@ -75067,7 +76281,6 @@ entities: - type: Transform pos: -58.53795,64.84835 parent: 1 - - type: HandheldLight - type: Physics canCollide: True - uid: 10944 @@ -75144,33 +76357,6 @@ entities: - type: Transform pos: 9.4932995,46.83763 parent: 1 -- proto: LandMineExplosive - entities: - - uid: 15456 - components: - - type: Transform - pos: -42.49931,68.53585 - parent: 1 - - uid: 15457 - components: - - type: Transform - pos: -37.49931,61.461067 - parent: 1 - - uid: 15488 - components: - - type: Transform - pos: -38.49931,64.50794 - parent: 1 - - uid: 15489 - components: - - type: Transform - pos: -37.483685,67.49232 - parent: 1 - - uid: 15490 - components: - - type: Transform - pos: -39.483685,68.52357 - parent: 1 - proto: Lantern entities: - uid: 621 @@ -75242,6 +76428,13 @@ entities: - type: Transform pos: -81.5,29.5 parent: 1 +- proto: LockerBlueShieldOfficerFilledHardsuit + entities: + - uid: 7515 + components: + - type: Transform + pos: -29.5,55.5 + parent: 1 - proto: LockerBoozeFilled entities: - uid: 9732 @@ -75255,18 +76448,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 9733 components: - type: Transform @@ -75278,18 +76461,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerBotanistFilled entities: - uid: 5788 @@ -75303,18 +76476,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5794 components: - type: Transform @@ -75326,18 +76489,15 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 +- proto: LockerBrigmedicFilled + entities: + - uid: 5472 + components: + - type: Transform + pos: -55.5,71.5 + parent: 1 - proto: LockerCaptainFilledHardsuit entities: - uid: 187 @@ -75358,18 +76518,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1947 components: - type: Transform @@ -75381,18 +76531,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerChiefEngineerFilled entities: - uid: 10725 @@ -75406,18 +76546,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - uid: 62 @@ -75438,18 +76568,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerEngineerFilledHardsuit entities: - uid: 188 @@ -75490,18 +76610,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 7433 components: - type: Transform @@ -75513,18 +76623,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 8013 components: - type: Transform @@ -75536,18 +76636,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 8651 components: - type: Transform @@ -75559,18 +76649,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerFreezer entities: - uid: 6929 @@ -75584,18 +76664,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerFreezerVaultFilled entities: - uid: 5544 @@ -75616,18 +76686,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerHeadOfSecurityFilled entities: - uid: 7934 @@ -75641,18 +76701,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerMedicalFilled entities: - uid: 2024 @@ -75666,18 +76716,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2028 components: - type: Transform @@ -75689,18 +76729,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2029 components: - type: Transform @@ -75712,18 +76742,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 2030 components: - type: Transform @@ -75735,18 +76755,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerParamedicFilled entities: - uid: 1173 @@ -75767,18 +76777,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerResearchDirectorFilled entities: - uid: 245 @@ -75792,18 +76792,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 1.7459902 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459902 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -75845,18 +76835,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 232 components: - type: Transform @@ -75868,18 +76848,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 243 components: - type: Transform @@ -75891,18 +76861,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 244 components: - type: Transform @@ -75914,18 +76874,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerSecurityFilled entities: - uid: 1923 @@ -75939,18 +76889,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1924 components: - type: Transform @@ -75962,18 +76902,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1925 components: - type: Transform @@ -75985,18 +76915,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 7904 components: - type: Transform @@ -76008,18 +76928,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 7975 components: - type: Transform @@ -76031,18 +76941,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: LockerWardenFilledHardsuit entities: - uid: 4163 @@ -76050,6 +76950,9 @@ entities: - type: Transform pos: -46.5,57.5 parent: 1 + - type: AccessReader + accessListsOriginal: + - - Armory - proto: MachineAnomalyGenerator entities: - uid: 1859 @@ -76169,97 +77072,150 @@ entities: - type: Transform pos: -9.5,0.5 parent: 1 -- proto: MagazinePistol +- proto: MagazineBoxPistol entities: - - uid: 8359 + - uid: 14091 components: - type: Transform - pos: -42.709877,61.49391 - parent: 1 - - uid: 8364 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14092 components: - type: Transform - pos: -42.491127,61.49391 - parent: 1 - - uid: 8365 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifle + entities: + - uid: 14093 components: - type: Transform - pos: -42.631752,61.49391 - parent: 1 - - uid: 8372 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14097 components: - type: Transform - pos: -42.381752,61.49391 - parent: 1 - - uid: 8375 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolHighCapacityPractice + entities: + - uid: 15206 components: - type: Transform - pos: -42.288002,61.49391 + rot: 1.5707963267948966 rad + pos: -28.28951,55.66326 parent: 1 -- proto: MagazinePistolSubMachineGunTopMounted +- proto: MagazinePistolSubMachineGun entities: - - uid: 7938 + - uid: 14076 components: - type: Transform - pos: -60.513123,64.48181 - parent: 1 - - uid: 7939 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14082 components: - type: Transform - pos: -60.513123,64.48181 - parent: 1 -- proto: MagazineRifle + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14089 + components: + - type: Transform + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunEmpty entities: - - uid: 8360 + - uid: 14026 components: - type: Transform - pos: -41.301014,62.60871 - parent: 1 - - uid: 8361 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14036 components: - type: Transform - pos: -41.363514,62.60871 - parent: 1 - - uid: 8362 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14055 components: - type: Transform - pos: -41.44164,62.60871 - parent: 1 - - uid: 8363 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14061 components: - type: Transform - pos: -41.56664,62.60871 - parent: 1 - - uid: 8366 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 7938 components: - type: Transform - pos: -41.301014,62.13996 + pos: -60.513123,64.48181 parent: 1 - - uid: 8367 + - uid: 7939 components: - type: Transform - pos: -41.363514,62.13996 + pos: -60.513123,64.48181 parent: 1 - - uid: 8368 +- proto: MagazineRifle + entities: + - uid: 14030 components: - type: Transform - pos: -41.47289,62.13996 - parent: 1 - - uid: 8369 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14054 components: - type: Transform - pos: -41.582264,62.13996 - parent: 1 - - uid: 9088 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifleEmpty + entities: + - uid: 14025 components: - type: Transform - pos: -41.66978,62.598465 - parent: 1 - - uid: 9195 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14090 components: - type: Transform - pos: -41.685406,62.14534 - parent: 1 + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14094 + components: + - type: Transform + parent: 13984 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MaintenanceFluffSpawner entities: - uid: 257 @@ -76322,11 +77278,6 @@ entities: - type: Transform pos: -34.5,13.5 parent: 1 - - uid: 5791 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1 - uid: 5792 components: - type: Transform @@ -76567,11 +77518,6 @@ entities: - type: Transform pos: 18.5,45.5 parent: 1 - - uid: 7520 - components: - - type: Transform - pos: -29.5,55.5 - parent: 1 - uid: 10374 components: - type: Transform @@ -76674,16 +77620,6 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 1 - - uid: 2060 - components: - - type: Transform - pos: -0.5,42.5 - parent: 1 - - uid: 2789 - components: - - type: Transform - pos: -25.5,55.5 - parent: 1 - uid: 2882 components: - type: Transform @@ -76709,11 +77645,6 @@ entities: - type: Transform pos: -22.5,20.5 parent: 1 - - uid: 5793 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1 - uid: 10373 components: - type: Transform @@ -76764,16 +77695,6 @@ entities: - type: Transform pos: 9.5,-16.5 parent: 1 - - uid: 15842 - components: - - type: Transform - pos: -25.5,53.5 - parent: 1 - - uid: 15843 - components: - - type: Transform - pos: -29.5,54.5 - parent: 1 - uid: 15911 components: - type: Transform @@ -76789,6 +77710,91 @@ entities: - type: Transform pos: 23.5,42.5 parent: 1 +- proto: Mannequin + entities: + - uid: 13970 + components: + - type: Transform + pos: -42.5,67.5 + parent: 1 + - type: UserInterface + actors: + enum.StrippingUiKey.Key: + - invalid + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 8370 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13985 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13948 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14031 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14032 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13947 + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: ActiveUserInterface + - uid: 14029 + components: + - type: Transform + pos: -43.5,67.5 + parent: 1 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 8368 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13945 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 8376 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 8373 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13982 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: 13946 + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - proto: MaterialCloth entities: - uid: 7577 @@ -76810,6 +77816,25 @@ entities: - type: Transform pos: 19.58975,42.76493 parent: 1 +- proto: MechFigurineSpawner50 + entities: + - uid: 3516 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 5546 + components: + - type: Transform + pos: -52.5,27.5 + parent: 1 +- proto: MedicalScanner + entities: + - uid: 14142 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 - proto: MedicalTechFab entities: - uid: 2066 @@ -76845,13 +77870,6 @@ entities: - type: Transform pos: 6.512584,22.800108 parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 7518 - components: - - type: Transform - pos: -25.498947,54.62378 - parent: 1 - proto: MedkitFilled entities: - uid: 1989 @@ -76864,6 +77882,11 @@ entities: - type: Transform pos: 6.528209,23.581358 parent: 1 + - uid: 7213 + components: + - type: Transform + pos: -55.615158,72.67573 + parent: 1 - uid: 10915 components: - type: Transform @@ -76922,18 +77945,24 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4077 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 4078 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: MonkeyCubeBox entities: - uid: 371 @@ -76941,6 +77970,28 @@ entities: - type: Transform pos: 4.52832,-11.326899 parent: 1 +- proto: MonkeyCubeWrapped + entities: + - uid: 1470 + components: + - type: Transform + pos: -9.318452,20.699589 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -9.005952,20.668339 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -9.021577,20.433964 + parent: 1 + - uid: 3332 + components: + - type: Transform + pos: -9.302827,20.480839 + parent: 1 - proto: MopBucket entities: - uid: 5302 @@ -76979,18 +78030,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1143 components: - type: Transform @@ -77002,18 +78043,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1156 components: - type: Transform @@ -77026,18 +78057,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1157 components: - type: Transform @@ -77050,18 +78071,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1246 components: - type: Transform @@ -77073,18 +78084,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1413 components: - type: Transform @@ -77096,18 +78097,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1614 components: - type: Transform @@ -77119,18 +78110,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1616 components: - type: Transform @@ -77143,18 +78124,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1622 components: - type: Transform @@ -77167,18 +78138,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1829 components: - type: Transform @@ -77190,18 +78151,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: MouseTimedSpawner entities: - uid: 14186 @@ -77231,6 +78182,12 @@ entities: - type: Transform pos: -24.502523,29.558752 parent: 1 + - uid: 14071 + components: + - type: Transform + parent: 14068 + - type: Physics + canCollide: False - proto: NitrogenCanister entities: - uid: 333 @@ -77300,6 +78257,21 @@ entities: - type: Transform pos: -77.535675,42.554688 parent: 1 +- proto: NitrousOxideTankFilled + entities: + - uid: 15347 + components: + - type: Transform + pos: 4.4496255,42.72574 + parent: 1 + - type: GasTank + toggleActionEntity: 15348 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15348 - proto: NTDefaultCircuitBoard entities: - uid: 13806 @@ -77365,6 +78337,11 @@ entities: parent: 1 - proto: OperatingTable entities: + - uid: 2060 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1 - uid: 12771 components: - type: Transform @@ -77393,11 +78370,6 @@ entities: parent: 1 - proto: OrganHumanHeart entities: - - uid: 5800 - components: - - type: Transform - pos: -9.314642,21.506338 - parent: 1 - uid: 9241 components: - type: Transform @@ -77520,6 +78492,8 @@ entities: - type: Transform pos: 3.5,53.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PaintingEmpty entities: - uid: 6327 @@ -77527,6 +78501,8 @@ entities: - type: Transform pos: 2.5,53.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PaintingSkeletonBoof entities: - uid: 6328 @@ -77534,6 +78510,8 @@ entities: - type: Transform pos: 4.5,53.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Paper entities: - uid: 304 @@ -77575,6 +78553,12 @@ entities: 101.3kPa filter co2/n20 + - uid: 2791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.873243,52.496162 + parent: 1 - uid: 4221 components: - type: Transform @@ -77665,6 +78649,12 @@ entities: - type: Transform pos: -3.4703722,0.5238515 parent: 1 + - uid: 10339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.951368,52.605537 + parent: 1 - proto: PaperCaptainsThoughts entities: - uid: 10908 @@ -78410,6 +79400,13 @@ entities: - type: Transform pos: -3.5125957,27.501743 parent: 1 +- proto: PillCanisterMutadon + entities: + - uid: 5804 + components: + - type: Transform + pos: -8.255951,20.433964 + parent: 1 - proto: PinpointerNuclear entities: - uid: 10874 @@ -78639,13 +79636,47 @@ entities: - type: Transform pos: -92.400795,47.3703 parent: 1 -- proto: PortableGeneratorJrPacman +- proto: PlushieSpawner50 entities: - - uid: 5552 + - uid: 3513 components: - type: Transform - pos: -25.5,51.5 + pos: -19.5,-13.5 + parent: 1 + - uid: 3514 + components: + - type: Transform + pos: -19.5,-14.5 parent: 1 + - uid: 5032 + components: + - type: Transform + pos: -31.5,25.5 + parent: 1 + - uid: 5046 + components: + - type: Transform + pos: -33.5,28.5 + parent: 1 + - uid: 15942 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 +- proto: PortableFlasher + entities: + - uid: 14087 + components: + - type: Transform + pos: -38.5,63.5 + parent: 1 + - uid: 14088 + components: + - type: Transform + pos: -38.5,66.5 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: - uid: 5553 components: - type: Transform @@ -78661,6 +79692,11 @@ entities: - type: Transform pos: -61.5,33.5 parent: 1 + - uid: 7514 + components: + - type: Transform + pos: -25.5,47.5 + parent: 1 - proto: PortableGeneratorPacman entities: - uid: 1988 @@ -78709,6 +79745,8 @@ entities: - type: Transform pos: -39.5,27.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 5911 @@ -78716,6 +79754,8 @@ entities: - type: Transform pos: -7.5,38.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 319 @@ -78723,6 +79763,8 @@ entities: - type: Transform pos: -4.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 10085 @@ -78730,6 +79772,8 @@ entities: - type: Transform pos: -24.5,25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 10419 @@ -78738,6 +79782,8 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,9.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegit50thAnniversaryVintageReprint entities: - uid: 10080 @@ -78745,6 +79791,8 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 10060 @@ -78752,6 +79800,8 @@ entities: - type: Transform pos: -18.5,28.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 10089 @@ -78759,6 +79809,8 @@ entities: - type: Transform pos: -49.5,16.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 10086 @@ -78766,11 +79818,15 @@ entities: - type: Transform pos: -23.5,39.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 10087 components: - type: Transform pos: -18.5,40.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 4550 @@ -78779,6 +79835,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,36.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitScience entities: - uid: 10081 @@ -78786,6 +79844,8 @@ entities: - type: Transform pos: -12.5,-9.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterMapPacked entities: - uid: 6314 @@ -78793,6 +79853,8 @@ entities: - type: Transform pos: 7.5,53.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PottedPlant1 entities: - uid: 4556 @@ -79004,11 +80066,26 @@ entities: - type: Transform pos: -35.5,49.5 parent: 1 + - uid: 8486 + components: + - type: Transform + pos: -52.5,72.5 + parent: 1 - uid: 13082 components: - type: Transform pos: 6.5,15.5 parent: 1 + - uid: 15387 + components: + - type: Transform + pos: -53.5,77.5 + parent: 1 + - uid: 15408 + components: + - type: Transform + pos: -52.5,75.5 + parent: 1 - proto: PottedPlantRD entities: - uid: 276 @@ -79378,6 +80455,12 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 2790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,52.5 + parent: 1 - uid: 2809 components: - type: Transform @@ -79751,14 +80834,36 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 1 - - uid: 8582 + - uid: 7219 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,63.5 + pos: -46.5,69.5 + parent: 1 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,78.5 + parent: 1 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,71.5 + parent: 1 + - uid: 7360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,72.5 + parent: 1 + - uid: 7366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,76.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8584 components: - type: Transform @@ -80130,6 +81235,23 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 14143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,61.5 + parent: 1 + - uid: 14144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,61.5 + parent: 1 + - uid: 14145 + components: + - type: Transform + pos: -41.5,67.5 + parent: 1 - uid: 14210 components: - type: Transform @@ -80376,6 +81498,30 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 14984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - uid: 14985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 1 + - uid: 15361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 1 + - uid: 15362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,42.5 + parent: 1 - proto: PoweredlightEmpty entities: - uid: 302 @@ -80430,29 +81576,6 @@ entities: - type: Transform pos: 20.5,43.5 parent: 1 - - uid: 15427 - components: - - type: Transform - pos: -41.5,58.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,63.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,68.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredSmallLight entities: - uid: 10 @@ -80761,21 +81884,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8353 - components: - - type: Transform - pos: -51.5,68.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,79.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8597 components: - type: Transform @@ -80792,14 +81900,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,50.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8600 components: - type: Transform @@ -80808,6 +81908,12 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,50.5 + parent: 1 - uid: 8971 components: - type: Transform @@ -81349,11 +82455,6 @@ entities: - type: Transform pos: 12.5,43.5 parent: 1 - - uid: 7519 - components: - - type: Transform - pos: -29.5,55.5 - parent: 1 - uid: 7573 components: - type: Transform @@ -82209,16 +83310,36 @@ entities: - type: Transform pos: 17.5,43.5 parent: 1 + - uid: 5493 + components: + - type: Transform + pos: -51.5,72.5 + parent: 1 - uid: 5547 components: - type: Transform pos: -70.5,53.5 parent: 1 + - uid: 5743 + components: + - type: Transform + pos: -51.5,68.5 + parent: 1 - uid: 5756 components: - type: Transform pos: -57.5,60.5 parent: 1 + - uid: 7184 + components: + - type: Transform + pos: -51.5,71.5 + parent: 1 + - uid: 7351 + components: + - type: Transform + pos: -50.5,69.5 + parent: 1 - uid: 7393 components: - type: Transform @@ -82955,16 +84076,6 @@ entities: - type: Transform pos: -4.5,15.5 parent: 1 - - uid: 8184 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1 - - uid: 8185 - components: - - type: Transform - pos: -7.5,24.5 - parent: 1 - uid: 8186 components: - type: Transform @@ -83550,11 +84661,6 @@ entities: - type: Transform pos: -27.5,50.5 parent: 1 - - uid: 8328 - components: - - type: Transform - pos: -28.5,54.5 - parent: 1 - uid: 8329 components: - type: Transform @@ -83645,6 +84751,11 @@ entities: - type: Transform pos: -33.5,-3.5 parent: 1 + - uid: 8762 + components: + - type: Transform + pos: -55.5,74.5 + parent: 1 - uid: 9000 components: - type: Transform @@ -83705,36 +84816,6 @@ entities: - type: Transform pos: -54.5,79.5 parent: 1 - - uid: 9116 - components: - - type: Transform - pos: -50.5,80.5 - parent: 1 - - uid: 9117 - components: - - type: Transform - pos: -52.5,76.5 - parent: 1 - - uid: 9118 - components: - - type: Transform - pos: -50.5,73.5 - parent: 1 - - uid: 9119 - components: - - type: Transform - pos: -52.5,72.5 - parent: 1 - - uid: 9120 - components: - - type: Transform - pos: -51.5,68.5 - parent: 1 - - uid: 9121 - components: - - type: Transform - pos: -47.5,67.5 - parent: 1 - uid: 9122 components: - type: Transform @@ -83765,16 +84846,6 @@ entities: - type: Transform pos: -54.5,63.5 parent: 1 - - uid: 9130 - components: - - type: Transform - pos: -43.5,62.5 - parent: 1 - - uid: 9131 - components: - - type: Transform - pos: -42.5,64.5 - parent: 1 - uid: 9132 components: - type: Transform @@ -83845,6 +84916,26 @@ entities: - type: Transform pos: 20.5,30.5 parent: 1 + - uid: 14146 + components: + - type: Transform + pos: -41.5,62.5 + parent: 1 + - uid: 14149 + components: + - type: Transform + pos: -43.5,65.5 + parent: 1 + - uid: 14150 + components: + - type: Transform + pos: -39.5,65.5 + parent: 1 + - uid: 14151 + components: + - type: Transform + pos: -39.5,64.5 + parent: 1 - uid: 14370 components: - type: Transform @@ -84075,6 +85166,16 @@ entities: - type: Transform pos: 11.5,-5.5 parent: 1 + - uid: 15025 + components: + - type: Transform + pos: -22.5,50.5 + parent: 1 + - uid: 15026 + components: + - type: Transform + pos: -24.5,50.5 + parent: 1 - uid: 15067 components: - type: Transform @@ -84085,6 +85186,76 @@ entities: - type: Transform pos: -16.5,8.5 parent: 1 + - uid: 15196 + components: + - type: Transform + pos: -25.5,53.5 + parent: 1 + - uid: 15197 + components: + - type: Transform + pos: -26.5,53.5 + parent: 1 + - uid: 15198 + components: + - type: Transform + pos: -29.5,52.5 + parent: 1 + - uid: 15199 + components: + - type: Transform + pos: -27.5,55.5 + parent: 1 + - uid: 15355 + components: + - type: Transform + pos: -0.5,43.5 + parent: 1 + - uid: 15356 + components: + - type: Transform + pos: 1.5,42.5 + parent: 1 + - uid: 15357 + components: + - type: Transform + pos: 3.5,44.5 + parent: 1 + - uid: 15358 + components: + - type: Transform + pos: 4.5,42.5 + parent: 1 + - uid: 15396 + components: + - type: Transform + pos: -54.5,73.5 + parent: 1 + - uid: 15400 + components: + - type: Transform + pos: -50.5,73.5 + parent: 1 + - uid: 15401 + components: + - type: Transform + pos: -53.5,76.5 + parent: 1 + - uid: 15402 + components: + - type: Transform + pos: -51.5,77.5 + parent: 1 + - uid: 15403 + components: + - type: Transform + pos: -55.5,77.5 + parent: 1 + - uid: 15404 + components: + - type: Transform + pos: -50.5,79.5 + parent: 1 - uid: 15782 components: - type: Transform @@ -84183,8 +85354,24 @@ entities: - type: Transform pos: -45.5,60.5 parent: 1 + - uid: 10760 + components: + - type: Transform + pos: -81.5,49.5 + parent: 1 + - uid: 12722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,50.5 + parent: 1 - proto: ReinforcedPlasmaWindow entities: + - uid: 3341 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 - uid: 10827 components: - type: Transform @@ -85281,6 +86468,18 @@ entities: - type: Transform pos: -54.5,62.5 parent: 1 + - uid: 7212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,74.5 + parent: 1 + - uid: 7218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,73.5 + parent: 1 - uid: 7237 components: - type: Transform @@ -85391,75 +86590,11 @@ entities: - type: Transform pos: -57.5,48.5 parent: 1 - - uid: 9033 - components: - - type: Transform - pos: -36.5,63.5 - parent: 1 - - uid: 9034 - components: - - type: Transform - pos: -36.5,66.5 - parent: 1 - - uid: 9035 - components: - - type: Transform - pos: -36.5,64.5 - parent: 1 - - uid: 9036 - components: - - type: Transform - pos: -36.5,65.5 - parent: 1 - - uid: 9037 - components: - - type: Transform - pos: -36.5,62.5 - parent: 1 - - uid: 9039 - components: - - type: Transform - pos: -36.5,68.5 - parent: 1 - - uid: 9040 - components: - - type: Transform - pos: -36.5,69.5 - parent: 1 - - uid: 9041 - components: - - type: Transform - pos: -37.5,69.5 - parent: 1 - - uid: 9042 - components: - - type: Transform - pos: -36.5,61.5 - parent: 1 - - uid: 9043 - components: - - type: Transform - pos: -38.5,69.5 - parent: 1 - - uid: 9044 - components: - - type: Transform - pos: -39.5,69.5 - parent: 1 - - uid: 9045 - components: - - type: Transform - pos: -36.5,67.5 - parent: 1 - - uid: 9046 - components: - - type: Transform - pos: -36.5,60.5 - parent: 1 - - uid: 9047 + - uid: 9026 components: - type: Transform - pos: -36.5,59.5 + rot: 3.141592653589793 rad + pos: -49.5,69.5 parent: 1 - uid: 9190 components: @@ -85684,36 +86819,6 @@ entities: - type: Transform pos: -43.5,-14.5 parent: 1 - - uid: 10753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - - uid: 10756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - - uid: 10757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - - uid: 10760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - - uid: 11508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - uid: 11874 components: - type: Transform @@ -85749,62 +86854,64 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,49.5 parent: 1 - - uid: 14934 + - uid: 15036 components: - type: Transform - pos: -40.5,69.5 + pos: -51.5,30.5 parent: 1 - - uid: 15036 + - uid: 15114 components: - type: Transform - pos: -51.5,30.5 + rot: 3.141592653589793 rad + pos: -27.5,56.5 parent: 1 - uid: 15119 components: - type: Transform pos: -53.5,30.5 parent: 1 - - uid: 15382 + - uid: 15836 components: - type: Transform - pos: -41.5,69.5 + pos: -52.5,30.5 parent: 1 - - uid: 15383 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 6943 components: - type: Transform - pos: -42.5,69.5 + pos: -13.5,-8.5 parent: 1 - - uid: 15384 + - type: DnaServer + serverId: 324 +- proto: RiotLaserShield + entities: + - uid: 13950 components: - type: Transform - pos: -43.5,69.5 + pos: -40.59361,64.60482 parent: 1 - - uid: 15385 + - uid: 13951 components: - type: Transform - pos: -44.5,69.5 + pos: -40.24986,64.60482 parent: 1 - - uid: 15836 +- proto: RiotShield + entities: + - uid: 13986 components: - type: Transform - pos: -52.5,30.5 + pos: -40.605297,63.59568 parent: 1 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 6943 + - uid: 14048 components: - type: Transform - pos: -13.5,-8.5 + pos: -40.464672,63.50193 parent: 1 - - type: DnaServer - serverId: 4 -- proto: RevolverCapGun - entities: - - uid: 2251 + - uid: 14064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.88706434,42.793312 + pos: -40.277172,63.59568 parent: 1 - proto: RipleyHarness entities: @@ -85882,12 +86989,20 @@ entities: - type: Transform pos: -71.56229,45.50187 parent: 1 +- proto: Screwdriver + entities: + - uid: 14069 + components: + - type: Transform + parent: 14068 + - type: Physics + canCollide: False - proto: SecurityTechFab entities: - - uid: 7917 + - uid: 7019 components: - type: Transform - pos: -41.5,65.5 + pos: -43.5,63.5 parent: 1 - type: TechnologyDatabase supportedDisciplines: @@ -85947,6 +87062,15 @@ entities: - type: Transform pos: -65.92235,25.549358 parent: 1 +- proto: SheetGlass1 + entities: + - uid: 14081 + components: + - type: Transform + pos: -43.43736,63.54232 + parent: 1 + - type: Stack + count: 15 - proto: SheetPlasma entities: - uid: 320 @@ -85983,6 +87107,15 @@ entities: - type: Transform pos: -12.23254,-1.4051902 parent: 1 +- proto: SheetPlastic1 + entities: + - uid: 14063 + components: + - type: Transform + pos: -43.421734,63.54232 + parent: 1 + - type: Stack + count: 15 - proto: SheetSteel entities: - uid: 266 @@ -86024,6 +87157,13 @@ entities: parent: 1 - type: Stack count: 10 + - uid: 14080 + components: + - type: Transform + pos: -43.49986,63.54232 + parent: 1 + - type: Stack + count: 15 - proto: SheetSteel10 entities: - uid: 10727 @@ -86058,6 +87198,152 @@ entities: - type: Transform pos: -21.490997,57.551003 parent: 1 +- proto: ShellShotgunImprovised + entities: + - uid: 7078 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7079 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7080 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7081 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7083 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7084 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7086 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7103 + components: + - type: Transform + parent: 7020 + - type: Physics + canCollide: False + - uid: 7105 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7106 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7108 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7114 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7115 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7116 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7117 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 7912 + components: + - type: Transform + parent: 7104 + - type: Physics + canCollide: False + - uid: 13941 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13962 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13963 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13964 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13966 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13967 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13968 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False + - uid: 13969 + components: + - type: Transform + parent: 13940 + - type: Physics + canCollide: False - proto: Shower entities: - uid: 295 @@ -86181,16 +87467,6 @@ entities: - type: Transform pos: -53.5,79.5 parent: 1 - - uid: 7719 - components: - - type: Transform - pos: -49.5,68.5 - parent: 1 - - uid: 7860 - components: - - type: Transform - pos: -49.5,67.5 - parent: 1 - uid: 9955 components: - type: Transform @@ -86238,6 +87514,8 @@ entities: 42: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 615 components: - type: Transform @@ -86248,6 +87526,8 @@ entities: 590: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7077 components: - type: Transform @@ -86262,94 +87542,8 @@ entities: 7076: - - Pressed - Toggle - - uid: 7192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,79.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 7211: - - - Pressed - - Toggle - 7210: - - - Pressed - - Toggle - 7209: - - - Pressed - - Toggle - 7208: - - - Pressed - - Toggle - 7207: - - - Pressed - - Toggle - 7204: - - - Pressed - - Toggle - 7212: - - - Pressed - - Toggle - 7213: - - - Pressed - - Toggle - 7214: - - - Pressed - - Toggle - 7215: - - - Pressed - - Toggle - 7216: - - - Pressed - - Toggle - 7217: - - - Pressed - - Toggle - - uid: 7218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,68.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 7204: - - - Pressed - - Toggle - 7207: - - - Pressed - - Toggle - 7208: - - - Pressed - - Toggle - 7209: - - - Pressed - - Toggle - 7210: - - - Pressed - - Toggle - 7211: - - - Pressed - - Toggle - 7217: - - - Pressed - - Toggle - 7216: - - - Pressed - - Toggle - 7215: - - - Pressed - - Toggle - 7214: - - - Pressed - - Toggle - 7213: - - - Pressed - - Toggle - 7212: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 10701 components: - type: Transform @@ -86366,6 +87560,8 @@ entities: 10700: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11875 components: - type: Transform @@ -86377,16 +87573,15 @@ entities: 9955: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13361 components: - type: Transform pos: -78.5,47.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 13360: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 13367 components: - type: Transform @@ -86397,6 +87592,8 @@ entities: 13366: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13821 components: - type: Transform @@ -86411,6 +87608,8 @@ entities: 13817: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13822 components: - type: Transform @@ -86425,6 +87624,8 @@ entities: 13820: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15185 components: - type: Transform @@ -86469,6 +87670,8 @@ entities: 15176: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 14422 @@ -86481,6 +87684,8 @@ entities: 5369: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 14425 components: - type: Transform @@ -86492,6 +87697,42 @@ entities: 10049: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 15351 + components: + - type: Transform + pos: 0.5,44.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2251: + - - Pressed + - DoorBolt + 2218: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 15394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,73.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 15393: + - - Pressed + - Toggle + 15392: + - - Pressed + - Toggle + 15390: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 325 @@ -86499,6 +87740,8 @@ entities: - type: Transform pos: -0.5,-9.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 324 @@ -86506,6 +87749,8 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 7371 @@ -86513,11 +87758,15 @@ entities: - type: Transform pos: -33.5,39.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7372 components: - type: Transform pos: -37.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 7028 @@ -86525,6 +87774,8 @@ entities: - type: Transform pos: -49.5,41.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 14343 @@ -86532,6 +87783,8 @@ entities: - type: Transform pos: -76.5,57.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 3658 @@ -86539,11 +87792,15 @@ entities: - type: Transform pos: -39.5,2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3659 components: - type: Transform pos: -35.5,2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 1906 @@ -86551,11 +87808,15 @@ entities: - type: Transform pos: -3.5,28.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1907 components: - type: Transform pos: 1.5,27.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 1350 @@ -86563,6 +87824,8 @@ entities: - type: Transform pos: 2.5,35.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 1207 @@ -86570,11 +87833,15 @@ entities: - type: Transform pos: 5.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1321 components: - type: Transform pos: 5.5,32.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDanger entities: - uid: 14836 @@ -86582,12 +87849,16 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14840 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-12.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 14501 @@ -86596,36 +87867,48 @@ entities: rot: 3.141592653589793 rad pos: -59.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14507 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14530 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14537 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14547 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 14517 @@ -86634,47 +87917,63 @@ entities: rot: 3.141592653589793 rad pos: -14.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14518 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14519 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14535 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14540 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14549 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14552 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14556 components: - type: Transform pos: -49.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 14516 @@ -86683,23 +87982,31 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14520 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14521 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14527 components: - type: Transform pos: 12.5,4.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 14500 @@ -86708,42 +88015,56 @@ entities: rot: 3.141592653589793 rad pos: -59.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14510 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14523 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14533 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14545 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14554 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14555 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 14505 @@ -86752,34 +88073,46 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14513 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14514 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14526 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14531 components: - type: Transform pos: -14.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14542 components: - type: Transform pos: -39.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 14506 @@ -86788,28 +88121,38 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14512 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14532 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14534 components: - type: Transform pos: -14.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14546 components: - type: Transform pos: -39.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 14561 @@ -86817,6 +88160,8 @@ entities: - type: Transform pos: -49.5,37.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 14502 @@ -86825,41 +88170,55 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14509 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14515 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14538 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14550 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14557 components: - type: Transform pos: -49.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14558 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 2816 @@ -86867,29 +88226,39 @@ entities: - type: Transform pos: -14.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14503 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14511 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14539 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14551 components: - type: Transform pos: -55.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 14499 @@ -86898,42 +88267,56 @@ entities: rot: 3.141592653589793 rad pos: -59.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14508 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,8.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14522 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14536 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14541 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14548 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14553 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 14544 @@ -86941,6 +88324,8 @@ entities: - type: Transform pos: 23.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 14504 @@ -86949,22 +88334,30 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14524 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14529 components: - type: Transform pos: -14.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14543 components: - type: Transform pos: -39.5,30.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 7394 @@ -86972,6 +88365,8 @@ entities: - type: Transform pos: -14.5,49.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 3397 @@ -86979,6 +88374,8 @@ entities: - type: Transform pos: -24.5,7.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 15097 @@ -86987,12 +88384,16 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 15281 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1361 @@ -87000,11 +88401,15 @@ entities: - type: Transform pos: 5.5,27.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1903 components: - type: Transform pos: 1.5,31.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 1149 @@ -87012,18 +88417,8 @@ entities: - type: Transform pos: 2.5,18.5 parent: 1 -- proto: SignPrison - entities: - - uid: 7205 - components: - - type: Transform - pos: -51.5,70.5 - parent: 1 - - uid: 7331 - components: - - type: Transform - pos: -51.5,77.5 - parent: 1 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 228 @@ -87031,6 +88426,8 @@ entities: - type: Transform pos: -9.5,3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 1596 @@ -87038,55 +88435,55 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 7440 components: - type: Transform pos: 9.5,41.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14837 components: - type: Transform pos: 7.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 14841 components: - type: Transform pos: 8.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 15010 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 15020 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-14.5 parent: 1 -- proto: SignSpace + - type: Fixtures + fixtures: {} +- proto: SignSurgery entities: - - uid: 5493 - components: - - type: Transform - pos: -53.5,78.5 - parent: 1 - - uid: 7329 - components: - - type: Transform - pos: -53.5,69.5 - parent: 1 - - uid: 7330 - components: - - type: Transform - pos: -49.5,69.5 - parent: 1 - - uid: 7333 + - uid: 2070 components: - type: Transform - pos: -49.5,78.5 + rot: 1.5707963267948966 rad + pos: 2.5,41.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 1145 @@ -87094,6 +88491,8 @@ entities: - type: Transform pos: 5.5,20.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 9976 @@ -87768,6 +89167,18 @@ entities: - type: Transform pos: -41.5,42.5 parent: 1 +- proto: SpawnPointBrigmedic + entities: + - uid: 7860 + components: + - type: Transform + pos: -54.5,72.5 + parent: 1 + - uid: 8487 + components: + - type: Transform + pos: -54.5,76.5 + parent: 1 - proto: SpawnPointCaptain entities: - uid: 6508 @@ -87856,6 +89267,23 @@ entities: - type: Transform pos: -70.5,48.5 parent: 1 +- proto: SpawnPointGeneticist + entities: + - uid: 2626 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 15016 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - uid: 15022 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 - proto: SpawnPointHeadOfPersonnel entities: - uid: 11600 @@ -87870,6 +89298,13 @@ entities: - type: Transform pos: -61.5,64.5 parent: 1 +- proto: SpawnPointHeadOfSecurityWeapon + entities: + - uid: 7937 + components: + - type: Transform + pos: -60.5,64.5 + parent: 1 - proto: SpawnPointJanitor entities: - uid: 9723 @@ -88130,6 +89565,18 @@ entities: - type: Transform pos: -64.5,26.5 parent: 1 +- proto: SpawnPointSurgeon + entities: + - uid: 15342 + components: + - type: Transform + pos: 3.5,43.5 + parent: 1 + - uid: 15343 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1 - proto: SpawnPointTechnicalAssistant entities: - uid: 14430 @@ -88154,17 +89601,26 @@ entities: - type: Transform pos: -47.5,61.5 parent: 1 +- proto: SpawnPointWardenWeapon + entities: + - uid: 15434 + components: + - type: Transform + pos: -48.5,59.5 + parent: 1 - proto: SpawnVehicleSecway entities: - - uid: 14675 + - uid: 8760 components: - type: Transform - pos: -45.5,65.5 + rot: 1.5707963267948966 rad + pos: -47.5,65.5 parent: 1 - - uid: 14686 + - uid: 14152 components: - type: Transform - pos: -46.5,65.5 + rot: 3.141592653589793 rad + pos: -48.5,65.5 parent: 1 - proto: SpawnVehicleWheelchair entities: @@ -88218,6 +89674,25 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: StasisBed + entities: + - uid: 5477 + components: + - type: Transform + pos: -54.5,74.5 + parent: 1 +- proto: StasisBedMachineCircuitboard + entities: + - uid: 13802 + components: + - type: Transform + pos: 4.4959683,38.383545 + parent: 1 + - uid: 14952 + components: + - type: Transform + pos: 4.5897183,38.289795 + parent: 1 - proto: StationAiUploadComputer entities: - uid: 11907 @@ -88493,18 +89968,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: SuitStorageEVA entities: - uid: 3552 @@ -88529,31 +89994,20 @@ entities: parent: 1 - proto: SuitStorageEVAPrisoner entities: - - uid: 7186 - components: - - type: Transform - pos: -47.5,68.5 - parent: 1 - - uid: 7391 - components: - - type: Transform - pos: -48.5,68.5 - parent: 1 - uid: 7410 components: - type: Transform pos: -55.5,79.5 parent: 1 + - type: AccessReader + accessListsOriginal: [] - uid: 10735 components: - type: Transform pos: -55.5,80.5 parent: 1 - - uid: 10736 - components: - - type: Transform - pos: -46.5,68.5 - parent: 1 + - type: AccessReader + accessListsOriginal: [] - proto: SuitStorageHOS entities: - uid: 7344 @@ -88570,11 +90024,24 @@ entities: parent: 1 - proto: SuitStorageSec entities: - - uid: 5494 + - uid: 7205 components: - type: Transform - pos: -41.5,64.5 + pos: -47.5,70.5 + parent: 1 + - uid: 7456 + components: + - type: Transform + pos: -48.5,67.5 parent: 1 + - uid: 9052 + components: + - type: Transform + pos: -46.5,68.5 + parent: 1 + - type: AccessReader + accessListsOriginal: + - - Security - proto: SurveillanceCameraCommand entities: - uid: 9597 @@ -88657,6 +90124,12 @@ entities: parent: 1 - type: SurveillanceCamera id: Bridge + - uid: 15203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,55.5 + parent: 1 - proto: SurveillanceCameraEngineering entities: - uid: 2016 @@ -88868,14 +90341,6 @@ entities: parent: 1 - type: SurveillanceCamera id: Main Hall - - uid: 13759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 1 - - type: SurveillanceCamera - id: Chemistry - uid: 13762 components: - type: Transform @@ -88991,6 +90456,17 @@ entities: id: Entrance - proto: SurveillanceCameraSecurity entities: + - uid: 9081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,77.5 + parent: 1 + - uid: 9119 + components: + - type: Transform + pos: -55.5,71.5 + parent: 1 - uid: 9146 components: - type: Transform @@ -89015,14 +90491,6 @@ entities: parent: 1 - type: SurveillanceCamera id: Entrance - - uid: 9149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,60.5 - parent: 1 - - type: SurveillanceCamera - id: Warden's Office - uid: 9150 components: - type: Transform @@ -89038,21 +90506,6 @@ entities: parent: 1 - type: SurveillanceCamera id: Main Hall - - uid: 9152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,63.5 - parent: 1 - - type: SurveillanceCamera - id: Armory - - uid: 9153 - components: - - type: Transform - pos: -51.5,71.5 - parent: 1 - - type: SurveillanceCamera - id: Space Bridge - uid: 9154 components: - type: Transform @@ -89198,6 +90651,11 @@ entities: - data: null ReagentId: Hyronalin Quantity: 15 + - uid: 13759 + components: + - type: Transform + pos: 10.660131,28.576029 + parent: 1 - proto: Table entities: - uid: 64 @@ -89320,6 +90778,11 @@ entities: - type: Transform pos: 25.5,2.5 parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1 - uid: 1619 components: - type: Transform @@ -89548,6 +91011,18 @@ entities: - type: Transform pos: 7.5,-4.5 parent: 1 + - uid: 3335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 1 + - uid: 3336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 1 - uid: 3507 components: - type: Transform @@ -89858,11 +91333,6 @@ entities: - type: Transform pos: -34.5,13.5 parent: 1 - - uid: 5784 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1 - uid: 6329 components: - type: Transform @@ -90043,6 +91513,11 @@ entities: - type: Transform pos: -61.5,89.5 parent: 1 + - uid: 7335 + components: + - type: Transform + pos: -55.5,76.5 + parent: 1 - uid: 7438 components: - type: Transform @@ -90178,6 +91653,11 @@ entities: - type: Transform pos: 18.5,40.5 parent: 1 + - uid: 9120 + components: + - type: Transform + pos: -55.5,72.5 + parent: 1 - uid: 9196 components: - type: Transform @@ -90417,6 +91897,34 @@ entities: - type: Transform pos: 14.5,-7.5 parent: 1 + - uid: 15204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,55.5 + parent: 1 + - uid: 15340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1 + - uid: 15341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,43.5 + parent: 1 + - uid: 15410 + components: + - type: Transform + pos: -50.5,78.5 + parent: 1 + - uid: 15411 + components: + - type: Transform + pos: -50.5,77.5 + parent: 1 - uid: 15547 components: - type: Transform @@ -90466,16 +91974,6 @@ entities: - type: Transform pos: -64.5,41.5 parent: 1 - - uid: 7514 - components: - - type: Transform - pos: -25.5,55.5 - parent: 1 - - uid: 7515 - components: - - type: Transform - pos: -25.5,54.5 - parent: 1 - uid: 10923 components: - type: Transform @@ -90536,30 +92034,52 @@ entities: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 7912 + - uid: 7510 components: - type: Transform - pos: -43.5,61.5 + rot: 1.5707963267948966 rad + pos: -29.5,52.5 parent: 1 - - uid: 7913 + - uid: 7518 components: - type: Transform - pos: -42.5,61.5 + rot: 1.5707963267948966 rad + pos: -28.5,52.5 parent: 1 - - uid: 7914 + - uid: 8363 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,61.5 parent: 1 - - uid: 7915 + - uid: 8364 components: - type: Transform - pos: -41.5,62.5 + rot: -1.5707963267948966 rad + pos: -40.5,61.5 parent: 1 - - uid: 7916 + - uid: 8365 components: - type: Transform - pos: -41.5,63.5 + rot: -1.5707963267948966 rad + pos: -43.5,66.5 + parent: 1 + - uid: 8366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,66.5 + parent: 1 + - uid: 8491 + components: + - type: Transform + pos: -46.5,69.5 + parent: 1 + - uid: 10342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,52.5 parent: 1 - uid: 10857 components: @@ -90576,6 +92096,41 @@ entities: - type: Transform pos: -22.5,53.5 parent: 1 + - uid: 13987 + components: + - type: Transform + pos: -40.5,63.5 + parent: 1 + - uid: 14049 + components: + - type: Transform + pos: -38.5,64.5 + parent: 1 + - uid: 14050 + components: + - type: Transform + pos: -38.5,62.5 + parent: 1 + - uid: 14051 + components: + - type: Transform + pos: -38.5,65.5 + parent: 1 + - uid: 14056 + components: + - type: Transform + pos: -38.5,67.5 + parent: 1 + - uid: 14057 + components: + - type: Transform + pos: -40.5,64.5 + parent: 1 + - uid: 14074 + components: + - type: Transform + pos: -38.5,61.5 + parent: 1 - uid: 14818 components: - type: Transform @@ -90615,6 +92170,16 @@ entities: - type: Transform pos: 17.5,3.5 parent: 1 + - uid: 11801 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 11807 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1 - proto: TableWood entities: - uid: 246 @@ -91143,6 +92708,66 @@ entities: - type: Transform pos: 17.5,52.5 parent: 1 +- proto: TearGasGrenade + entities: + - uid: 8375 + components: + - type: Transform + parent: 8369 + - type: TimerTrigger + delay: 0 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8377 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9035 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9036 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9037 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9039 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9040 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9041 + components: + - type: Transform + parent: 8369 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TegCenter entities: - uid: 10852 @@ -91155,19 +92780,18 @@ entities: powerDisabled: True - proto: TegCirculator entities: - - uid: 10856 + - uid: 10756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,32.5 + pos: -82.5,32.5 parent: 1 - type: PointLight color: '#FF3300FF' - - uid: 10861 + - uid: 10856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,32.5 + rot: -1.5707963267948966 rad + pos: -83.5,32.5 parent: 1 - type: PointLight color: '#FF3300FF' @@ -91278,6 +92902,13 @@ entities: - type: Transform pos: -87.5,29.5 parent: 1 +- proto: TicketMachine + entities: + - uid: 11188 + components: + - type: Transform + pos: -23.5,34.5 + parent: 1 - proto: TintedWindow entities: - uid: 530 @@ -91385,6 +93016,43 @@ entities: rot: 3.141592653589793 rad pos: -3.5,58.5 parent: 1 +- proto: ToolboxElectrical + entities: + - uid: 14068 + components: + - type: Transform + parent: 14065 + - type: Storage + storedItems: + 14069: + position: 1,0 + _rotation: South + 14070: + position: 2,0 + _rotation: South + 14071: + position: 3,0 + _rotation: South + 14072: + position: 0,0 + _rotation: South + 14073: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 14071 + - 14070 + - 14069 + - 14072 + - 14073 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ToolboxElectricalFilled entities: - uid: 5646 @@ -91494,6 +93162,20 @@ entities: - type: Transform pos: -27.13808,16.704542 parent: 1 +- proto: ToyFigurineCaptain + entities: + - uid: 15195 + components: + - type: Transform + pos: -29.53643,52.706413 + parent: 1 +- proto: ToyFigurineSkeleton + entities: + - uid: 15121 + components: + - type: Transform + pos: -4.60635,49.548958 + parent: 1 - proto: ToyFireRipley entities: - uid: 3202 @@ -91515,40 +93197,6 @@ entities: - type: Transform pos: -22.170961,37.297226 parent: 1 -- proto: ToySkeleton - entities: - - uid: 15121 - components: - - type: Transform - pos: -4.60635,49.548958 - parent: 1 -- proto: ToySpawner - entities: - - uid: 3513 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 1 - - uid: 3514 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 1 - - uid: 5032 - components: - - type: Transform - pos: -31.5,25.5 - parent: 1 - - uid: 5046 - components: - - type: Transform - pos: -33.5,28.5 - parent: 1 - - uid: 15942 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 1 - proto: TrashBananaPeel entities: - uid: 1415 @@ -91606,18 +93254,6 @@ entities: - type: Transform pos: -42.237038,28.413582 parent: 1 -- proto: TrashBananaPeelExplosive - entities: - - uid: 2791 - components: - - type: Transform - pos: -26.575481,55.467476 - parent: 1 - - uid: 15837 - components: - - type: Transform - pos: -29.528606,53.2956 - parent: 1 - proto: trayScanner entities: - uid: 15559 @@ -91639,6 +93275,18 @@ entities: - type: Transform pos: -70.39617,45.607796 parent: 1 +- proto: Truncheon + entities: + - uid: 14119 + components: + - type: Transform + pos: -40.626095,63.93596 + parent: 1 + - uid: 14120 + components: + - type: Transform + pos: -40.438595,63.90471 + parent: 1 - proto: TwoWayLever entities: - uid: 523 @@ -92279,6 +93927,11 @@ entities: - type: Transform pos: -10.5,46.5 parent: 1 + - uid: 7436 + components: + - type: Transform + pos: -46.5,70.5 + parent: 1 - proto: VendingMachineTheater entities: - uid: 8968 @@ -92312,6 +93965,16 @@ entities: - type: Transform pos: 17.5,29.5 parent: 1 + - type: Fixtures + fixtures: {} + - uid: 8790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,70.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 4217 @@ -92338,6 +94001,8 @@ entities: - type: Transform pos: -43.5,40.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 12 @@ -92628,11 +94293,6 @@ entities: - type: Transform pos: -52.5,48.5 parent: 1 - - uid: 1998 - components: - - type: Transform - pos: -52.5,50.5 - parent: 1 - uid: 1999 components: - type: Transform @@ -93112,12 +94772,6 @@ entities: - type: Transform pos: -94.5,10.5 parent: 1 - - uid: 5472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,69.5 - parent: 1 - uid: 5473 components: - type: Transform @@ -93134,11 +94788,23 @@ entities: - type: Transform pos: -64.5,51.5 parent: 1 + - uid: 5481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,73.5 + parent: 1 - uid: 5686 components: - type: Transform pos: -56.5,79.5 parent: 1 + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,77.5 + parent: 1 - uid: 5750 components: - type: Transform @@ -93669,12 +95335,7 @@ entities: - uid: 7008 components: - type: Transform - pos: -42.5,66.5 - parent: 1 - - uid: 7009 - components: - - type: Transform - pos: -43.5,66.5 + pos: -39.5,69.5 parent: 1 - uid: 7011 components: @@ -93701,16 +95362,6 @@ entities: - type: Transform pos: -40.5,60.5 parent: 1 - - uid: 7019 - components: - - type: Transform - pos: -39.5,61.5 - parent: 1 - - uid: 7020 - components: - - type: Transform - pos: -39.5,62.5 - parent: 1 - uid: 7021 components: - type: Transform @@ -93741,71 +95392,11 @@ entities: - type: Transform pos: -41.5,60.5 parent: 1 - - uid: 7078 - components: - - type: Transform - pos: -39.5,63.5 - parent: 1 - - uid: 7079 - components: - - type: Transform - pos: -39.5,64.5 - parent: 1 - - uid: 7080 - components: - - type: Transform - pos: -40.5,62.5 - parent: 1 - - uid: 7081 - components: - - type: Transform - pos: -40.5,63.5 - parent: 1 - uid: 7082 components: - type: Transform pos: -42.5,60.5 parent: 1 - - uid: 7083 - components: - - type: Transform - pos: -41.5,66.5 - parent: 1 - - uid: 7084 - components: - - type: Transform - pos: -41.5,67.5 - parent: 1 - - uid: 7086 - components: - - type: Transform - pos: -40.5,67.5 - parent: 1 - - uid: 7103 - components: - - type: Transform - pos: -40.5,64.5 - parent: 1 - - uid: 7104 - components: - - type: Transform - pos: -40.5,65.5 - parent: 1 - - uid: 7105 - components: - - type: Transform - pos: -40.5,66.5 - parent: 1 - - uid: 7106 - components: - - type: Transform - pos: -42.5,67.5 - parent: 1 - - uid: 7108 - components: - - type: Transform - pos: -43.5,67.5 - parent: 1 - uid: 7109 components: - type: Transform @@ -93826,26 +95417,6 @@ entities: - type: Transform pos: -49.5,60.5 parent: 1 - - uid: 7114 - components: - - type: Transform - pos: -39.5,65.5 - parent: 1 - - uid: 7115 - components: - - type: Transform - pos: -39.5,66.5 - parent: 1 - - uid: 7116 - components: - - type: Transform - pos: -39.5,67.5 - parent: 1 - - uid: 7117 - components: - - type: Transform - pos: -40.5,61.5 - parent: 1 - uid: 7118 components: - type: Transform @@ -93957,23 +95528,11 @@ entities: rot: 3.141592653589793 rad pos: -53.5,70.5 parent: 1 - - uid: 7182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,69.5 - parent: 1 - uid: 7183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,69.5 - parent: 1 - - uid: 7184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,69.5 + rot: 1.5707963267948966 rad + pos: -49.5,72.5 parent: 1 - uid: 7185 components: @@ -93985,48 +95544,44 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,77.5 + pos: -56.5,70.5 parent: 1 - - uid: 7191 + - uid: 7197 components: - type: Transform - pos: -51.5,66.5 + rot: 3.141592653589793 rad + pos: -53.5,68.5 parent: 1 - - uid: 7194 + - uid: 7199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,70.5 + pos: -48.5,71.5 parent: 1 - - uid: 7195 + - uid: 7200 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,70.5 + pos: -53.5,67.5 parent: 1 - - uid: 7197 + - uid: 7201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 + pos: -46.5,71.5 parent: 1 - - uid: 7198 + - uid: 7203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,77.5 + pos: -47.5,71.5 parent: 1 - - uid: 7200 + - uid: 7204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,67.5 + pos: -49.5,71.5 parent: 1 - - uid: 7201 + - uid: 7206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,77.5 + pos: -45.5,70.5 parent: 1 - uid: 7224 components: @@ -94053,11 +95608,6 @@ entities: - type: Transform pos: -49.5,79.5 parent: 1 - - uid: 7233 - components: - - type: Transform - pos: -49.5,78.5 - parent: 1 - uid: 7234 components: - type: Transform @@ -94233,11 +95783,6 @@ entities: - type: Transform pos: -62.5,87.5 parent: 1 - - uid: 7314 - components: - - type: Transform - pos: -51.5,78.5 - parent: 1 - uid: 7317 components: - type: Transform @@ -94258,20 +95803,21 @@ entities: - type: Transform pos: -55.5,78.5 parent: 1 - - uid: 7338 + - uid: 7362 components: - type: Transform - pos: -54.5,78.5 + pos: -45.5,67.5 parent: 1 - - uid: 7339 + - uid: 7419 components: - type: Transform - pos: -53.5,78.5 + pos: -55.5,70.5 parent: 1 - - uid: 7362 + - uid: 7421 components: - type: Transform - pos: -45.5,67.5 + rot: 3.141592653589793 rad + pos: -55.5,75.5 parent: 1 - uid: 7646 components: @@ -94288,10 +95834,26 @@ entities: - type: Transform pos: -61.5,90.5 parent: 1 - - uid: 7898 + - uid: 7913 components: - type: Transform - pos: -51.5,69.5 + pos: -43.5,69.5 + parent: 1 + - uid: 7914 + components: + - type: Transform + pos: -42.5,69.5 + parent: 1 + - uid: 7915 + components: + - type: Transform + pos: -36.5,59.5 + parent: 1 + - uid: 7916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,68.5 parent: 1 - uid: 7973 components: @@ -94344,17 +95906,109 @@ entities: rot: 3.141592653589793 rad pos: -112.5,6.5 parent: 1 + - uid: 8358 + components: + - type: Transform + pos: -36.5,64.5 + parent: 1 + - uid: 8359 + components: + - type: Transform + pos: -36.5,61.5 + parent: 1 + - uid: 8360 + components: + - type: Transform + pos: -36.5,63.5 + parent: 1 + - uid: 8361 + components: + - type: Transform + pos: -36.5,60.5 + parent: 1 + - uid: 8367 + components: + - type: Transform + pos: -41.5,69.5 + parent: 1 + - uid: 8582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,63.5 + parent: 1 + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,61.5 + parent: 1 + - uid: 8970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,77.5 + parent: 1 + - uid: 9023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,72.5 + parent: 1 - uid: 9025 components: - type: Transform rot: 3.141592653589793 rad pos: -113.5,8.5 parent: 1 + - uid: 9033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,60.5 + parent: 1 + - uid: 9034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,59.5 + parent: 1 + - uid: 9049 + components: + - type: Transform + pos: -49.5,70.5 + parent: 1 + - uid: 9053 + components: + - type: Transform + pos: -45.5,71.5 + parent: 1 + - uid: 9054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,75.5 + parent: 1 - uid: 9055 components: - type: Transform pos: -94.5,6.5 parent: 1 + - uid: 9085 + components: + - type: Transform + pos: -49.5,67.5 + parent: 1 + - uid: 9152 + components: + - type: Transform + pos: -40.5,69.5 + parent: 1 + - uid: 9153 + components: + - type: Transform + pos: -54.5,70.5 + parent: 1 - uid: 9307 components: - type: Transform @@ -94608,6 +96262,12 @@ entities: rot: -1.5707963267948966 rad pos: -84.5,49.5 parent: 1 + - uid: 10736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,74.5 + parent: 1 - uid: 10750 components: - type: Transform @@ -94620,18 +96280,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,51.5 parent: 1 - - uid: 10752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,51.5 - parent: 1 - - uid: 10754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,51.5 - parent: 1 - uid: 10755 components: - type: Transform @@ -94884,6 +96532,11 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,44.5 parent: 1 + - uid: 11509 + components: + - type: Transform + pos: -84.5,52.5 + parent: 1 - uid: 11900 components: - type: Transform @@ -94908,6 +96561,162 @@ entities: rot: 3.141592653589793 rad pos: -110.5,7.5 parent: 1 + - uid: 13360 + components: + - type: Transform + pos: -83.5,52.5 + parent: 1 + - uid: 13468 + components: + - type: Transform + pos: -44.5,69.5 + parent: 1 + - uid: 13546 + components: + - type: Transform + pos: -36.5,65.5 + parent: 1 + - uid: 13568 + components: + - type: Transform + pos: -36.5,62.5 + parent: 1 + - uid: 13673 + components: + - type: Transform + pos: -36.5,67.5 + parent: 1 + - uid: 13674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,60.5 + parent: 1 + - uid: 13871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,64.5 + parent: 1 + - uid: 13898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,59.5 + parent: 1 + - uid: 13909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,62.5 + parent: 1 + - uid: 13961 + components: + - type: Transform + pos: -36.5,66.5 + parent: 1 + - uid: 13965 + components: + - type: Transform + pos: -36.5,68.5 + parent: 1 + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,68.5 + parent: 1 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,68.5 + parent: 1 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,65.5 + parent: 1 + - uid: 13975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,66.5 + parent: 1 + - uid: 13976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,67.5 + parent: 1 + - uid: 13977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,68.5 + parent: 1 + - uid: 13978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,68.5 + parent: 1 + - uid: 13979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,68.5 + parent: 1 + - uid: 13980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,68.5 + parent: 1 + - uid: 13981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,68.5 + parent: 1 + - uid: 14058 + components: + - type: Transform + pos: -36.5,69.5 + parent: 1 + - uid: 14059 + components: + - type: Transform + pos: -38.5,69.5 + parent: 1 + - uid: 14060 + components: + - type: Transform + pos: -37.5,69.5 + parent: 1 + - uid: 15367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,72.5 + parent: 1 + - uid: 15384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,66.5 + parent: 1 + - uid: 15405 + components: + - type: Transform + pos: -82.5,52.5 + parent: 1 + - uid: 15406 + components: + - type: Transform + pos: -80.5,52.5 + parent: 1 - proto: WallReinforcedRust entities: - uid: 522 @@ -94946,6 +96755,41 @@ entities: rot: 3.141592653589793 rad pos: -97.5,5.5 parent: 1 + - uid: 7186 + components: + - type: Transform + pos: -56.5,71.5 + parent: 1 + - uid: 7233 + components: + - type: Transform + pos: -56.5,76.5 + parent: 1 + - uid: 7338 + components: + - type: Transform + pos: -54.5,78.5 + parent: 1 + - uid: 7339 + components: + - type: Transform + pos: -53.5,78.5 + parent: 1 + - uid: 7412 + components: + - type: Transform + pos: -53.5,75.5 + parent: 1 + - uid: 7416 + components: + - type: Transform + pos: -54.5,75.5 + parent: 1 + - uid: 7478 + components: + - type: Transform + pos: -53.5,73.5 + parent: 1 - uid: 8022 components: - type: Transform @@ -94958,6 +96802,11 @@ entities: rot: 3.141592653589793 rad pos: -88.5,8.5 parent: 1 + - uid: 9117 + components: + - type: Transform + pos: -49.5,78.5 + parent: 1 - uid: 9335 components: - type: Transform @@ -96692,12 +98541,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 1 - - uid: 1468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,20.5 - parent: 1 - uid: 1471 components: - type: Transform @@ -96710,30 +98553,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,19.5 parent: 1 - - uid: 1475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - - uid: 1477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 1 - - uid: 1480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 1 - uid: 1482 components: - type: Transform @@ -97539,6 +99364,11 @@ entities: - type: Transform pos: -42.5,7.5 parent: 1 + - uid: 3340 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 - uid: 3361 components: - type: Transform @@ -98832,11 +100662,6 @@ entities: - type: Transform pos: -26.5,56.5 parent: 1 - - uid: 5222 - components: - - type: Transform - pos: -27.5,56.5 - parent: 1 - uid: 5224 components: - type: Transform @@ -100609,10 +102434,17 @@ entities: - type: Transform pos: -28.5,51.5 parent: 1 - - uid: 7408 + - uid: 7483 components: - type: Transform - pos: -25.5,52.5 + rot: 3.141592653589793 rad + pos: -26.5,49.5 + parent: 1 + - uid: 7509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,48.5 parent: 1 - uid: 7517 components: @@ -101999,12 +103831,6 @@ entities: - type: Transform pos: 12.5,14.5 parent: 1 - - uid: 1338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 1 - uid: 1346 components: - type: Transform @@ -102155,24 +103981,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,16.5 parent: 1 - - uid: 1479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - uid: 1481 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,20.5 parent: 1 - - uid: 1483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - uid: 1486 components: - type: Transform @@ -102292,11 +104106,6 @@ entities: - type: Transform pos: 2.5,41.5 parent: 1 - - uid: 1891 - components: - - type: Transform - pos: 3.5,41.5 - parent: 1 - uid: 1892 components: - type: Transform @@ -102614,6 +104423,11 @@ entities: - type: Transform pos: -39.5,16.5 parent: 1 + - uid: 3337 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 - uid: 3420 components: - type: Transform @@ -103687,6 +105501,11 @@ entities: rot: 3.141592653589793 rad pos: -69.5,7.5 parent: 1 + - uid: 8853 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 - uid: 9160 components: - type: Transform @@ -104118,23 +105937,25 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 15095 components: - type: Transform pos: -44.5,2.5 parent: 1 +- proto: WardrobeGeneticsFilled + entities: + - uid: 5803 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 + - uid: 8185 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 - proto: WardrobeGreenFilled entities: - uid: 14456 @@ -104148,18 +105969,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 14457 components: - type: Transform @@ -104171,18 +105982,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: WardrobeGreyFilled entities: - uid: 5934 @@ -104196,18 +105997,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5935 components: - type: Transform @@ -104219,18 +106010,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5936 components: - type: Transform @@ -104242,18 +106023,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 5937 components: - type: Transform @@ -104265,18 +106036,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: WardrobePrisonFilled entities: - uid: 1913 @@ -104290,18 +106051,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1917 components: - type: Transform @@ -104313,18 +106064,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 1919 components: - type: Transform @@ -104336,18 +106077,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 7350 components: - type: Transform @@ -104359,18 +106090,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - uid: 7359 components: - type: Transform @@ -104382,18 +106103,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 3.3523011 + Nitrogen: 12.611038 - proto: WarningCO2 entities: - uid: 13931 @@ -104402,6 +106113,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,38.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 13935 @@ -104410,6 +106123,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,36.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 13932 @@ -104418,6 +106133,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,40.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 13934 @@ -104426,6 +106143,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 13933 @@ -104434,6 +106153,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,42.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 13930 @@ -104442,6 +106163,8 @@ entities: rot: 1.5707963267948966 rad pos: -87.5,44.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarpPoint entities: - uid: 13783 @@ -104458,29 +106181,6 @@ entities: parent: 1 - type: WarpPoint location: chapel -- proto: WarpPointBombing - entities: - - uid: 7647 - components: - - type: Transform - pos: 3.5,25.5 - parent: 1 - - type: WarpPoint - location: Med - - uid: 9022 - components: - - type: Transform - pos: -42.5,63.5 - parent: 1 - - type: WarpPoint - location: Armory - - uid: 9027 - components: - - type: Transform - pos: 2.5,38.5 - parent: 1 - - type: WarpPoint - location: Cloning - proto: WashingMachine entities: - uid: 1611 @@ -104538,6 +106238,11 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 - uid: 3088 components: - type: Transform @@ -104548,6 +106253,11 @@ entities: - type: Transform pos: -60.5,61.5 parent: 1 + - uid: 15409 + components: + - type: Transform + pos: -53.5,76.5 + parent: 1 - proto: WaterTank entities: - uid: 10388 @@ -104592,11 +106302,6 @@ entities: - type: Transform pos: -61.5,86.5 parent: 1 - - uid: 5787 - components: - - type: Transform - pos: -7.5,21.5 - parent: 1 - uid: 10365 components: - type: Transform @@ -104669,6 +106374,12 @@ entities: - type: Transform pos: -1.5,10.5 parent: 1 + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,61.5 + parent: 1 - proto: WeaponDisabler entities: - uid: 7954 @@ -104691,6 +106402,39 @@ entities: - type: Transform pos: -61.372692,50.68534 parent: 1 + - uid: 13017 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13018 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13384 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13385 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15414 + components: + - type: Transform + pos: -50.55892,78.64145 + parent: 1 - proto: WeaponEnergyTurretAI entities: - uid: 14436 @@ -104720,32 +106464,36 @@ entities: parent: 1 - proto: WeaponLaserCarbine entities: - - uid: 8357 + - uid: 13474 components: - type: Transform - pos: -43.394764,61.749336 + pos: -41.512417,61.692116 parent: 1 - - uid: 8358 + - uid: 14077 components: - type: Transform - pos: -43.31664,61.63996 + pos: -41.449917,61.567116 parent: 1 -- proto: WeaponPistolMk58 +- proto: WeaponMakeshiftLaser entities: - - uid: 7955 + - uid: 13936 components: - type: Transform - pos: -48.53143,59.640373 + rot: 1.5707963267948966 rad + pos: -40.606167,61.598366 parent: 1 - - uid: 8373 +- proto: WeaponPistolMk58 + entities: + - uid: 7955 components: - type: Transform - pos: -42.53539,61.624336 + pos: -48.53143,59.640373 parent: 1 - - uid: 8374 + - uid: 15205 components: - type: Transform - pos: -42.426014,61.54621 + rot: 1.5707963267948966 rad + pos: -28.617636,55.647636 parent: 1 - proto: WeaponRevolverPython entities: @@ -104756,46 +106504,79 @@ entities: parent: 1 - proto: WeaponRifleLecter entities: - - uid: 8354 + - uid: 14108 components: - type: Transform - pos: -41.519764,63.624336 + pos: -38.456287,64.589935 parent: 1 - - uid: 8355 + - uid: 14117 components: - type: Transform - pos: -41.488514,63.38996 + pos: -38.61047,64.764084 parent: 1 - - uid: 8356 +- proto: WeaponShotgunEnforcer + entities: + - uid: 13953 components: - type: Transform - pos: -41.488514,63.13996 - parent: 1 -- proto: WeaponShotgunKammerer + parent: 13971 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13956 + components: + - type: Transform + parent: 13971 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunImprovisedLoaded entities: - - uid: 8370 + - uid: 14033 components: - type: Transform - pos: -41.69164,61.686836 + rot: 1.5707963267948966 rad + pos: -42.47435,66.61062 parent: 1 - - uid: 8371 + - uid: 14034 components: - type: Transform - pos: -41.62914,61.561836 + rot: 1.5707963267948966 rad + pos: -42.614975,66.61062 parent: 1 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7937 + - uid: 14035 components: - type: Transform - pos: -60.450623,64.62244 + rot: 1.5707963267948966 rad + pos: -42.333725,66.61062 parent: 1 -- proto: WeaponTurretSyndicateBroken +- proto: WeaponShotgunSawnEmpty entities: - - uid: 15844 + - uid: 13954 components: - type: Transform - pos: -27.5,54.5 + parent: 13971 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13955 + components: + - type: Transform + parent: 13971 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 14121 + components: + - type: Transform + pos: -38.532345,65.514084 + parent: 1 + - uid: 14122 + components: + - type: Transform + pos: -38.45422,65.40471 parent: 1 - proto: WelderIndustrialAdvanced entities: @@ -104841,11 +106622,6 @@ entities: - type: Transform pos: -23.5,20.5 parent: 1 - - uid: 5786 - components: - - type: Transform - pos: -7.5,20.5 - parent: 1 - uid: 10364 components: - type: Transform @@ -105120,6 +106896,36 @@ entities: - type: Transform pos: -47.5,63.5 parent: 1 + - uid: 14085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,62.5 + parent: 1 + - uid: 14086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,61.5 + parent: 1 + - uid: 14101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,67.5 + parent: 1 + - uid: 14102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,64.5 + parent: 1 + - uid: 14106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,65.5 + parent: 1 - proto: WindoorSecureCargoLocked entities: - uid: 3625 @@ -105229,6 +107035,18 @@ entities: - type: Transform pos: 12.5,24.5 parent: 1 + - uid: 2218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,42.5 + parent: 1 + - uid: 2251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1 - uid: 2342 components: - type: Transform @@ -105833,12 +107651,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,8.5 parent: 1 - - uid: 2790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,55.5 - parent: 1 - uid: 2801 components: - type: Transform @@ -105897,6 +107709,12 @@ entities: rot: 3.141592653589793 rad pos: -19.5,34.5 parent: 1 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,66.5 + parent: 1 - uid: 13368 components: - type: Transform @@ -105937,6 +107755,41 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,31.5 parent: 1 + - uid: 14027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,64.5 + parent: 1 + - uid: 14028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,63.5 + parent: 1 + - uid: 14079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,62.5 + parent: 1 + - uid: 14103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,66.5 + parent: 1 + - uid: 14104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,65.5 + parent: 1 + - uid: 14105 + components: + - type: Transform + pos: -38.5,64.5 + parent: 1 - uid: 15126 components: - type: Transform @@ -105964,17 +107817,14 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 1 - - uid: 15839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,54.5 - parent: 1 - - uid: 15909 +- proto: Wirecutter + entities: + - uid: 14070 components: - type: Transform - pos: -25.5,54.5 - parent: 1 + parent: 14068 + - type: Physics + canCollide: False - proto: WoodDoor entities: - uid: 9321 @@ -106004,4 +107854,40 @@ entities: - type: Transform pos: -24.486898,29.543127 parent: 1 + - uid: 14072 + components: + - type: Transform + parent: 14068 + - type: Physics + canCollide: False +- proto: Zipties + entities: + - uid: 13957 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13958 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13959 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13960 + components: + - type: Transform + parent: 13997 + - type: Physics + canCollide: False + - type: InsideEntityStorage ... diff --git a/Resources/Maps/_Wega/wegacerestation.yml b/Resources/Maps/_Wega/wegacerestation.yml index b0097e3fdc4..3e952b64954 100644 --- a/Resources/Maps/_Wega/wegacerestation.yml +++ b/Resources/Maps/_Wega/wegacerestation.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 268.0.0 - forkId: wega - forkVersion: 951e65183889b98eb49c2585cc09ffbbf19a18c1 - time: 12/08/2025 16:52:47 - entityCount: 53059 + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 03/01/2026 13:02:41 + entityCount: 53068 maps: - 1 grids: @@ -284,7 +284,7 @@ entities: version: 7 -6,4: ind: -6,4 - tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAF0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -6,5: ind: -6,5 @@ -14369,7 +14369,7 @@ entities: 1: 62532 -1,-12: 1: 34959 - 4: 4096 + 3: 4096 0,-11: 1: 13119 0,-10: @@ -14473,7 +14473,7 @@ entities: 1: 32704 -5,-12: 1: 15 - 4: 49152 + 3: 49152 -4,-16: 1: 17 0: 13056 @@ -14488,8 +14488,8 @@ entities: 1: 37120 -4,-12: 1: 15 - 4: 4096 - 5: 49152 + 3: 4096 + 4: 49152 -3,-15: 0: 2064 1: 8192 @@ -14499,8 +14499,8 @@ entities: 1: 65472 -3,-12: 1: 15 - 5: 4096 - 4: 49152 + 4: 4096 + 3: 49152 -2,-15: 0: 768 -2,-14: @@ -14509,7 +14509,7 @@ entities: 1: 64976 -2,-12: 1: 13 - 4: 53248 + 3: 53248 -2,-16: 1: 8 -2,-17: @@ -17301,12 +17301,12 @@ entities: -17,-5: 1: 49147 -24,-4: - 3: 3 + 5: 3 1: 34816 -24,-5: - 3: 13107 + 5: 13107 -25,-4: - 3: 14 + 5: 14 -24,-2: 1: 1 0: 48 @@ -17344,14 +17344,14 @@ entities: 1: 29576 -24,-6: 1: 127 - 3: 4096 + 5: 4096 -25,-7: 1: 53248 -25,-6: 1: 2271 - 3: 57344 + 5: 57344 -25,-5: - 3: 61166 + 5: 61166 -24,-8: 1: 12 -24,-9: @@ -18469,11 +18469,11 @@ entities: -2,-9: 1: 61663 -4,-11: - 4: 17 + 3: 17 1: 61440 - 5: 204 - -5,-11: 4: 204 + -5,-11: + 3: 204 1: 61440 -4,-10: 1: 65535 @@ -18482,18 +18482,18 @@ entities: -5,-9: 1: 65535 -3,-11: - 5: 17 + 4: 17 1: 61440 - 4: 204 + 3: 204 -3,-10: 1: 65535 -2,-11: - 4: 221 + 3: 221 1: 53248 -2,-10: 1: 56797 -1,-11: - 4: 17 + 3: 17 1: 28672 -1,-10: 1: 30583 @@ -18514,17 +18514,17 @@ entities: 1: 51711 -6,-9: 1: 52428 - 8: 273 + 7: 273 -7,-11: 1: 255 -7,-10: - 7: 3276 - -7,-9: 8: 3276 + -7,-9: + 7: 3276 -6,-11: 1: 49153 -6,-10: - 7: 273 + 8: 273 1: 52428 uniqueMixes: - volume: 2500 @@ -18540,10 +18540,6 @@ entities: moles: Oxygen: 27.225372 Nitrogen: 102.419266 - - volume: 2500 - temperature: 293.15 - moles: - Nitrogen: 103.92799 - volume: 2500 temperature: 293.15 moles: {} @@ -18554,16 +18550,20 @@ entities: - volume: 2500 temperature: 293.15 moles: - Nitrogen: 6666.982 + Nitrogen: 103.92799 - volume: 2500 temperature: 293.15 moles: - Oxygen: 1400.0662 - Nitrogen: 5266.916 + Nitrogen: 6666.982 - volume: 2500 temperature: 293.15 moles: Oxygen: 6666.982 + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 1400.0662 + Nitrogen: 5266.916 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -18573,6 +18573,7 @@ entities: - type: FTLDestination - type: NightLightning - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 17230 components: - type: MetaData @@ -19525,6 +19526,7 @@ entities: - type: ProtectedGrid baseIndices: {} - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 30192 components: - type: MetaData @@ -19609,6 +19611,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 50117 components: - type: MetaData @@ -19693,6 +19696,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AccessConfigurator entities: - uid: 43530 @@ -19730,6 +19734,17 @@ entities: rot: 1.5707963267948966 rad pos: -11.625732,-5.3825684 parent: 17417 +- proto: ActionToggleLight + entities: + - uid: 53065 + mapInit: true + paused: true + components: + - type: Transform + parent: 53064 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 53064 - proto: AirAlarm entities: - uid: 491 @@ -25611,6 +25626,14 @@ entities: 21983: - - DoorStatus - Toggle +- proto: AirlockExternalGlassPenalServitudeShuttleLavalandStation + entities: + - uid: 43178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,71.5 + parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 28306 @@ -25719,6 +25742,13 @@ entities: rot: 3.141592653589793 rad pos: 87.5,39.5 parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 45297 + components: + - type: Transform + pos: 81.5,5.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 2315 @@ -55836,6 +55866,17 @@ entities: - type: Transform pos: -23.5,-50.5 parent: 2 + - uid: 53061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,71.5 + parent: 2 + - uid: 53068 + components: + - type: Transform + pos: 81.5,5.5 + parent: 2 - proto: AtmosDeviceFanTiny entities: - uid: 14579 @@ -56771,6 +56812,15 @@ entities: parent: 2 - type: Fixtures fixtures: {} +- proto: BaseAPC + entities: + - uid: 19164 + components: + - type: Transform + pos: 7.5,25.5 + parent: 17417 + - type: Fixtures + fixtures: {} - proto: BaseComputer entities: - uid: 2579 @@ -59029,8 +59079,8 @@ entities: pos: 25.5,-74.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -59059,8 +59109,8 @@ entities: pos: 26.5,-74.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -59785,6 +59835,11 @@ entities: - type: Transform pos: -84.42866,55.689228 parent: 2 + - uid: 53066 + components: + - type: Transform + pos: -79.63022,69.623405 + parent: 2 - proto: BrbSign entities: - uid: 48976 @@ -131205,10 +131260,10 @@ entities: - type: Transform pos: 85.5,9.5 parent: 2 - - uid: 45284 + - uid: 45299 components: - type: Transform - pos: 81.5,7.5 + pos: 82.5,7.5 parent: 2 - uid: 45314 components: @@ -133325,8 +133380,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - proto: ClosetMaintenanceFilledRandom @@ -134389,6 +134444,11 @@ entities: - type: Transform pos: -55.512222,44.6975 parent: 2 + - uid: 53067 + components: + - type: Transform + pos: -80.31772,69.73278 + parent: 2 - proto: ClothingHandsGlovesBoxingBlue entities: - uid: 28386 @@ -134789,6 +134849,13 @@ entities: - type: Transform pos: 11.5,91.5 parent: 2 +- proto: ClothingHeadHatHardhatArmored + entities: + - uid: 45294 + components: + - type: Transform + pos: 80.47441,7.7128115 + parent: 2 - proto: ClothingHeadHatHardhatRed entities: - uid: 26921 @@ -135890,6 +135957,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitBartender entities: - uid: 18707 @@ -135899,6 +135970,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitChef entities: - uid: 41939 @@ -135906,6 +135981,10 @@ entities: - type: Transform pos: -57.55877,-37.291576 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 42535 @@ -135913,11 +135992,19 @@ entities: - type: Transform pos: -46.5,62.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 43185 components: - type: Transform pos: -78.50451,66.857346 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitRepairmanSyndie entities: - uid: 16063 @@ -135925,6 +136012,10 @@ entities: - type: Transform pos: -111.47289,-110.56789 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitReporter entities: - uid: 47801 @@ -135934,6 +136025,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 47802 components: - type: Transform @@ -135941,6 +136036,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 47803 components: - type: Transform @@ -135948,6 +136047,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClusterBangFull entities: - uid: 30299 @@ -137059,8 +137162,8 @@ entities: - uid: 43177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,71.5 + rot: -1.5707963267948966 rad + pos: -73.5,67.5 parent: 2 - uid: 45539 components: @@ -137140,11 +137243,11 @@ entities: - type: Transform pos: -77.5,54.5 parent: 2 - - uid: 43179 + - uid: 49976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,69.5 + rot: -1.5707963267948966 rad + pos: -73.5,66.5 parent: 2 - proto: ComputerFrame entities: @@ -137349,12 +137452,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-20.5 parent: 2 - - uid: 43178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,70.5 - parent: 2 - uid: 45286 components: - type: Transform @@ -139700,8 +139797,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 43383 @@ -139879,11 +139976,6 @@ entities: - type: Transform pos: -10.5,61.5 parent: 2 - - uid: 45302 - components: - - type: Transform - pos: 81.65568,6.538113 - parent: 2 - proto: CrowbarRed entities: - uid: 30566 @@ -140085,24 +140177,6 @@ entities: - type: Transform pos: -95.45043,-15.544666 parent: 2 -- proto: DebugAPC - entities: - - uid: 19164 - components: - - type: Transform - pos: 7.5,25.5 - parent: 17417 - - type: Fixtures - fixtures: {} -- proto: DebugSubstation - entities: - - uid: 19163 - components: - - type: Transform - pos: 6.5,24.5 - parent: 17417 - - type: BatterySelfRecharger - autoRechargeRate: 2500000 - proto: DefaultStationBeaconAICore entities: - uid: 44382 @@ -158119,8 +158193,8 @@ entities: pos: -71.5,-75.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 65684.7889831 - lastInjectorTime: 65684.7889831 + lastSubjectInjectTime: 6722.8573504 + lastInjectorTime: 6722.8573504 - type: DnaClient server: 37638 connectedToServer: True @@ -158130,8 +158204,8 @@ entities: pos: -75.5,-75.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 65684.7889831 - lastInjectorTime: 65684.7889831 + lastSubjectInjectTime: 6722.8573504 + lastInjectorTime: 6722.8573504 - type: DnaClient server: 37638 connectedToServer: True @@ -158199,11 +158273,6 @@ entities: - type: Transform pos: 84.5,28.5 parent: 2 - - uid: 45297 - components: - - type: Transform - pos: 80.5,8.5 - parent: 2 - uid: 45536 components: - type: Transform @@ -171366,6 +171435,11 @@ entities: - type: Transform pos: -77.042244,11.738843 parent: 2 + - uid: 50599 + components: + - type: Transform + pos: 80.37992,6.877893 + parent: 2 - uid: 51274 components: - type: Transform @@ -171383,6 +171457,25 @@ entities: - type: Transform pos: 94.5,31.5 parent: 2 + - uid: 53064 + components: + - type: Transform + pos: -80.50522,69.48278 + parent: 2 + - type: HandheldLight + toggleActionEntity: 53065 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 53065 + - type: ActionsContainer - proto: FlippoEngravedLighter entities: - uid: 19465 @@ -171474,6 +171567,11 @@ entities: - type: Transform pos: -18.5,1.5 parent: 2 + - uid: 45301 + components: + - type: Transform + pos: 80.5,8.5 + parent: 2 - proto: FloorDrain entities: - uid: 41809 @@ -242351,12 +242449,6 @@ entities: - type: Transform pos: -90.5,9.5 parent: 2 - - uid: 6379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,5.5 - parent: 2 - uid: 6380 components: - type: Transform @@ -248325,6 +248417,11 @@ entities: - type: Transform pos: 49.5,55.5 parent: 2 + - uid: 49975 + components: + - type: Transform + pos: -81.5,70.5 + parent: 2 - uid: 50185 components: - type: Transform @@ -249225,8 +249322,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 30290 @@ -249260,8 +249357,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 30294 @@ -252414,13 +252511,13 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage + removedMasks: 20 air: volume: 200 immutable: False temperature: 99.49301 moles: {} open: True - removedMasks: 20 - type: PlaceableSurface isPlaceable: True - uid: 30300 @@ -252678,11 +252775,6 @@ entities: - type: Transform pos: 83.5,28.5 parent: 2 - - uid: 45296 - components: - - type: Transform - pos: 80.5,7.5 - parent: 2 - uid: 45535 components: - type: Transform @@ -253008,6 +253100,14 @@ entities: - type: Transform pos: -54.479626,-83.44905 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 45227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,6.5 + parent: 2 - proto: LeavesCannabis entities: - uid: 46343 @@ -254584,6 +254684,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 45284 + components: + - type: Transform + pos: 81.5,14.5 + parent: 2 - proto: LockerScienceFilled entities: - uid: 20406 @@ -256154,24 +256259,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: MaterialDurathread1 - entities: - - uid: 45299 - components: - - type: Transform - pos: 80.71818,6.631863 - parent: 2 - - type: Stack - count: 5 -- proto: MaterialGoliathHide1 - entities: - - uid: 45298 - components: - - type: Transform - pos: 81.4213,6.538113 - parent: 2 - - type: Stack - count: 4 - proto: MaterialHideBear entities: - uid: 10382 @@ -258406,6 +258493,14 @@ entities: rot: -1.5707963267948966 rad pos: 38.56213,65.08892 parent: 2 +- proto: PenalServitudeLavalandShuttleConsole + entities: + - uid: 19250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,70.5 + parent: 2 - proto: PersonalAI entities: - uid: 15982 @@ -258486,6 +258581,11 @@ entities: parent: 2 - proto: Pickaxe entities: + - uid: 1491 + components: + - type: Transform + pos: 80.54398,6.8075805 + parent: 2 - uid: 2884 components: - type: Transform @@ -258685,6 +258785,11 @@ entities: - type: Transform pos: -42.50745,78.568436 parent: 2 + - uid: 50598 + components: + - type: Transform + pos: 80.54398,6.6200805 + parent: 2 - proto: PillCanisterBicaridine entities: - uid: 48136 @@ -260036,6 +260141,11 @@ entities: - type: Transform pos: -55.5,40.5 parent: 2 + - uid: 53060 + components: + - type: Transform + pos: 85.5,11.5 + parent: 2 - proto: Poweredlight entities: - uid: 486 @@ -263330,12 +263440,6 @@ entities: - type: Transform pos: 7.5,25.5 parent: 17417 - - uid: 19250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,70.5 - parent: 2 - uid: 19311 components: - type: Transform @@ -269566,11 +269670,6 @@ entities: - type: Transform pos: 82.5,28.5 parent: 2 - - uid: 45248 - components: - - type: Transform - pos: 82.5,6.5 - parent: 2 - uid: 45488 components: - type: Transform @@ -270138,12 +270237,6 @@ entities: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 1491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,5.5 - parent: 2 - uid: 1593 components: - type: Transform @@ -274944,6 +275037,12 @@ entities: - type: Transform pos: -49.5,-87.5 parent: 2 + - uid: 45295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,70.5 + parent: 2 - uid: 47867 components: - type: Transform @@ -274987,7 +275086,7 @@ entities: pos: -74.5,-90.5 parent: 2 - type: DnaServer - serverId: 263 + serverId: 265 - proto: RevolverCapGun entities: - uid: 46335 @@ -276297,11 +276396,6 @@ entities: - type: Transform pos: -61.5,62.5 parent: 2 - - uid: 45300 - components: - - type: Transform - pos: 80.554115,6.4209256 - parent: 2 - proto: SecurityTechFab entities: - uid: 42852 @@ -283258,33 +283352,6 @@ entities: - type: Transform pos: -60.5,-46.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 49975 - components: - - type: Transform - pos: -22.5,49.5 - parent: 2 - - uid: 49976 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 49977 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 50598 - components: - - type: Transform - pos: -21.5,52.5 - parent: 2 - - uid: 50599 - components: - - type: Transform - pos: -19.5,49.5 - parent: 2 - proto: SpawnPointCaptain entities: - uid: 49899 @@ -284567,6 +284634,35 @@ entities: - type: Transform pos: -79.5,-38.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 45248 + components: + - type: Transform + pos: 85.5,9.5 + parent: 2 + - uid: 45298 + components: + - type: Transform + pos: 83.5,10.5 + parent: 2 + - uid: 45302 + components: + - type: Transform + pos: 82.5,7.5 + parent: 2 + - uid: 49977 + components: + - type: Transform + pos: 82.5,9.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 45296 + components: + - type: Transform + pos: 84.5,11.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 51935 @@ -284735,6 +284831,23 @@ entities: - type: Transform pos: -76.5,48.5 parent: 2 +- proto: SpawnPointWardenHelper + entities: + - uid: 10247 + components: + - type: Transform + pos: -73.5,53.5 + parent: 2 + - uid: 43179 + components: + - type: Transform + pos: -69.5,50.5 + parent: 2 + - uid: 45300 + components: + - type: Transform + pos: -69.5,50.5 + parent: 2 - proto: SpawnPointWardenWeapon entities: - uid: 41410 @@ -286298,6 +286411,15 @@ entities: - type: Transform pos: -16.5,11.5 parent: 2 +- proto: SubstationBasicEmpty + entities: + - uid: 19163 + components: + - type: Transform + pos: 6.5,24.5 + parent: 17417 + - type: BatterySelfRecharger + autoRechargeRate: 2500000 - proto: SubstationWallBasic entities: - uid: 12529 @@ -289101,6 +289223,11 @@ entities: - type: Transform pos: -56.5,20.5 parent: 2 + - uid: 12326 + components: + - type: Transform + pos: 80.5,6.5 + parent: 2 - uid: 12410 components: - type: Transform @@ -290379,12 +290506,7 @@ entities: - uid: 45226 components: - type: Transform - pos: 80.5,6.5 - parent: 2 - - uid: 45227 - components: - - type: Transform - pos: 81.5,6.5 + pos: 80.5,7.5 parent: 2 - uid: 45228 components: @@ -290407,16 +290529,6 @@ entities: rot: 3.141592653589793 rad pos: 93.5,10.5 parent: 2 - - uid: 45294 - components: - - type: Transform - pos: 80.5,7.5 - parent: 2 - - uid: 45295 - components: - - type: Transform - pos: 80.5,8.5 - parent: 2 - uid: 45400 components: - type: Transform @@ -292654,6 +292766,16 @@ entities: - type: Transform pos: 0.5,3.5 parent: 50117 + - uid: 53062 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 53063 + components: + - type: Transform + pos: -79.5,69.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 3461 @@ -295444,21 +295566,37 @@ entities: - type: Transform pos: -24.366482,52.556103 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49984 components: - type: Transform pos: -24.366482,52.556103 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49985 components: - type: Transform pos: -24.366482,52.556103 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49986 components: - type: Transform pos: -24.366482,52.556103 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRedWithTop entities: - uid: 49987 @@ -295466,21 +295604,37 @@ entities: - type: Transform pos: -24.413357,52.532665 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49988 components: - type: Transform pos: -24.413357,52.532665 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49989 components: - type: Transform pos: -24.413357,52.532665 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 49990 components: - type: Transform pos: -24.413357,52.532665 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UraniumOre1 entities: - uid: 47984 @@ -296048,11 +296202,105 @@ entities: - type: Transform pos: 47.5,5.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - uid: 45229 components: - type: Transform pos: 85.5,15.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 19964 @@ -311395,12 +311643,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,72.5 parent: 2 - - uid: 10247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,70.5 - parent: 2 - uid: 10248 components: - type: Transform @@ -312561,12 +312803,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,60.5 parent: 2 - - uid: 12326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,71.5 - parent: 2 - uid: 12328 components: - type: Transform @@ -334570,6 +334806,11 @@ entities: - type: InsideEntityStorage - proto: WeaponProtoKineticAccelerator entities: + - uid: 6379 + components: + - type: Transform + pos: 80.427536,7.314374 + parent: 2 - uid: 37346 components: - type: Transform @@ -336999,11 +337240,6 @@ entities: - type: Transform pos: 10.551723,-59.413223 parent: 2 - - uid: 45301 - components: - - type: Transform - pos: 80.53068,6.9834256 - parent: 2 - proto: WoodDoor entities: - uid: 16853 @@ -337027,7 +337263,7 @@ entities: pos: -85.5,-53.5 parent: 2 - type: Door - secondsUntilStateChange: -390963.53 + secondsUntilStateChange: -391534.03 state: Opening - uid: 29172 components: diff --git a/Resources/Maps/_Wega/wegacore.yml b/Resources/Maps/_Wega/wegacore.yml index 6631889a19f..34b3f861157 100644 --- a/Resources/Maps/_Wega/wegacore.yml +++ b/Resources/Maps/_Wega/wegacore.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 270.1.0 forkId: "" forkVersion: "" - time: 08/16/2025 12:03:52 - entityCount: 22573 + time: 03/01/2026 13:07:17 + entityCount: 22576 maps: - 17546 grids: @@ -249,7 +249,7 @@ entities: version: 7 2,1: ind: 2,1 - tiles: CAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAXAAAAAAEAFwAAAAACABcAAAAAAgAZAAAAAAAAGQAAAAAAAAgAAAAAAAAXAAAAAAIAEAAAAAAAABAAAAAAAQAQAAAAAAMACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAwAQAAAAAAMAEAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAQAgAAAAAAMAIAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA8AAAAAAQAQAAAAAAIAIAAAAAADACAAAAAAAwAQAAAAAAMACAAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAIAAAAAAAAEAAAAAADABAAAAAAAQAYAAAAAAMAEAAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAADAAgAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAAFgAAAAAAABYAAAAAAAACAAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAQAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAYAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAA== + tiles: CAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAXAAAAAAEAFwAAAAACABcAAAAAAgAZAAAAAAAAGQAAAAAAAAgAAAAAAAAXAAAAAAIAEAAAAAAAABAAAAAAAQAQAAAAAAMACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAIAEAAAAAACABAAAAAAAwAQAAAAAAMAEAAAAAABAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAQAgAAAAAAMAIAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA8AAAAAAQAQAAAAAAIAIAAAAAADACAAAAAAAwAQAAAAAAMACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABgAAAAAAAAYAAAAAAAAIAAAAAAAAEAAAAAADABAAAAAAAQAYAAAAAAMAEAAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAADAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAAFgAAAAAAABYAAAAAAAACAAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAQAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAA== version: 7 3,0: ind: 3,0 @@ -9744,7 +9744,7 @@ entities: -4,2: 1: 29810 -5,2: - 1: 61937 + 1: 61681 -4,3: 1: 3413 -5,3: @@ -10140,7 +10140,7 @@ entities: 6,0: 1: 65392 6,1: - 1: 65295 + 1: 65471 6,2: 1: 61263 6,3: @@ -10329,13 +10329,12 @@ entities: 1: 13056 -1,-11: 0: 17600 - 6: 4352 + 1: 4352 0,-10: 1: 65331 0: 8 -1,-10: - 1: 56320 - 6: 17 + 1: 56337 0: 4 1,-12: 0: 4369 @@ -10446,8 +10445,7 @@ entities: -3,7: 1: 53503 -3,8: - 1: 477 - 7: 3072 + 1: 3549 -2,5: 1: 28927 -2,6: @@ -10455,8 +10453,7 @@ entities: -2,7: 1: 62463 -2,8: - 1: 3327 - 7: 768 + 1: 4095 -1,8: 1: 20206 -9,4: @@ -10524,11 +10521,9 @@ entities: -2,-12: 0: 61155 -2,-11: - 1: 13056 - 6: 34816 + 1: 56576 -2,-10: - 1: 53553 - 6: 142 + 1: 53727 -2,-13: 0: 61155 9,-11: @@ -10950,7 +10945,7 @@ entities: 11,1: 1: 61815 11,2: - 1: 62975 + 1: 62719 11,3: 1: 65535 11,4: @@ -11101,25 +11096,20 @@ entities: 9,4: 1: 40912 9,5: - 1: 273 - 0: 3276 + 1: 477 9,6: 0: 3 10,5: - 0: 4095 + 1: 563 + 0: 2184 11,5: - 0: 4369 + 0: 273 1: 204 - 11,6: - 0: 15 12,4: 1: 4064 12,5: 1: 52445 0: 4096 - 12,6: - 0: 3857 - 1: 12 13,0: 1: 65504 13,1: @@ -11159,6 +11149,9 @@ entities: 16,2: 1: 819 0: 8 + 12,6: + 0: 3857 + 1: 12 13,4: 1: 40944 13,5: @@ -11433,8 +11426,8 @@ entities: 1: 12 0: 33041 4,-15: - 1: 65433 - 0: 102 + 1: 65435 + 0: 100 3,-15: 0: 35064 4,-14: @@ -11592,124 +11585,27 @@ entities: uniqueMixes: - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 temperature: 293.15 moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Nitrogen: 6666.982 - volume: 2500 temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 103.92799 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Plasma: 6666.982 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11717,6 +11613,7 @@ entities: id: Core - type: NightLightning - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 1962 components: - type: MetaData @@ -11915,38 +11812,17 @@ entities: uniqueMixes: - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AcousticGuitarInstrument entities: - uid: 4746 @@ -11997,6 +11873,8 @@ entities: - 8751 - 8750 - 8749 + - type: Fixtures + fixtures: {} - uid: 894 components: - type: Transform @@ -12011,6 +11889,8 @@ entities: - 493 - 492 - 491 + - type: Fixtures + fixtures: {} - uid: 1973 components: - type: Transform @@ -12027,6 +11907,8 @@ entities: - 18743 - 18741 - 18742 + - type: Fixtures + fixtures: {} - uid: 2086 components: - type: Transform @@ -12039,6 +11921,8 @@ entities: - 22483 - 19762 - 19741 + - type: Fixtures + fixtures: {} - uid: 4744 components: - type: Transform @@ -12053,6 +11937,8 @@ entities: - 12369 - 4957 - 7019 + - type: Fixtures + fixtures: {} - uid: 8353 components: - type: Transform @@ -12074,6 +11960,8 @@ entities: - 19305 - 19301 - 20167 + - type: Fixtures + fixtures: {} - uid: 8367 components: - type: Transform @@ -12097,6 +11985,8 @@ entities: - 18331 - 18336 - 18356 + - type: Fixtures + fixtures: {} - uid: 8368 components: - type: Transform @@ -12109,6 +11999,8 @@ entities: - 8756 - 18389 - 18375 + - type: Fixtures + fixtures: {} - uid: 8370 components: - type: Transform @@ -12128,6 +12020,8 @@ entities: - 18308 - 18321 - 18330 + - type: Fixtures + fixtures: {} - uid: 8371 components: - type: Transform @@ -12142,6 +12036,8 @@ entities: - 8741 - 8742 - 8740 + - type: Fixtures + fixtures: {} - uid: 8372 components: - type: Transform @@ -12155,6 +12051,8 @@ entities: - 18514 - 18512 - 18513 + - type: Fixtures + fixtures: {} - uid: 8374 components: - type: Transform @@ -12172,6 +12070,8 @@ entities: - 18441 - 18440 - 18439 + - type: Fixtures + fixtures: {} - uid: 8375 components: - type: Transform @@ -12186,6 +12086,8 @@ entities: - 18496 - 18498 - 18497 + - type: Fixtures + fixtures: {} - uid: 8376 components: - type: Transform @@ -12200,6 +12102,8 @@ entities: - 19951 - 19922 - 19923 + - type: Fixtures + fixtures: {} - uid: 8377 components: - type: Transform @@ -12221,6 +12125,8 @@ entities: - 19910 - 19911 - 19912 + - type: Fixtures + fixtures: {} - uid: 8378 components: - type: Transform @@ -12237,6 +12143,8 @@ entities: - 19900 - 16937 - 16936 + - type: Fixtures + fixtures: {} - uid: 8379 components: - type: Transform @@ -12252,6 +12160,8 @@ entities: - 19909 - 19907 - 19908 + - type: Fixtures + fixtures: {} - uid: 8380 components: - type: Transform @@ -12265,6 +12175,8 @@ entities: - 19964 - 19963 - 19962 + - type: Fixtures + fixtures: {} - uid: 8381 components: - type: Transform @@ -12277,6 +12189,8 @@ entities: - 8732 - 8711 - 20219 + - type: Fixtures + fixtures: {} - uid: 8382 components: - type: Transform @@ -12291,6 +12205,8 @@ entities: - 19969 - 19953 - 19952 + - type: Fixtures + fixtures: {} - uid: 8383 components: - type: Transform @@ -12312,12 +12228,16 @@ entities: - 19841 - 19840 - 7455 + - type: Fixtures + fixtures: {} - uid: 8384 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8385 components: - type: Transform @@ -12331,6 +12251,8 @@ entities: - 19790 - 19774 - 19789 + - type: Fixtures + fixtures: {} - uid: 8387 components: - type: Transform @@ -12346,6 +12268,8 @@ entities: - 8705 - 17363 - 19795 + - type: Fixtures + fixtures: {} - uid: 8388 components: - type: Transform @@ -12368,6 +12292,8 @@ entities: - 19672 - 19673 - 19674 + - type: Fixtures + fixtures: {} - uid: 8389 components: - type: Transform @@ -12390,6 +12316,8 @@ entities: - 19672 - 19673 - 19674 + - type: Fixtures + fixtures: {} - uid: 8390 components: - type: Transform @@ -12408,6 +12336,8 @@ entities: - 18221 - 18219 - 18220 + - type: Fixtures + fixtures: {} - uid: 8391 components: - type: Transform @@ -12426,6 +12356,8 @@ entities: - 19734 - 19728 - 19730 + - type: Fixtures + fixtures: {} - uid: 8392 components: - type: Transform @@ -12442,6 +12374,8 @@ entities: - 8696 - 19731 - 19729 + - type: Fixtures + fixtures: {} - uid: 8393 components: - type: Transform @@ -12462,6 +12396,8 @@ entities: - 18218 - 18217 - 18216 + - type: Fixtures + fixtures: {} - uid: 8394 components: - type: Transform @@ -12479,6 +12415,8 @@ entities: - 18305 - 18307 - 18306 + - type: Fixtures + fixtures: {} - uid: 8395 components: - type: Transform @@ -12497,6 +12435,8 @@ entities: - 18302 - 18303 - 18304 + - type: Fixtures + fixtures: {} - uid: 8396 components: - type: Transform @@ -12516,6 +12456,8 @@ entities: - 18298 - 18299 - 18300 + - type: Fixtures + fixtures: {} - uid: 8397 components: - type: Transform @@ -12528,6 +12470,8 @@ entities: - 19641 - 19640 - 19639 + - type: Fixtures + fixtures: {} - uid: 8398 components: - type: Transform @@ -12544,6 +12488,8 @@ entities: - 19510 - 19508 - 19507 + - type: Fixtures + fixtures: {} - uid: 8399 components: - type: Transform @@ -12559,6 +12505,8 @@ entities: - 19543 - 19520 - 19519 + - type: Fixtures + fixtures: {} - uid: 8400 components: - type: Transform @@ -12575,6 +12523,8 @@ entities: - 19542 - 19521 - 19522 + - type: Fixtures + fixtures: {} - uid: 8401 components: - type: Transform @@ -12592,6 +12542,8 @@ entities: - 19582 - 19569 - 19570 + - type: Fixtures + fixtures: {} - uid: 8402 components: - type: Transform @@ -12605,6 +12557,8 @@ entities: - 19568 - 19567 - 19566 + - type: Fixtures + fixtures: {} - uid: 8403 components: - type: Transform @@ -12618,6 +12572,8 @@ entities: - 19589 - 19588 - 19587 + - type: Fixtures + fixtures: {} - uid: 8404 components: - type: Transform @@ -12636,6 +12592,8 @@ entities: - 19474 - 19470 - 19469 + - type: Fixtures + fixtures: {} - uid: 8405 components: - type: Transform @@ -12649,12 +12607,16 @@ entities: - 8772 - 8771 - 21559 + - type: Fixtures + fixtures: {} - uid: 8406 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8407 components: - type: Transform @@ -12667,6 +12629,8 @@ entities: - 19071 - 19069 - 19070 + - type: Fixtures + fixtures: {} - uid: 8408 components: - type: Transform @@ -12684,6 +12648,8 @@ entities: - 18914 - 18912 - 18913 + - type: Fixtures + fixtures: {} - uid: 8409 components: - type: Transform @@ -12697,6 +12663,8 @@ entities: - 18941 - 18936 - 7082 + - type: Fixtures + fixtures: {} - uid: 8410 components: - type: Transform @@ -12712,6 +12680,8 @@ entities: - 18871 - 18870 - 18869 + - type: Fixtures + fixtures: {} - uid: 8411 components: - type: Transform @@ -12727,6 +12697,8 @@ entities: - 18868 - 18867 - 18866 + - type: Fixtures + fixtures: {} - uid: 8412 components: - type: Transform @@ -12763,6 +12735,8 @@ entities: - 18270 - 18268 - 18258 + - type: Fixtures + fixtures: {} - uid: 8414 components: - type: Transform @@ -12783,6 +12757,8 @@ entities: - 19367 - 19131 - 19136 + - type: Fixtures + fixtures: {} - uid: 8415 components: - type: Transform @@ -12804,6 +12780,8 @@ entities: - 19367 - 19131 - 19136 + - type: Fixtures + fixtures: {} - uid: 8416 components: - type: Transform @@ -12822,6 +12800,8 @@ entities: - 19167 - 19171 - 20195 + - type: Fixtures + fixtures: {} - uid: 8417 components: - type: Transform @@ -12848,6 +12828,8 @@ entities: - 19334 - 19103 - 19346 + - type: Fixtures + fixtures: {} - uid: 8418 components: - type: Transform @@ -12867,6 +12849,8 @@ entities: - 19306 - 19085 - 18121 + - type: Fixtures + fixtures: {} - uid: 8419 components: - type: Transform @@ -12888,6 +12872,8 @@ entities: - 19305 - 19300 - 20164 + - type: Fixtures + fixtures: {} - uid: 8421 components: - type: Transform @@ -12902,6 +12888,8 @@ entities: - 20177 - 20169 - 19302 + - type: Fixtures + fixtures: {} - uid: 8422 components: - type: Transform @@ -12916,6 +12904,8 @@ entities: - 20178 - 20168 - 19303 + - type: Fixtures + fixtures: {} - uid: 8423 components: - type: Transform @@ -12934,6 +12924,8 @@ entities: - 19079 - 19084 - 13923 + - type: Fixtures + fixtures: {} - uid: 8424 components: - type: Transform @@ -12949,6 +12941,8 @@ entities: - 19427 - 19425 - 19426 + - type: Fixtures + fixtures: {} - uid: 8425 components: - type: Transform @@ -12961,6 +12955,8 @@ entities: - 19460 - 19308 - 18975 + - type: Fixtures + fixtures: {} - uid: 8427 components: - type: Transform @@ -12974,6 +12970,8 @@ entities: - 19631 - 19630 - 19622 + - type: Fixtures + fixtures: {} - uid: 8428 components: - type: Transform @@ -12990,6 +12988,8 @@ entities: - 19632 - 19607 - 19608 + - type: Fixtures + fixtures: {} - uid: 8429 components: - type: Transform @@ -13000,6 +13000,8 @@ entities: devices: - 20249 - 14942 + - type: Fixtures + fixtures: {} - uid: 8431 components: - type: Transform @@ -13013,6 +13015,8 @@ entities: - 20042 - 20041 - 20040 + - type: Fixtures + fixtures: {} - uid: 8432 components: - type: Transform @@ -13029,6 +13033,8 @@ entities: - 20039 - 20037 - 20038 + - type: Fixtures + fixtures: {} - uid: 8434 components: - type: Transform @@ -13042,6 +13048,8 @@ entities: - 8680 - 8679 - 21934 + - type: Fixtures + fixtures: {} - uid: 8436 components: - type: Transform @@ -13053,6 +13061,8 @@ entities: - 19829 - 19820 - 19828 + - type: Fixtures + fixtures: {} - uid: 8438 components: - type: Transform @@ -13065,6 +13075,8 @@ entities: - 18388 - 18374 - 18373 + - type: Fixtures + fixtures: {} - uid: 8439 components: - type: Transform @@ -13077,6 +13089,8 @@ entities: - 18428 - 18427 - 18426 + - type: Fixtures + fixtures: {} - uid: 8440 components: - type: Transform @@ -13095,6 +13109,8 @@ entities: - 18235 - 18232 - 18234 + - type: Fixtures + fixtures: {} - uid: 8441 components: - type: Transform @@ -13115,6 +13131,8 @@ entities: - 18226 - 18229 - 18230 + - type: Fixtures + fixtures: {} - uid: 8442 components: - type: Transform @@ -13127,6 +13145,8 @@ entities: - 18532 - 18530 - 18531 + - type: Fixtures + fixtures: {} - uid: 8443 components: - type: Transform @@ -13139,6 +13159,8 @@ entities: - 18516 - 18233 - 18515 + - type: Fixtures + fixtures: {} - uid: 8444 components: - type: Transform @@ -13156,6 +13178,8 @@ entities: - 17875 - 17867 - 18236 + - type: Fixtures + fixtures: {} - uid: 8445 components: - type: Transform @@ -13176,6 +13200,8 @@ entities: - 18237 - 18239 - 18238 + - type: Fixtures + fixtures: {} - uid: 8446 components: - type: Transform @@ -13191,6 +13217,8 @@ entities: - 18535 - 18533 - 18534 + - type: Fixtures + fixtures: {} - uid: 8447 components: - type: Transform @@ -13203,6 +13231,8 @@ entities: - 18616 - 18614 - 18615 + - type: Fixtures + fixtures: {} - uid: 8448 components: - type: Transform @@ -13216,6 +13246,8 @@ entities: - 18606 - 18603 - 18604 + - type: Fixtures + fixtures: {} - uid: 8449 components: - type: Transform @@ -13228,6 +13260,8 @@ entities: - 18629 - 18627 - 18628 + - type: Fixtures + fixtures: {} - uid: 8450 components: - type: Transform @@ -13242,6 +13276,8 @@ entities: - 8555 - 18580 - 18577 + - type: Fixtures + fixtures: {} - uid: 8451 components: - type: Transform @@ -13261,6 +13297,8 @@ entities: - 18564 - 18554 - 18553 + - type: Fixtures + fixtures: {} - uid: 8452 components: - type: Transform @@ -13279,6 +13317,8 @@ entities: - 18243 - 18244 - 18245 + - type: Fixtures + fixtures: {} - uid: 8453 components: - type: Transform @@ -13293,6 +13333,8 @@ entities: - 18632 - 18630 - 18631 + - type: Fixtures + fixtures: {} - uid: 8454 components: - type: Transform @@ -13310,6 +13352,8 @@ entities: - 18240 - 18242 - 18241 + - type: Fixtures + fixtures: {} - uid: 8455 components: - type: Transform @@ -13329,6 +13373,8 @@ entities: - 5306 - 18247 - 18248 + - type: Fixtures + fixtures: {} - uid: 8456 components: - type: Transform @@ -13344,6 +13390,8 @@ entities: - 18707 - 18703 - 18705 + - type: Fixtures + fixtures: {} - uid: 8457 components: - type: Transform @@ -13358,6 +13406,8 @@ entities: - 8575 - 18811 - 18812 + - type: Fixtures + fixtures: {} - uid: 8458 components: - type: Transform @@ -13380,6 +13430,8 @@ entities: - 18681 - 18679 - 18678 + - type: Fixtures + fixtures: {} - uid: 8459 components: - type: Transform @@ -13393,6 +13445,8 @@ entities: - 18774 - 18773 - 18764 + - type: Fixtures + fixtures: {} - uid: 8460 components: - type: Transform @@ -13405,6 +13459,8 @@ entities: - 18756 - 18753 - 18755 + - type: Fixtures + fixtures: {} - uid: 8461 components: - type: Transform @@ -13417,6 +13473,8 @@ entities: - 18684 - 18683 - 18682 + - type: Fixtures + fixtures: {} - uid: 8463 components: - type: Transform @@ -13433,6 +13491,8 @@ entities: - 18249 - 18251 - 18250 + - type: Fixtures + fixtures: {} - uid: 8465 components: - type: Transform @@ -13447,6 +13507,8 @@ entities: - 19017 - 19013 - 19012 + - type: Fixtures + fixtures: {} - uid: 8466 components: - type: Transform @@ -13460,6 +13522,8 @@ entities: - 19018 - 18998 - 19000 + - type: Fixtures + fixtures: {} - uid: 8467 components: - type: Transform @@ -13473,6 +13537,8 @@ entities: - 19032 - 19031 - 19030 + - type: Fixtures + fixtures: {} - uid: 8468 components: - type: Transform @@ -13490,6 +13556,8 @@ entities: - 19317 - 18126 - 19092 + - type: Fixtures + fixtures: {} - uid: 8469 components: - type: Transform @@ -13502,6 +13570,8 @@ entities: - 20181 - 19314 - 19077 + - type: Fixtures + fixtures: {} - uid: 8470 components: - type: Transform @@ -13518,6 +13588,8 @@ entities: - 19370 - 19369 - 19368 + - type: Fixtures + fixtures: {} - uid: 8471 components: - type: Transform @@ -13529,6 +13601,8 @@ entities: - 8605 - 19420 - 19410 + - type: Fixtures + fixtures: {} - uid: 8472 components: - type: Transform @@ -13543,6 +13617,8 @@ entities: - 20004 - 19999 - 19998 + - type: Fixtures + fixtures: {} - uid: 8473 components: - type: Transform @@ -13555,6 +13631,8 @@ entities: - 19973 - 19971 - 19970 + - type: Fixtures + fixtures: {} - uid: 8474 components: - type: Transform @@ -13564,6 +13642,8 @@ entities: - type: DeviceList devices: - 20248 + - type: Fixtures + fixtures: {} - uid: 8475 components: - type: Transform @@ -13580,6 +13660,8 @@ entities: - 19581 - 19575 - 19580 + - type: Fixtures + fixtures: {} - uid: 8476 components: - type: Transform @@ -13598,6 +13680,8 @@ entities: - 19514 - 17793 - 17792 + - type: Fixtures + fixtures: {} - uid: 8477 components: - type: Transform @@ -13613,6 +13697,8 @@ entities: - 19642 - 17708 - 17707 + - type: Fixtures + fixtures: {} - uid: 8478 components: - type: Transform @@ -13629,6 +13715,8 @@ entities: - 19351 - 18127 - 19109 + - type: Fixtures + fixtures: {} - uid: 8479 components: - type: Transform @@ -13640,6 +13728,8 @@ entities: - 19352 - 19307 - 18128 + - type: Fixtures + fixtures: {} - uid: 8892 components: - type: Transform @@ -13652,6 +13742,8 @@ entities: - 8781 - 18972 - 18983 + - type: Fixtures + fixtures: {} - uid: 9089 components: - type: Transform @@ -13661,6 +13753,8 @@ entities: - type: DeviceList devices: - 22451 + - type: Fixtures + fixtures: {} - uid: 11469 components: - type: Transform @@ -13674,6 +13768,8 @@ entities: - 8693 - 19778 - 19775 + - type: Fixtures + fixtures: {} - uid: 15596 components: - type: Transform @@ -13685,6 +13781,8 @@ entities: - 7949 - 14066 - 7945 + - type: Fixtures + fixtures: {} - uid: 17617 components: - type: Transform @@ -13697,6 +13795,8 @@ entities: - 18831 - 18770 - 18830 + - type: Fixtures + fixtures: {} - uid: 17618 components: - type: Transform @@ -13711,6 +13811,8 @@ entities: - 18858 - 18859 - 7358 + - type: Fixtures + fixtures: {} - uid: 17629 components: - type: Transform @@ -13737,6 +13839,8 @@ entities: - 18944 - 492 - 491 + - type: Fixtures + fixtures: {} - uid: 17630 components: - type: Transform @@ -13750,6 +13854,8 @@ entities: - 19058 - 19056 - 19057 + - type: Fixtures + fixtures: {} - uid: 17653 components: - type: Transform @@ -13775,6 +13881,8 @@ entities: - 18289 - 18290 - 18291 + - type: Fixtures + fixtures: {} - uid: 17655 components: - type: Transform @@ -13797,6 +13905,8 @@ entities: - 8789 - 18287 - 18286 + - type: Fixtures + fixtures: {} - uid: 17660 components: - type: Transform @@ -13821,6 +13931,8 @@ entities: - 18252 - 18254 - 18253 + - type: Fixtures + fixtures: {} - uid: 17661 components: - type: Transform @@ -13836,12 +13948,16 @@ entities: - 18871 - 18870 - 18869 + - type: Fixtures + fixtures: {} - uid: 17668 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17670 components: - type: Transform @@ -13862,6 +13978,8 @@ entities: - 18225 - 18228 - 18227 + - type: Fixtures + fixtures: {} - uid: 17671 components: - type: Transform @@ -13887,6 +14005,8 @@ entities: - 18224 - 17810 - 17800 + - type: Fixtures + fixtures: {} - uid: 17679 components: - type: Transform @@ -13908,6 +14028,8 @@ entities: - 18295 - 18297 - 18296 + - type: Fixtures + fixtures: {} - uid: 17681 components: - type: Transform @@ -13930,6 +14052,8 @@ entities: - 18292 - 18294 - 18293 + - type: Fixtures + fixtures: {} - uid: 18581 components: - type: Transform @@ -13944,6 +14068,8 @@ entities: - 18605 - 18591 - 18590 + - type: Fixtures + fixtures: {} - uid: 19606 components: - type: Transform @@ -13956,6 +14082,8 @@ entities: - 17576 - 19602 - 19603 + - type: Fixtures + fixtures: {} - uid: 20220 components: - type: Transform @@ -13973,6 +14101,8 @@ entities: - 8726 - 19884 - 19885 + - type: Fixtures + fixtures: {} - uid: 20222 components: - type: Transform @@ -13990,6 +14120,8 @@ entities: - 17501 - 18642 - 18643 + - type: Fixtures + fixtures: {} - uid: 20225 components: - type: Transform @@ -14003,6 +14135,8 @@ entities: - 18727 - 18744 - 18725 + - type: Fixtures + fixtures: {} - uid: 20240 components: - type: Transform @@ -14015,6 +14149,8 @@ entities: - 8779 - 18971 - 19001 + - type: Fixtures + fixtures: {} - uid: 20242 components: - type: Transform @@ -14034,6 +14170,8 @@ entities: - 18282 - 18284 - 18283 + - type: Fixtures + fixtures: {} - uid: 20243 components: - type: Transform @@ -14049,6 +14187,8 @@ entities: - 19483 - 19481 - 19482 + - type: Fixtures + fixtures: {} - uid: 20246 components: - type: Transform @@ -14063,6 +14203,8 @@ entities: - 19509 - 19498 - 19484 + - type: Fixtures + fixtures: {} - uid: 21113 components: - type: Transform @@ -14075,6 +14217,8 @@ entities: - 21114 - 21102 - 21101 + - type: Fixtures + fixtures: {} - uid: 21957 components: - type: Transform @@ -14086,6 +14230,8 @@ entities: - 4561 - 19744 - 4575 + - type: Fixtures + fixtures: {} - uid: 22148 components: - type: Transform @@ -14099,6 +14245,8 @@ entities: - 22108 - 22110 - 22144 + - type: Fixtures + fixtures: {} - uid: 22149 components: - type: Transform @@ -14117,6 +14265,8 @@ entities: - 22111 - 22112 - 22167 + - type: Fixtures + fixtures: {} - uid: 22150 components: - type: Transform @@ -14130,6 +14280,8 @@ entities: - 22168 - 14937 - 14938 + - type: Fixtures + fixtures: {} - uid: 22429 components: - type: Transform @@ -14141,6 +14293,8 @@ entities: - 22407 - 22408 - 22428 + - type: Fixtures + fixtures: {} - uid: 22431 components: - type: Transform @@ -14153,6 +14307,8 @@ entities: - 22152 - 22203 - 22430 + - type: Fixtures + fixtures: {} - uid: 22449 components: - type: Transform @@ -14162,6 +14318,8 @@ entities: - type: DeviceList devices: - 22450 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 4 @@ -15274,6 +15432,14 @@ entities: 16695: - - DoorStatus - DoorBolt +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 13734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 6327 @@ -18306,12 +18472,6 @@ entities: parent: 2 - proto: AlwaysPoweredLightLED entities: - - uid: 1436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,20.5 - parent: 2 - uid: 1715 components: - type: Transform @@ -18514,6 +18674,16 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 9903 components: - type: MetaData @@ -18521,6 +18691,8 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9904 components: - type: MetaData @@ -18529,6 +18701,8 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9905 components: - type: MetaData @@ -18536,6 +18710,8 @@ entities: - type: Transform pos: -3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9907 components: - type: MetaData @@ -18543,6 +18719,8 @@ entities: - type: Transform pos: 52.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9908 components: - type: MetaData @@ -18551,6 +18729,8 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9909 components: - type: MetaData @@ -18559,6 +18739,8 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9964 components: - type: MetaData @@ -18567,6 +18749,8 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9977 components: - type: MetaData @@ -18575,6 +18759,8 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9979 components: - type: MetaData @@ -18582,6 +18768,8 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10082 components: - type: MetaData @@ -18589,6 +18777,8 @@ entities: - type: Transform pos: 31.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10083 components: - type: MetaData @@ -18597,6 +18787,8 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10109 components: - type: MetaData @@ -18604,6 +18796,8 @@ entities: - type: Transform pos: 31.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10124 components: - type: MetaData @@ -18612,6 +18806,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10158 components: - type: MetaData @@ -18620,6 +18816,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10159 components: - type: MetaData @@ -18627,6 +18825,8 @@ entities: - type: Transform pos: -13.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10160 components: - type: MetaData @@ -18635,6 +18835,8 @@ entities: rot: 3.141592653589793 rad pos: -1.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10161 components: - type: MetaData @@ -18642,6 +18844,8 @@ entities: - type: Transform pos: 3.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10228 components: - type: MetaData @@ -18649,6 +18853,8 @@ entities: - type: Transform pos: 1.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10242 components: - type: MetaData @@ -18656,6 +18862,8 @@ entities: - type: Transform pos: -54.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10248 components: - type: MetaData @@ -18664,6 +18872,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10307 components: - type: MetaData @@ -18671,6 +18881,8 @@ entities: - type: Transform pos: -38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10308 components: - type: MetaData @@ -18679,6 +18891,8 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10369 components: - type: MetaData @@ -18687,6 +18901,8 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10370 components: - type: MetaData @@ -18695,6 +18911,8 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10405 components: - type: MetaData @@ -18703,6 +18921,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10431 components: - type: MetaData @@ -18711,6 +18931,8 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10432 components: - type: MetaData @@ -18718,12 +18940,16 @@ entities: - type: Transform pos: -23.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10433 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10481 components: - type: MetaData @@ -18732,6 +18958,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10498 components: - type: MetaData @@ -18739,6 +18967,8 @@ entities: - type: Transform pos: 24.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10571 components: - type: MetaData @@ -18747,6 +18977,8 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10603 components: - type: MetaData @@ -18754,6 +18986,8 @@ entities: - type: Transform pos: 22.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17199 components: - type: MetaData @@ -18762,6 +18996,8 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17604 components: - type: MetaData @@ -18770,6 +19006,8 @@ entities: rot: 3.141592653589793 rad pos: -26.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20615 components: - type: MetaData @@ -18777,6 +19015,8 @@ entities: - type: Transform pos: 43.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20945 components: - type: MetaData @@ -18784,12 +19024,16 @@ entities: - type: Transform pos: 90.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21254 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 21128 + - type: Fixtures + fixtures: {} - uid: 22146 components: - type: MetaData @@ -18798,6 +19042,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22471 components: - type: MetaData @@ -18805,6 +19051,8 @@ entities: - type: Transform pos: 17.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 10502 @@ -18814,6 +19062,8 @@ entities: - type: Transform pos: -7.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 8072 @@ -18821,21 +19071,29 @@ entities: - type: Transform pos: -56.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11667 components: - type: Transform pos: -38.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14658 components: - type: Transform pos: -56.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20327 components: - type: Transform pos: -38.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 8162 @@ -20220,6 +20478,12 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,-53.5 parent: 2 + - uid: 3557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 2 - uid: 3613 components: - type: Transform @@ -20786,6 +21050,8 @@ entities: - type: Transform pos: -16.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseBallBat entities: - uid: 16925 @@ -21990,11 +22256,15 @@ entities: - type: Transform pos: -31.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21001 components: - type: Transform pos: 93.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 6900 @@ -22116,6 +22386,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - uid: 4690 components: - type: Transform @@ -22131,6 +22403,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - uid: 4803 components: - type: Transform @@ -22146,6 +22420,8 @@ entities: - AutoClose - - Timer - Open + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 644 @@ -23326,6 +23602,21 @@ entities: - type: Transform pos: 41.5,18.5 parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 6136 components: - type: Transform @@ -23451,6 +23742,11 @@ entities: - type: Transform pos: 58.5,-28.5 parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 8993 components: - type: Transform @@ -30354,7 +30650,7 @@ entities: - uid: 12132 components: - type: Transform - pos: 33.5,22.5 + pos: 41.5,21.5 parent: 2 - uid: 12133 components: @@ -30416,21 +30712,6 @@ entities: - type: Transform pos: 33.5,18.5 parent: 2 - - uid: 12145 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 12146 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 12147 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - uid: 12148 components: - type: Transform @@ -30451,15 +30732,10 @@ entities: - type: Transform pos: 39.5,19.5 parent: 2 - - uid: 12152 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 12153 components: - type: Transform - pos: 39.5,21.5 + pos: 40.5,21.5 parent: 2 - uid: 12154 components: @@ -34146,6 +34422,21 @@ entities: - type: Transform pos: 65.5,10.5 parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 - uid: 13800 components: - type: Transform @@ -45079,6 +45370,11 @@ entities: - type: Transform pos: -8.5,51.5 parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 - uid: 3916 components: - type: Transform @@ -45114,6 +45410,26 @@ entities: - type: Transform pos: -9.5,45.5 parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 - uid: 5809 components: - type: Transform @@ -48654,6 +48970,21 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 - uid: 15007 components: - type: Transform @@ -52452,6 +52783,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,19.5 parent: 2 + - uid: 1951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 - uid: 2017 components: - type: Transform @@ -52476,6 +52813,18 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,21.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 2 - uid: 2199 components: - type: Transform @@ -52672,16 +53021,6 @@ entities: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 5741 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 5746 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 5756 components: - type: Transform @@ -52722,26 +53061,6 @@ entities: - type: Transform pos: 42.5,18.5 parent: 2 - - uid: 6054 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 6055 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 6056 - components: - - type: Transform - pos: 39.5,21.5 - parent: 2 - - uid: 6057 - components: - - type: Transform - pos: 40.5,21.5 - parent: 2 - uid: 6126 components: - type: Transform @@ -53481,6 +53800,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 + - uid: 13739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,20.5 + parent: 2 - uid: 13743 components: - type: Transform @@ -55363,6 +55688,12 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 + - uid: 14191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,21.5 + parent: 2 - uid: 14193 components: - type: Transform @@ -59403,6 +59734,12 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,6.5 parent: 2 + - uid: 12145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,20.5 + parent: 2 - uid: 14785 components: - type: Transform @@ -60041,6 +60378,8 @@ entities: - type: Transform pos: -19.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClockworkShield entities: - uid: 16234 @@ -60251,18 +60590,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -60600,18 +60929,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -60645,18 +60964,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -60669,6 +60978,8 @@ entities: - 3579 - 3580 - 3602 + - type: Fixtures + fixtures: {} - proto: ClosetWallEmergencyFilledRandom entities: - uid: 1812 @@ -60676,160 +60987,216 @@ entities: - type: Transform pos: -30.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4582 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5703 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7555 components: - type: Transform pos: 50.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8276 components: - type: Transform pos: 68.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8279 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8283 components: - type: Transform pos: 60.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8285 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8288 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8289 components: - type: Transform pos: -4.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8293 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8295 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8297 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8299 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8301 components: - type: Transform pos: 39.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8306 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8307 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8310 components: - type: Transform pos: 35.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8311 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8314 components: - type: Transform pos: 7.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8315 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8318 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8319 components: - type: Transform pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8323 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8327 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8332 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8333 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22396 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallFire entities: - uid: 8277 @@ -60838,6 +61205,8 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8292 components: - type: Transform @@ -60850,18 +61219,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -60873,6 +61232,8 @@ entities: - 14914 - 10635 - 8869 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 1889 @@ -60880,183 +61241,247 @@ entities: - type: Transform pos: -34.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8275 components: - type: Transform pos: 67.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8278 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8284 components: - type: Transform pos: 59.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8286 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8287 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8290 components: - type: Transform pos: -3.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8294 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8296 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8300 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8302 components: - type: Transform pos: 40.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8305 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8308 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8309 components: - type: Transform pos: 37.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8312 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8313 components: - type: Transform pos: 6.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8316 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8317 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8320 components: - type: Transform pos: -21.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8324 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8325 components: - type: Transform pos: -51.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8326 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8328 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8331 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8334 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16062 components: - type: Transform pos: 51.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16213 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16486 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19766 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19827 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22398 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClothingBackpackClown entities: - uid: 8189 @@ -61280,8 +61705,6 @@ entities: pos: 78.51643,-29.480162 parent: 2 - type: Insulated - missingComponents: - - Food - proto: ClothingHandsGlovesColorYellowBudget entities: - uid: 4367 @@ -61882,6 +62305,10 @@ entities: - type: Transform pos: -12.610516,41.543507 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtOfLife entities: - uid: 1 @@ -61889,6 +62316,10 @@ entities: - type: Transform pos: -41.576744,-67.49844 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPerformer entities: - uid: 17336 @@ -61896,6 +62327,10 @@ entities: - type: Transform pos: -61.41592,-34.25932 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtTacticalMaid entities: - uid: 5925 @@ -61903,6 +62338,10 @@ entities: - type: Transform pos: 51.707905,-26.10129 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitClown entities: - uid: 910 @@ -61910,6 +62349,10 @@ entities: - type: Transform pos: -30.494896,6.9984527 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitDetectiveGrey entities: - uid: 15938 @@ -61917,6 +62360,10 @@ entities: - type: Transform pos: -12.459118,41.619743 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitMusician entities: - uid: 15986 @@ -61925,6 +62372,10 @@ entities: parent: 971 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPirate entities: - uid: 16072 @@ -61932,6 +62383,10 @@ entities: - type: Transform pos: 55.66548,-27.57367 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClownRecorder entities: - uid: 1572 @@ -62577,12 +63032,6 @@ entities: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 8046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,21.5 - parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 4073 @@ -62608,14 +63057,6 @@ entities: - type: Transform pos: 68.5,-25.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 14191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,20.5 - parent: 2 - proto: ComputerSalvageJobBoard entities: - uid: 14807 @@ -63180,18 +63621,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -63989,59 +64420,79 @@ entities: - type: Transform pos: -15.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8336 components: - type: Transform pos: -4.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8338 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8339 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8340 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8341 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16620 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17341 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17485 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 4735 @@ -70947,6 +71398,8 @@ entities: - type: Transform pos: 48.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 996 @@ -70961,112 +71414,156 @@ entities: - type: Transform pos: -38.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15243 components: - type: Transform pos: -56.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19747 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20320 components: - type: Transform pos: -27.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20321 components: - type: Transform pos: 11.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20322 components: - type: Transform pos: 33.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20323 components: - type: Transform pos: 22.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20324 components: - type: Transform pos: -22.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20325 components: - type: Transform pos: -40.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20326 components: - type: Transform pos: -31.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20329 components: - type: Transform pos: -13.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20330 components: - type: Transform pos: 3.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20332 components: - type: Transform pos: 46.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20333 components: - type: Transform pos: 34.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20334 components: - type: Transform pos: 48.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20335 components: - type: Transform pos: 67.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20336 components: - type: Transform pos: 78.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20337 components: - type: Transform pos: 29.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20338 components: - type: Transform pos: -14.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20339 components: - type: Transform pos: -6.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20340 components: - type: Transform pos: 3.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22397 components: - type: Transform pos: 22.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 997 @@ -71282,6 +71779,8 @@ entities: devices: - 1650 - 4561 + - type: Fixtures + fixtures: {} - uid: 4588 components: - type: Transform @@ -71292,6 +71791,8 @@ entities: - 8702 - 4561 - 22483 + - type: Fixtures + fixtures: {} - uid: 7048 components: - type: Transform @@ -71304,6 +71805,8 @@ entities: - 8737 - 8738 - 12369 + - type: Fixtures + fixtures: {} - uid: 9188 components: - type: Transform @@ -71316,6 +71819,8 @@ entities: - 16366 - 18850 - 7358 + - type: Fixtures + fixtures: {} - uid: 11468 components: - type: Transform @@ -71327,6 +71832,8 @@ entities: - 19779 - 8692 - 8693 + - type: Fixtures + fixtures: {} - uid: 15597 components: - type: Transform @@ -71337,6 +71844,8 @@ entities: - 7938 - 7949 - 14066 + - type: Fixtures + fixtures: {} - uid: 17547 components: - type: Transform @@ -71355,6 +71864,8 @@ entities: - 8535 - 8534 - 18225 + - type: Fixtures + fixtures: {} - uid: 17548 components: - type: Transform @@ -71373,6 +71884,8 @@ entities: - 4324 - 4323 - 18226 + - type: Fixtures + fixtures: {} - uid: 17549 components: - type: Transform @@ -71390,6 +71903,8 @@ entities: - 8750 - 8749 - 18308 + - type: Fixtures + fixtures: {} - uid: 17550 components: - type: Transform @@ -71403,6 +71918,8 @@ entities: - 8751 - 8750 - 8749 + - type: Fixtures + fixtures: {} - uid: 17551 components: - type: Transform @@ -71424,6 +71941,8 @@ entities: - 6521 - 6520 - 18331 + - type: Fixtures + fixtures: {} - uid: 17552 components: - type: Transform @@ -71434,6 +71953,8 @@ entities: - 8757 - 8758 - 18428 + - type: Fixtures + fixtures: {} - uid: 17553 components: - type: Transform @@ -71444,6 +71965,8 @@ entities: devices: - 8743 - 18388 + - type: Fixtures + fixtures: {} - uid: 17554 components: - type: Transform @@ -71456,6 +71979,8 @@ entities: - 8741 - 8742 - 18358 + - type: Fixtures + fixtures: {} - uid: 17555 components: - type: Transform @@ -71467,6 +71992,8 @@ entities: - 8740 - 8739 - 18514 + - type: Fixtures + fixtures: {} - uid: 17556 components: - type: Transform @@ -71483,6 +72010,8 @@ entities: - 6521 - 6520 - 18441 + - type: Fixtures + fixtures: {} - uid: 17557 components: - type: Transform @@ -71495,6 +72024,8 @@ entities: - 8734 - 8735 - 18496 + - type: Fixtures + fixtures: {} - uid: 17559 components: - type: Transform @@ -71505,6 +72036,8 @@ entities: devices: - 8755 - 8756 + - type: Fixtures + fixtures: {} - uid: 17560 components: - type: Transform @@ -71515,6 +72048,8 @@ entities: - 8544 - 8545 - 18616 + - type: Fixtures + fixtures: {} - uid: 17561 components: - type: Transform @@ -71528,6 +72063,8 @@ entities: - 8547 - 8546 - 18535 + - type: Fixtures + fixtures: {} - uid: 17562 components: - type: Transform @@ -71540,6 +72077,8 @@ entities: - 5606 - 5607 - 18605 + - type: Fixtures + fixtures: {} - uid: 17563 components: - type: Transform @@ -71557,6 +72096,8 @@ entities: - 7175 - 7365 - 18564 + - type: Fixtures + fixtures: {} - uid: 17564 components: - type: Transform @@ -71570,6 +72111,8 @@ entities: - 8549 - 8555 - 18580 + - type: Fixtures + fixtures: {} - uid: 17565 components: - type: Transform @@ -71580,6 +72123,8 @@ entities: devices: - 8556 - 18629 + - type: Fixtures + fixtures: {} - uid: 17566 components: - type: Transform @@ -71592,6 +72137,8 @@ entities: - 8543 - 8542 - 18606 + - type: Fixtures + fixtures: {} - uid: 17567 components: - type: Transform @@ -71606,6 +72153,8 @@ entities: - 18707 - 18705 - 18703 + - type: Fixtures + fixtures: {} - uid: 17568 components: - type: Transform @@ -71618,6 +72167,8 @@ entities: - 8574 - 18813 - 8575 + - type: Fixtures + fixtures: {} - uid: 17569 components: - type: Transform @@ -71638,6 +72189,8 @@ entities: - 8565 - 8566 - 18681 + - type: Fixtures + fixtures: {} - uid: 17570 components: - type: Transform @@ -71648,6 +72201,8 @@ entities: - 8571 - 8572 - 18684 + - type: Fixtures + fixtures: {} - uid: 17571 components: - type: Transform @@ -71658,6 +72213,8 @@ entities: - 8570 - 8569 - 18756 + - type: Fixtures + fixtures: {} - uid: 17572 components: - type: Transform @@ -71669,6 +72226,8 @@ entities: - 8568 - 8567 - 18774 + - type: Fixtures + fixtures: {} - uid: 17573 components: - type: Transform @@ -71683,6 +72242,8 @@ entities: - 8583 - 8584 - 18743 + - type: Fixtures + fixtures: {} - uid: 17574 components: - type: Transform @@ -71697,6 +72258,8 @@ entities: - 1006 - 17575 - 19542 + - type: Fixtures + fixtures: {} - uid: 17577 components: - type: Transform @@ -71711,6 +72274,8 @@ entities: - 8643 - 8642 - 19543 + - type: Fixtures + fixtures: {} - uid: 17578 components: - type: Transform @@ -71723,6 +72288,8 @@ entities: - 8644 - 17580 - 19589 + - type: Fixtures + fixtures: {} - uid: 17581 components: - type: Transform @@ -71738,6 +72305,8 @@ entities: - 8644 - 8643 - 19582 + - type: Fixtures + fixtures: {} - uid: 17582 components: - type: Transform @@ -71749,6 +72318,8 @@ entities: - 8646 - 8647 - 19568 + - type: Fixtures + fixtures: {} - uid: 17583 components: - type: Transform @@ -71763,6 +72334,8 @@ entities: - 8650 - 8655 - 19510 + - type: Fixtures + fixtures: {} - uid: 17584 components: - type: Transform @@ -71773,6 +72346,8 @@ entities: devices: - 8653 - 19641 + - type: Fixtures + fixtures: {} - uid: 17585 components: - type: Transform @@ -71787,6 +72362,8 @@ entities: - 1007 - 8654 - 19581 + - type: Fixtures + fixtures: {} - uid: 17586 components: - type: Transform @@ -71802,6 +72379,8 @@ entities: - 1007 - 8682 - 19514 + - type: Fixtures + fixtures: {} - uid: 17587 components: - type: Transform @@ -71813,6 +72392,8 @@ entities: - 8692 - 8686 - 19790 + - type: Fixtures + fixtures: {} - uid: 17591 components: - type: Transform @@ -71829,6 +72410,8 @@ entities: - 4013 - 4012 - 19734 + - type: Fixtures + fixtures: {} - uid: 17592 components: - type: Transform @@ -71839,6 +72422,8 @@ entities: devices: - 8681 - 19973 + - type: Fixtures + fixtures: {} - uid: 17593 components: - type: Transform @@ -71857,6 +72442,8 @@ entities: - 8704 - 19681 - 19682 + - type: Fixtures + fixtures: {} - uid: 17594 components: - type: Transform @@ -71870,6 +72457,8 @@ entities: - 8705 - 17363 - 19800 + - type: Fixtures + fixtures: {} - uid: 17595 components: - type: Transform @@ -71879,6 +72468,8 @@ entities: devices: - 8705 - 19829 + - type: Fixtures + fixtures: {} - uid: 17597 components: - type: Transform @@ -71891,6 +72482,8 @@ entities: - 8709 - 8712 - 19969 + - type: Fixtures + fixtures: {} - uid: 17598 components: - type: Transform @@ -71910,6 +72503,8 @@ entities: - 8708 - 8709 - 19910 + - type: Fixtures + fixtures: {} - uid: 17599 components: - type: Transform @@ -71923,6 +72518,8 @@ entities: - 8716 - 8715 - 19951 + - type: Fixtures + fixtures: {} - uid: 17600 components: - type: Transform @@ -71936,6 +72533,8 @@ entities: - 8720 - 8719 - 19909 + - type: Fixtures + fixtures: {} - uid: 17601 components: - type: Transform @@ -71950,6 +72549,8 @@ entities: - 19902 - 16937 - 16936 + - type: Fixtures + fixtures: {} - uid: 17602 components: - type: Transform @@ -71961,6 +72562,8 @@ entities: - 8710 - 8711 - 19964 + - type: Fixtures + fixtures: {} - uid: 17603 components: - type: Transform @@ -71973,6 +72576,8 @@ entities: - 8732 - 8711 - 20219 + - type: Fixtures + fixtures: {} - uid: 17606 components: - type: Transform @@ -71984,6 +72589,8 @@ entities: - 14935 - 14934 - 20042 + - type: Fixtures + fixtures: {} - uid: 17607 components: - type: Transform @@ -71998,6 +72605,8 @@ entities: - 14937 - 14938 - 20039 + - type: Fixtures + fixtures: {} - uid: 17609 components: - type: Transform @@ -72011,6 +72620,8 @@ entities: - 17610 - 17611 - 20036 + - type: Fixtures + fixtures: {} - uid: 17612 components: - type: Transform @@ -72023,6 +72634,8 @@ entities: - 8675 - 8674 - 20004 + - type: Fixtures + fixtures: {} - uid: 17613 components: - type: Transform @@ -72033,6 +72646,8 @@ entities: devices: - 8536 - 18532 + - type: Fixtures + fixtures: {} - uid: 17614 components: - type: Transform @@ -72043,6 +72658,8 @@ entities: devices: - 8759 - 18516 + - type: Fixtures + fixtures: {} - uid: 17615 components: - type: Transform @@ -72054,6 +72671,8 @@ entities: - 8561 - 8562 - 18632 + - type: Fixtures + fixtures: {} - uid: 17616 components: - type: Transform @@ -72065,6 +72684,8 @@ entities: - 9187 - 14921 - 18831 + - type: Fixtures + fixtures: {} - uid: 17619 components: - type: Transform @@ -72077,6 +72698,8 @@ entities: - 8595 - 8605 - 18868 + - type: Fixtures + fixtures: {} - uid: 17620 components: - type: Transform @@ -72087,6 +72710,8 @@ entities: - 8606 - 8605 - 19420 + - type: Fixtures + fixtures: {} - uid: 17621 components: - type: Transform @@ -72101,6 +72726,8 @@ entities: - 13598 - 17622 - 19370 + - type: Fixtures + fixtures: {} - uid: 17623 components: - type: Transform @@ -72115,6 +72742,8 @@ entities: - 8617 - 8616 - 19351 + - type: Fixtures + fixtures: {} - uid: 17624 components: - type: Transform @@ -72125,6 +72754,8 @@ entities: devices: - 8616 - 19352 + - type: Fixtures + fixtures: {} - uid: 17625 components: - type: Transform @@ -72136,6 +72767,8 @@ entities: - 8777 - 8782 - 19018 + - type: Fixtures + fixtures: {} - uid: 17626 components: - type: Transform @@ -72148,6 +72781,8 @@ entities: - 8775 - 8783 - 19017 + - type: Fixtures + fixtures: {} - uid: 17627 components: - type: Transform @@ -72159,6 +72794,8 @@ entities: - 8774 - 8784 - 19032 + - type: Fixtures + fixtures: {} - uid: 17628 components: - type: Transform @@ -72183,6 +72820,8 @@ entities: - 492 - 493 - 491 + - type: Fixtures + fixtures: {} - uid: 17631 components: - type: Transform @@ -72194,6 +72833,8 @@ entities: - 8769 - 8773 - 19058 + - type: Fixtures + fixtures: {} - uid: 17632 components: - type: Transform @@ -72204,6 +72845,8 @@ entities: devices: - 8769 - 19071 + - type: Fixtures + fixtures: {} - uid: 17633 components: - type: Transform @@ -72215,6 +72858,8 @@ entities: - 8772 - 8771 - 21559 + - type: Fixtures + fixtures: {} - uid: 17634 components: - type: Transform @@ -72231,6 +72876,8 @@ entities: - 8636 - 8635 - 19474 + - type: Fixtures + fixtures: {} - uid: 17635 components: - type: Transform @@ -72244,6 +72891,8 @@ entities: - 8629 - 8630 - 19427 + - type: Fixtures + fixtures: {} - uid: 17636 components: - type: Transform @@ -72254,6 +72903,8 @@ entities: devices: - 8629 - 19460 + - type: Fixtures + fixtures: {} - uid: 17637 components: - type: Transform @@ -72268,6 +72919,8 @@ entities: - 1064 - 19327 - 19328 + - type: Fixtures + fixtures: {} - uid: 17638 components: - type: Transform @@ -72278,6 +72931,8 @@ entities: devices: - 4493 - 20181 + - type: Fixtures + fixtures: {} - uid: 17639 components: - type: Transform @@ -72293,6 +72948,8 @@ entities: - 8622 - 8623 - 19317 + - type: Fixtures + fixtures: {} - uid: 17641 components: - type: Transform @@ -72304,6 +72961,8 @@ entities: - 8664 - 8667 - 19631 + - type: Fixtures + fixtures: {} - uid: 17642 components: - type: Transform @@ -72318,6 +72977,8 @@ entities: - 8670 - 8671 - 19632 + - type: Fixtures + fixtures: {} - uid: 17643 components: - type: Transform @@ -72329,6 +72990,8 @@ entities: - 2692 - 18942 - 7082 + - type: Fixtures + fixtures: {} - uid: 17644 components: - type: Transform @@ -72345,6 +73008,8 @@ entities: - 2692 - 2690 - 18914 + - type: Fixtures + fixtures: {} - uid: 17645 components: - type: Transform @@ -72358,6 +73023,8 @@ entities: - 8597 - 8598 - 18871 + - type: Fixtures + fixtures: {} - uid: 17646 components: - type: Transform @@ -72377,6 +73044,8 @@ entities: - 3781 - 3780 - 19367 + - type: Fixtures + fixtures: {} - uid: 17647 components: - type: Transform @@ -72393,6 +73062,8 @@ entities: - 3787 - 3789 - 19167 + - type: Fixtures + fixtures: {} - uid: 17648 components: - type: Transform @@ -72415,6 +73086,8 @@ entities: - 6068 - 6069 - 19335 + - type: Fixtures + fixtures: {} - uid: 17649 components: - type: Transform @@ -72432,6 +73105,8 @@ entities: - 6373 - 6374 - 19306 + - type: Fixtures + fixtures: {} - uid: 17650 components: - type: Transform @@ -72450,6 +73125,8 @@ entities: - 6363 - 19304 - 19305 + - type: Fixtures + fixtures: {} - uid: 17651 components: - type: Transform @@ -72462,6 +73139,8 @@ entities: - 6353 - 6354 - 20178 + - type: Fixtures + fixtures: {} - uid: 17652 components: - type: Transform @@ -72474,6 +73153,8 @@ entities: - 6357 - 6356 - 20177 + - type: Fixtures + fixtures: {} - uid: 17654 components: - type: Transform @@ -72497,6 +73178,8 @@ entities: - 1057 - 8785 - 18289 + - type: Fixtures + fixtures: {} - uid: 17656 components: - type: Transform @@ -72517,6 +73200,8 @@ entities: - 8787 - 8788 - 8789 + - type: Fixtures + fixtures: {} - uid: 17658 components: - type: Transform @@ -72547,6 +73232,8 @@ entities: - 18904 - 18257 - 18256 + - type: Fixtures + fixtures: {} - uid: 17659 components: - type: Transform @@ -72569,6 +73256,8 @@ entities: - 1062 - 1061 - 18252 + - type: Fixtures + fixtures: {} - uid: 17662 components: - type: Transform @@ -72584,6 +73273,8 @@ entities: - 5307 - 5308 - 18249 + - type: Fixtures + fixtures: {} - uid: 17663 components: - type: Transform @@ -72601,6 +73292,8 @@ entities: - 5308 - 5307 - 5306 + - type: Fixtures + fixtures: {} - uid: 17664 components: - type: Transform @@ -72617,6 +73310,8 @@ entities: - 4338 - 4339 - 18243 + - type: Fixtures + fixtures: {} - uid: 17665 components: - type: Transform @@ -72631,6 +73326,8 @@ entities: - 4335 - 4334 - 18240 + - type: Fixtures + fixtures: {} - uid: 17666 components: - type: Transform @@ -72649,6 +73346,8 @@ entities: - 4332 - 4333 - 18237 + - type: Fixtures + fixtures: {} - uid: 17667 components: - type: Transform @@ -72665,6 +73364,8 @@ entities: - 4328 - 8760 - 17875 + - type: Fixtures + fixtures: {} - uid: 17669 components: - type: Transform @@ -72681,6 +73382,8 @@ entities: - 8541 - 8759 - 18235 + - type: Fixtures + fixtures: {} - uid: 17672 components: - type: Transform @@ -72704,6 +73407,8 @@ entities: - 8701 - 8700 - 18224 + - type: Fixtures + fixtures: {} - uid: 17673 components: - type: Transform @@ -72723,6 +73428,8 @@ entities: - 1039 - 19842 - 7455 + - type: Fixtures + fixtures: {} - uid: 17674 components: - type: Transform @@ -72739,6 +73446,8 @@ entities: - 1032 - 1033 - 18221 + - type: Fixtures + fixtures: {} - uid: 17675 components: - type: Transform @@ -72757,6 +73466,8 @@ entities: - 1032 - 1033 - 18218 + - type: Fixtures + fixtures: {} - uid: 17676 components: - type: Transform @@ -72772,6 +73483,8 @@ entities: - 1021 - 1020 - 18305 + - type: Fixtures + fixtures: {} - uid: 17677 components: - type: Transform @@ -72788,6 +73501,8 @@ entities: - 1017 - 1016 - 18302 + - type: Fixtures + fixtures: {} - uid: 17678 components: - type: Transform @@ -72805,6 +73520,8 @@ entities: - 1017 - 1018 - 18298 + - type: Fixtures + fixtures: {} - uid: 17680 components: - type: Transform @@ -72824,6 +73541,8 @@ entities: - 1027 - 8663 - 18295 + - type: Fixtures + fixtures: {} - uid: 17682 components: - type: Transform @@ -72845,6 +73564,8 @@ entities: - 1054 - 8666 - 18292 + - type: Fixtures + fixtures: {} - uid: 19605 components: - type: Transform @@ -72855,6 +73576,8 @@ entities: devices: - 17575 - 17576 + - type: Fixtures + fixtures: {} - uid: 20218 components: - type: Transform @@ -72869,6 +73592,8 @@ entities: - 4015 - 8697 - 8696 + - type: Fixtures + fixtures: {} - uid: 20221 components: - type: Transform @@ -72884,6 +73609,8 @@ entities: - 8724 - 8725 - 8726 + - type: Fixtures + fixtures: {} - uid: 20223 components: - type: Transform @@ -72899,6 +73626,8 @@ entities: - 4755 - 17500 - 17501 + - type: Fixtures + fixtures: {} - uid: 20224 components: - type: Transform @@ -72910,6 +73639,8 @@ entities: - 8577 - 8580 - 18727 + - type: Fixtures + fixtures: {} - uid: 20232 components: - type: Transform @@ -72920,6 +73651,8 @@ entities: devices: - 8966 - 8779 + - type: Fixtures + fixtures: {} - uid: 20234 components: - type: Transform @@ -72930,6 +73663,8 @@ entities: devices: - 3206 - 8781 + - type: Fixtures + fixtures: {} - uid: 20241 components: - type: Transform @@ -72947,6 +73682,8 @@ entities: - 8611 - 8612 - 18282 + - type: Fixtures + fixtures: {} - uid: 20244 components: - type: Transform @@ -72959,6 +73696,8 @@ entities: - 8661 - 8640 - 19483 + - type: Fixtures + fixtures: {} - uid: 20245 components: - type: Transform @@ -72972,6 +73711,8 @@ entities: - 8654 - 8653 - 19509 + - type: Fixtures + fixtures: {} - uid: 20247 components: - type: Transform @@ -72985,6 +73726,8 @@ entities: - 8660 - 8656 - 19642 + - type: Fixtures + fixtures: {} - uid: 21112 components: - type: Transform @@ -72995,6 +73738,8 @@ entities: devices: - 21115 - 21114 + - type: Fixtures + fixtures: {} - uid: 22351 components: - type: Transform @@ -73006,6 +73751,8 @@ entities: - 22167 - 22202 - 22201 + - type: Fixtures + fixtures: {} - uid: 22357 components: - type: Transform @@ -73018,6 +73765,8 @@ entities: - 14937 - 14938 - 22168 + - type: Fixtures + fixtures: {} - uid: 22432 components: - type: Transform @@ -73027,6 +73776,8 @@ entities: devices: - 22203 - 22430 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 1003 @@ -73035,12 +73786,16 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17590 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Firelock entities: - uid: 877 @@ -76484,7 +77239,7 @@ entities: - type: Transform pos: 14.503466,-51.443764 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 4556 components: @@ -97068,19 +97823,19 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-30.5 parent: 2 -- proto: GlowstickBase +- proto: GlowstickBlue entities: - - uid: 5750 + - uid: 5751 components: - type: Transform - pos: -36.60555,6.794016 + pos: -36.440437,6.592211 parent: 2 -- proto: GlowstickBlue +- proto: GlowstickGreen entities: - - uid: 5751 + - uid: 5750 components: - type: Transform - pos: -36.440437,6.592211 + pos: -36.60555,6.794016 parent: 2 - proto: GravityGenerator entities: @@ -101906,11 +102661,6 @@ entities: - type: Transform pos: 66.5,14.5 parent: 2 - - uid: 16368 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 16414 components: - type: Transform @@ -102507,11 +103257,6 @@ entities: - type: Transform pos: 60.5,30.5 parent: 2 - - uid: 17061 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 20267 components: - type: Transform @@ -102767,18 +103512,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: GyroscopeUnanchored entities: - uid: 16908 @@ -103815,12 +104550,16 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22194 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 16922 @@ -103828,11 +104567,15 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20451 components: - type: Transform pos: 49.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 15174 @@ -103841,69 +104584,93 @@ entities: rot: 3.141592653589793 rad pos: 9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20452 components: - type: Transform pos: 49.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20453 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20454 components: - type: Transform pos: 23.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20456 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20457 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20458 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20459 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20460 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20461 components: - type: Transform pos: 3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20475 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 20462 @@ -103912,18 +104679,24 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20463 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20464 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 20480 @@ -103932,18 +104705,24 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20481 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20482 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 20473 @@ -103952,18 +104731,24 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20474 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20477 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 20465 @@ -103972,40 +104757,54 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20466 components: - type: Transform pos: -33.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20467 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20468 components: - type: Transform pos: -21.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20469 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20470 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20471 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 20472 @@ -104013,18 +104812,24 @@ entities: - type: Transform pos: -32.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20478 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20479 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 17196 @@ -104354,6 +105159,13 @@ entities: - type: Transform pos: 5.4943604,41.49463 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 8046 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 - proto: LeavesCannabis entities: - uid: 7018 @@ -104416,6 +105228,8 @@ entities: 22049: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 1479 @@ -104470,18 +105284,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104513,18 +105317,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104549,18 +105343,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104585,18 +105369,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8968438 + Nitrogen: 7.1357465 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104689,18 +105463,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 5672 components: - type: Transform @@ -104738,18 +105502,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104774,18 +105528,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8978151 - - 7.1394 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8978151 + Nitrogen: 7.1394 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104810,18 +105554,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104844,18 +105578,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104878,18 +105602,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104914,18 +105628,8 @@ entities: immutable: False temperature: 293.1465 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104951,18 +105655,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8977377 + Nitrogen: 7.139109 - type: ContainerContainer containers: entity_storage: !type:Container @@ -104990,18 +105684,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105024,18 +105708,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105060,18 +105734,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105096,18 +105760,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105166,18 +105820,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - uid: 5047 components: - type: Transform @@ -105189,18 +105833,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - uid: 5050 components: - type: Transform @@ -105212,18 +105846,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - uid: 5053 components: - type: Transform @@ -105235,18 +105859,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - proto: LockerSyndicatePersonal entities: - uid: 21051 @@ -105260,18 +105874,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8968438 + Nitrogen: 7.1357465 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105293,12 +105897,16 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20933 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 4586 @@ -105312,18 +105920,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -105997,11 +106595,15 @@ entities: - type: Transform pos: 15.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14865 components: - type: Transform pos: 13.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCube entities: - uid: 5257 @@ -106410,6 +107012,8 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 21105 @@ -106479,10 +107083,15 @@ entities: parent: 2 - proto: OreBox entities: - - uid: 1951 + - uid: 6058 components: - type: Transform - pos: 38.5,20.5 + pos: 41.5,20.5 + parent: 2 + - uid: 22558 + components: + - type: Transform + pos: 40.5,20.5 parent: 2 - proto: OreProcessor entities: @@ -106701,11 +107310,11 @@ entities: After several simulations where Superconducting Magnetic Energy Storage units were drained from the main system from [italic]a variety[/italic] of user errors and other shenanigans, it has been determined that the Singularity should be put on its own power loop, disconnected from the main station. The upsides of this include but are not limited to: - [bold]1.[/bold] Limited external forces from the containments power. + [bold]1.[/bold] Limited external forces from the containments power. - [bold]2.[/bold] An "early warning" system, if you see JUST the PA room run out of power, you know there is an issue. + [bold]2.[/bold] An "early warning" system, if you see JUST the PA room run out of power, you know there is an issue. - [bold]3.[/bold] Due to being on its own small loop, its much easier to spot faults in the system. + [bold]3.[/bold] Due to being on its own small loop, its much easier to spot faults in the system. [italic]While we have listed the upsides we also acknowledge the downside,[/italic] for it being on its own loop you will need an external force if the system "runs out of juice". Our recommendation for this is simply attaching a generator to said SMES and letting it get to full charge before continuing operations but as said from another of our technicians... "just attach it to the main grid for like, a hot moment, and kickstart the thing!" @@ -106714,7 +107323,13 @@ entities: [italic]We are leaving this in your qualified hands and to your discretion. [bold]Best of wishes, NanoTrasen technical build team.[/bold][/italic] editingDisabled: True - type: SolutionContainerManager - solutions: null + solutions: + food: + temperature: 293.15 + canReact: True + maxVol: 0 + name: food + reagents: [] containers: - food - type: Fixtures @@ -106785,7 +107400,13 @@ entities: [italic]Best wishes, [bold]NanoTrasen Technical Build Team.[/bold][/italic] editingDisabled: True - type: SolutionContainerManager - solutions: null + solutions: + food: + temperature: 293.15 + canReact: True + maxVol: 0 + name: food + reagents: [] containers: - food - type: Fixtures @@ -107554,6 +108175,13 @@ entities: - type: Transform pos: 66.48072,-57.55628 parent: 2 +- proto: PlushieSpawner50 + entities: + - uid: 14225 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 - proto: PonderingOrb entities: - uid: 8322 @@ -107701,6 +108329,8 @@ entities: - type: Transform pos: -36.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 16607 @@ -107708,6 +108338,8 @@ entities: - type: Transform pos: 4.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - uid: 21047 @@ -107715,6 +108347,8 @@ entities: - type: Transform pos: -37.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 20927 @@ -107722,6 +108356,8 @@ entities: - type: Transform pos: 68.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 21049 @@ -107729,6 +108365,8 @@ entities: - type: Transform pos: -33.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 21048 @@ -107736,6 +108374,8 @@ entities: - type: Transform pos: -33.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 21046 @@ -107743,6 +108383,8 @@ entities: - type: Transform pos: -37.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 21448 @@ -107750,6 +108392,8 @@ entities: - type: Transform pos: -33.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 20517 @@ -107757,6 +108401,8 @@ entities: - type: Transform pos: 60.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitScience entities: - uid: 16202 @@ -107765,6 +108411,8 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 1580 @@ -110455,6 +111103,11 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 12152 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 12668 components: - type: Transform @@ -114051,12 +114704,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,21.5 parent: 2 - - uid: 8846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,20.5 - parent: 2 - uid: 8847 components: - type: Transform @@ -117298,7 +117945,7 @@ entities: pos: 71.5,-29.5 parent: 2 - type: DnaServer - serverId: 53 + serverId: 55 - proto: RevolverCapGun entities: - uid: 16113 @@ -117330,20 +117977,6 @@ entities: - type: Transform pos: 45.20288,-23.541895 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 6058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - - type: ContainerContainer - containers: - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - proto: Screen entities: - uid: 1952 @@ -117351,224 +117984,312 @@ entities: - type: Transform pos: -29.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1969 components: - type: Transform pos: -34.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3271 components: - type: Transform pos: 15.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7573 components: - type: Transform pos: -2.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10319 components: - type: Transform pos: 18.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10320 components: - type: Transform pos: 40.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12087 components: - type: Transform pos: 71.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14883 components: - type: Transform pos: -45.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16012 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16057 components: - type: Transform pos: 55.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16166 components: - type: Transform pos: 65.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16445 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16617 components: - type: Transform pos: 11.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16618 components: - type: Transform pos: 6.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16804 components: - type: Transform pos: -57.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16940 components: - type: Transform pos: 40.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17205 components: - type: Transform pos: 25.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17223 components: - type: Transform rot: 4.71238898038469 rad pos: 30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20311 components: - type: Transform pos: -6.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20312 components: - type: Transform pos: -22.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20313 components: - type: Transform pos: -17.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20796 components: - type: Transform pos: -21.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20797 components: - type: Transform pos: -9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20798 components: - type: Transform pos: -3.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20799 components: - type: Transform pos: 35.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20800 components: - type: Transform pos: 23.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20801 components: - type: Transform pos: 48.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20802 components: - type: Transform pos: 44.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20803 components: - type: Transform pos: 22.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20806 components: - type: Transform pos: 26.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20808 components: - type: Transform pos: -1.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20809 components: - type: Transform pos: -44.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20810 components: - type: Transform pos: -50.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20811 components: - type: Transform pos: -55.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20812 components: - type: Transform pos: -55.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20813 components: - type: Transform pos: -42.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20814 components: - type: Transform pos: -49.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20816 components: - type: Transform pos: -38.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21033 components: - type: Transform pos: 31.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21034 components: - type: Transform pos: -33.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22184 components: - type: Transform pos: 21.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22188 components: - type: Transform pos: 19.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22189 components: - type: Transform pos: 21.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22190 components: - type: Transform pos: 17.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 2052 @@ -117830,6 +118551,8 @@ entities: - type: Transform pos: 42.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShelfMetal entities: - uid: 8462 @@ -117837,6 +118560,8 @@ entities: - type: Transform pos: 2.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShotGunCabinetFilled entities: - uid: 8186 @@ -117845,6 +118570,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shower entities: - uid: 6882 @@ -118557,11 +119284,15 @@ entities: - type: Transform pos: 17.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22196 components: - type: Transform pos: 18.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 21887 @@ -118569,11 +119300,15 @@ entities: - type: Transform pos: 20.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22186 components: - type: Transform pos: 21.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 2074 @@ -118601,6 +119336,8 @@ entities: 2073: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2075 components: - type: MetaData @@ -118617,6 +119354,8 @@ entities: 159: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2076 components: - type: MetaData @@ -118636,6 +119375,8 @@ entities: 16939: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2077 components: - type: MetaData @@ -118649,6 +119390,8 @@ entities: 6: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2079 components: - type: MetaData @@ -118662,6 +119405,8 @@ entities: 7: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15610 components: - type: MetaData @@ -118675,6 +119420,8 @@ entities: 12667: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20353 components: - type: MetaData @@ -118694,6 +119441,8 @@ entities: 20350: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21867 components: - type: MetaData @@ -118713,6 +119462,8 @@ entities: 6516: - - Pressed - Open + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 2018 @@ -118728,6 +119479,8 @@ entities: 16684: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2100 components: - type: MetaData @@ -118750,6 +119503,8 @@ entities: 2694: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4520 components: - type: MetaData @@ -118769,6 +119524,8 @@ entities: 4423: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4548 components: - type: MetaData @@ -118800,6 +119557,8 @@ entities: 4540: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5653 components: - type: MetaData @@ -118819,6 +119578,8 @@ entities: 22861: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6961 components: - type: MetaData @@ -118835,6 +119596,8 @@ entities: 6905: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 7032 components: - type: MetaData @@ -118848,6 +119611,8 @@ entities: 14224: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7039 components: - type: MetaData @@ -118861,6 +119626,8 @@ entities: 16058: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7054 components: - type: MetaData @@ -118869,6 +119636,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7798 components: - type: MetaData @@ -118885,6 +119654,8 @@ entities: 11059: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8151 components: - type: MetaData @@ -118901,6 +119672,8 @@ entities: 11059: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8185 components: - type: MetaData @@ -118923,6 +119696,8 @@ entities: 8687: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8530 components: - type: MetaData @@ -118935,6 +119710,8 @@ entities: 8242: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 8532 components: - type: MetaData @@ -118947,6 +119724,8 @@ entities: 8243: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 12911 components: - type: MetaData @@ -118972,6 +119751,8 @@ entities: 2068: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12913 components: - type: MetaData @@ -118987,6 +119768,8 @@ entities: 5516: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12914 components: - type: MetaData @@ -119006,6 +119789,8 @@ entities: 7334: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12916 components: - type: MetaData @@ -119025,6 +119810,8 @@ entities: 7337: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14403 components: - type: MetaData @@ -119037,6 +119824,8 @@ entities: 20777: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14879 components: - type: MetaData @@ -119050,6 +119839,8 @@ entities: 1686: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15913 components: - type: MetaData @@ -119078,6 +119869,8 @@ entities: 7377: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16121 components: - type: MetaData @@ -119091,6 +119884,8 @@ entities: 1688: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16148 components: - type: Transform @@ -119101,6 +119896,8 @@ entities: 16147: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16149 components: - type: Transform @@ -119111,6 +119908,8 @@ entities: 16146: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16628 components: - type: Transform @@ -119122,6 +119921,8 @@ entities: 16627: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16704 components: - type: MetaData @@ -119183,6 +119984,8 @@ entities: 9248: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17461 components: - type: MetaData @@ -119199,6 +120002,8 @@ entities: 20827: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17491 components: - type: MetaData @@ -119221,6 +120026,8 @@ entities: 17495: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17499 components: - type: MetaData @@ -119240,6 +120047,8 @@ entities: 17497: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17505 components: - type: MetaData @@ -119259,6 +120068,8 @@ entities: 22862: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17507 components: - type: MetaData @@ -119287,6 +120098,8 @@ entities: 8592: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17516 components: - type: MetaData @@ -119309,6 +120122,8 @@ entities: 22860: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17517 components: - type: MetaData @@ -119324,6 +120139,8 @@ entities: 6546: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17518 components: - type: MetaData @@ -119339,6 +120156,8 @@ entities: 6551: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17519 components: - type: MetaData @@ -119354,6 +120173,8 @@ entities: 6549: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17520 components: - type: MetaData @@ -119375,6 +120196,8 @@ entities: 17521: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17526 components: - type: MetaData @@ -119391,6 +120214,8 @@ entities: 2908: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18465 components: - type: MetaData @@ -119406,6 +120231,8 @@ entities: 19928: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20319 components: - type: MetaData @@ -119421,6 +120248,8 @@ entities: 7123: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20781 components: - type: MetaData @@ -119433,6 +120262,8 @@ entities: 20783: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20784 components: - type: MetaData @@ -119446,6 +120277,8 @@ entities: 20778: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20785 components: - type: MetaData @@ -119459,6 +120292,8 @@ entities: 20779: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20786 components: - type: MetaData @@ -119472,6 +120307,8 @@ entities: 20780: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21235 components: - type: Transform @@ -119486,6 +120323,8 @@ entities: 21192: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21451 components: - type: MetaData @@ -119503,6 +120342,8 @@ entities: - Close - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 21844 components: - type: MetaData @@ -119522,6 +120363,8 @@ entities: 17479: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21873 components: - type: MetaData @@ -119535,6 +120378,8 @@ entities: 21874: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21875 components: - type: MetaData @@ -119548,6 +120393,8 @@ entities: 14851: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21876 components: - type: MetaData @@ -119561,6 +120408,8 @@ entities: 21877: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22454 components: - type: Transform @@ -119575,6 +120424,8 @@ entities: 22453: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 8366 @@ -119582,6 +120433,8 @@ entities: - type: Transform pos: 72.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 7214 @@ -119589,6 +120442,8 @@ entities: - type: Transform pos: 66.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 2145 @@ -119596,11 +120451,15 @@ entities: - type: Transform pos: -44.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3123 components: - type: Transform pos: -50.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 4749 @@ -119609,6 +120468,8 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 2080 @@ -119616,16 +120477,22 @@ entities: - type: Transform pos: 22.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4791 components: - type: Transform pos: 15.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8347 components: - type: Transform pos: 14.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 6812 @@ -119633,6 +120500,8 @@ entities: - type: Transform pos: -18.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 6811 @@ -119640,6 +120509,8 @@ entities: - type: Transform pos: 52.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 21893 @@ -119647,6 +120518,8 @@ entities: - type: Transform pos: 47.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 6813 @@ -119654,6 +120527,8 @@ entities: - type: Transform pos: 46.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 6814 @@ -119661,6 +120536,8 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 21894 @@ -119668,11 +120545,15 @@ entities: - type: Transform pos: 30.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21895 components: - type: Transform pos: 24.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 2082 @@ -119680,6 +120561,8 @@ entities: - type: Transform pos: -25.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 5964 @@ -119687,11 +120570,15 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8369 components: - type: Transform pos: 42.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 2699 @@ -119699,6 +120586,8 @@ entities: - type: Transform pos: 30.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 7038 @@ -119707,6 +120596,8 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 17068 @@ -119714,32 +120605,44 @@ entities: - type: Transform pos: 30.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20805 components: - type: Transform pos: 27.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21077 components: - type: Transform pos: 55.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21125 components: - type: Transform pos: 50.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22095 components: - type: Transform pos: 11.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22500 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 13599 @@ -119748,41 +120651,55 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13600 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13601 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13602 components: - type: Transform pos: 18.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13603 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13604 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21869 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBrig entities: - uid: 13605 @@ -119791,6 +120708,8 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 13606 @@ -119798,12 +120717,16 @@ entities: - type: Transform pos: -22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13607 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 13608 @@ -119812,6 +120735,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 13609 @@ -119819,6 +120744,8 @@ entities: - type: Transform pos: 52.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 13610 @@ -119826,12 +120753,16 @@ entities: - type: Transform pos: -27.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13611 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 13612 @@ -119840,16 +120771,22 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20489 components: - type: Transform pos: -25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20864 components: - type: Transform pos: 16.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 13613 @@ -119858,42 +120795,56 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13614 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13615 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13616 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13617 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13618 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17454 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 13619 @@ -119902,12 +120853,16 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13620 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 13621 @@ -119915,6 +120870,8 @@ entities: - type: Transform pos: 44.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 13622 @@ -119922,11 +120879,15 @@ entities: - type: Transform pos: 18.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13623 components: - type: Transform pos: -25.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 13624 @@ -119934,18 +120895,24 @@ entities: - type: Transform pos: -25.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13625 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13626 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 13627 @@ -119954,17 +120921,23 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13628 components: - type: Transform pos: -27.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13629 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 17449 @@ -119973,41 +120946,55 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20486 components: - type: Transform pos: -25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20487 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20490 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20491 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21908 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21910 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 13630 @@ -120016,6 +121003,8 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 7179 @@ -120024,35 +121013,47 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13631 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13632 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13633 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13634 components: - type: Transform pos: -25.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13647 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 13635 @@ -120061,30 +121062,40 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13638 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13639 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 13640 @@ -120093,36 +121104,48 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13641 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13643 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13644 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20488 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 13645 @@ -120131,12 +121154,16 @@ entities: rot: 3.141592653589793 rad pos: 16.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13646 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 7904 @@ -120145,6 +121172,8 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDoors entities: - uid: 6816 @@ -120152,26 +121181,36 @@ entities: - type: Transform pos: 37.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8119 components: - type: Transform pos: -54.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8349 components: - type: Transform pos: -40.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8351 components: - type: Transform pos: -40.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8352 components: - type: Transform pos: -54.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 6817 @@ -120179,157 +121218,217 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6818 components: - type: Transform pos: 13.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7864 components: - type: Transform pos: 13.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8356 components: - type: Transform pos: -52.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8357 components: - type: Transform pos: 40.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8358 components: - type: Transform pos: 37.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8359 components: - type: Transform pos: 0.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8360 components: - type: Transform pos: -5.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9268 components: - type: Transform pos: -12.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9348 components: - type: Transform pos: -2.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17335 components: - type: Transform pos: -2.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17506 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17509 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17510 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17511 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20349 components: - type: Transform pos: -0.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21111 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22016 components: - type: Transform pos: 27.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22018 components: - type: Transform pos: 11.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22019 components: - type: Transform pos: 25.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22029 components: - type: Transform pos: 22.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22434 components: - type: Transform pos: 14.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22435 components: - type: Transform pos: 52.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22436 components: - type: Transform pos: -37.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22440 components: - type: Transform pos: -22.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22441 components: - type: Transform pos: -61.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22442 components: - type: Transform pos: 63.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22443 components: - type: Transform pos: 88.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22444 components: - type: Transform pos: 62.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 6819 @@ -120337,6 +121436,8 @@ entities: - type: Transform pos: 15.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 2083 @@ -120344,11 +121445,15 @@ entities: - type: Transform pos: -4.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15951 components: - type: Transform pos: 15.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 15261 @@ -120356,26 +121461,36 @@ entities: - type: Transform pos: 66.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15262 components: - type: Transform pos: 66.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15263 components: - type: Transform pos: 66.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16026 components: - type: Transform pos: -21.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17016 components: - type: Transform pos: -19.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 7704 @@ -120384,6 +121499,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 6810 @@ -120391,6 +121508,8 @@ entities: - type: Transform pos: 48.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 8361 @@ -120398,6 +121517,8 @@ entities: - type: Transform pos: 15.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 8362 @@ -120405,11 +121526,15 @@ entities: - type: Transform pos: 32.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8363 components: - type: Transform pos: 32.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 19808 @@ -120417,6 +121542,8 @@ entities: - type: Transform pos: 51.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 2084 @@ -120424,6 +121551,8 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 2085 @@ -120432,6 +121561,8 @@ entities: rot: 3.141592653589793 rad pos: -27.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 4822 @@ -120440,6 +121571,8 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 6821 @@ -120447,6 +121580,8 @@ entities: - type: Transform pos: -14.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 6823 @@ -120454,6 +121589,8 @@ entities: - type: Transform pos: -46.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 6822 @@ -120461,6 +121598,8 @@ entities: - type: Transform pos: -22.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 22501 @@ -120469,6 +121608,8 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 5492 @@ -120477,11 +121618,15 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6815 components: - type: Transform pos: 22.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 4375 @@ -120489,6 +121634,8 @@ entities: - type: Transform pos: 31.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 6824 @@ -120496,6 +121643,8 @@ entities: - type: Transform pos: 44.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 6665 @@ -120503,11 +121652,15 @@ entities: - type: Transform pos: 50.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14213 components: - type: Transform pos: 47.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen1 entities: - uid: 19752 @@ -120515,6 +121668,8 @@ entities: - type: Transform pos: 34.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen2 entities: - uid: 19751 @@ -120522,6 +121677,8 @@ entities: - type: Transform pos: 35.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen3 entities: - uid: 19750 @@ -120529,6 +121686,8 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen4 entities: - uid: 19749 @@ -120536,6 +121695,8 @@ entities: - type: Transform pos: 37.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen5 entities: - uid: 19748 @@ -120543,6 +121704,8 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 3096 @@ -120550,6 +121713,8 @@ entities: - type: Transform pos: -52.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNTMine entities: - uid: 7084 @@ -120557,6 +121722,8 @@ entities: - type: Transform pos: 32.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 5110 @@ -120564,6 +121731,8 @@ entities: - type: Transform pos: -2.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 2091 @@ -120571,6 +121740,8 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignReception entities: - uid: 854 @@ -120578,21 +121749,29 @@ entities: - type: Transform pos: 24.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21597 components: - type: Transform pos: 57.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21598 components: - type: Transform pos: 44.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21599 components: - type: Transform pos: 0.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 21619 @@ -120601,6 +121780,8 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 21620 @@ -120609,6 +121790,8 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 20295 @@ -120616,6 +121799,8 @@ entities: - type: Transform pos: 15.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 21928 @@ -120623,6 +121808,8 @@ entities: - type: Transform pos: 61.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 7162 @@ -120630,6 +121817,8 @@ entities: - type: Transform pos: 60.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 855 @@ -120637,6 +121826,8 @@ entities: - type: Transform pos: 32.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 7158 @@ -120644,6 +121835,8 @@ entities: - type: Transform pos: 62.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 6827 @@ -120651,81 +121844,113 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15635 components: - type: Transform pos: -41.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15929 components: - type: Transform pos: -45.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16658 components: - type: Transform pos: -41.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16659 components: - type: Transform pos: -45.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17248 components: - type: Transform pos: 49.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17249 components: - type: Transform pos: 43.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17250 components: - type: Transform pos: 39.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17251 components: - type: Transform pos: 55.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17252 components: - type: Transform pos: 61.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17253 components: - type: Transform pos: 64.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21950 components: - type: Transform pos: 53.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22024 components: - type: Transform pos: 15.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22025 components: - type: Transform pos: 15.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22026 components: - type: Transform pos: 23.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22027 components: - type: Transform pos: 23.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 6826 @@ -120733,6 +121958,8 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 5111 @@ -120740,6 +121967,8 @@ entities: - type: Transform pos: 0.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 21937 @@ -120747,6 +121976,8 @@ entities: - type: Transform pos: 71.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 8354 @@ -120754,11 +121985,15 @@ entities: - type: Transform pos: -55.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8355 components: - type: Transform pos: -55.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 6825 @@ -120766,6 +122001,8 @@ entities: - type: Transform pos: 27.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 3616 @@ -120774,65 +122011,89 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3617 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5726 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6828 components: - type: Transform pos: -5.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8273 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21938 components: - type: Transform pos: -10.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21948 components: - type: Transform pos: 71.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21951 components: - type: Transform pos: -23.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21953 components: - type: Transform pos: -57.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21954 components: - type: Transform pos: 68.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21991 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22185 components: - type: Transform pos: 20.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 6886 @@ -120841,6 +122102,8 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 7586 @@ -120849,12 +122112,16 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7591 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 4404 @@ -120862,6 +122129,8 @@ entities: - type: Transform pos: 40.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 21949 @@ -120869,6 +122138,8 @@ entities: - type: Transform pos: 53.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 6829 @@ -120876,6 +122147,8 @@ entities: - type: Transform pos: 56.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 2092 @@ -121621,7 +122894,7 @@ entities: - type: Transform pos: 21.5,-16.5 parent: 2 -- proto: SpacemenFigureSpawner +- proto: SpacemenFigurineSpawner90 entities: - uid: 15870 components: @@ -121834,28 +123107,6 @@ entities: - type: Transform pos: -37.5,13.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 2117 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - proto: SpawnPointCaptain entities: - uid: 4578 @@ -122143,23 +123394,6 @@ entities: - type: Transform pos: 71.5,-22.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 5704 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 - proto: SpawnPointScientist entities: - uid: 7447 @@ -122223,6 +123457,30 @@ entities: - type: Transform pos: -30.5,0.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 1436 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 22557 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 2130 @@ -122617,83 +123875,111 @@ entities: - type: Transform pos: 48.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13592 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13594 components: - type: Transform pos: 41.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13595 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20200 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20438 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20439 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20440 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20441 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20442 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20443 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21889 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22399 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StatueBananiumClown entities: - uid: 1811 @@ -123073,18 +124359,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: SuitStorageEVAPrisoner entities: - uid: 8190 @@ -125315,16 +126591,6 @@ entities: id: Arcade reception - proto: SurveillanceCameraSupply entities: - - uid: 3557 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: External salvage - uid: 9014 components: - type: Transform @@ -125446,6 +126712,8 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 21059 @@ -128257,13 +129525,6 @@ entities: - type: Transform pos: 0.7634096,47.159733 parent: 2 -- proto: ToySpawner - entities: - - uid: 14225 - components: - - type: Transform - pos: 55.5,-25.5 - parent: 2 - proto: TrainingBomb entities: - uid: 2135 @@ -128557,6 +129818,10 @@ entities: - type: Transform pos: -30.471287,-24.425285 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 6913 @@ -128846,6 +130111,53 @@ entities: - type: Transform pos: 33.5,22.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 4277 @@ -128984,27 +130296,37 @@ entities: - type: Transform pos: 5.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8920 components: - type: Transform pos: -19.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8921 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8922 components: - type: Transform pos: -34.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21745 components: - type: Transform pos: -10.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallPlastic entities: - uid: 2360 @@ -131728,6 +133050,11 @@ entities: - type: Transform pos: 44.5,19.5 parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 - uid: 5762 components: - type: Transform @@ -132044,6 +133371,11 @@ entities: - type: Transform pos: 49.5,16.5 parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 - uid: 6060 components: - type: Transform @@ -134262,6 +135594,16 @@ entities: - type: Transform pos: 76.5,-32.5 parent: 2 + - uid: 12146 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 - uid: 12255 components: - type: Transform @@ -134303,6 +135645,11 @@ entities: - type: Transform pos: 77.5,-32.5 parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 - uid: 14199 components: - type: Transform @@ -134619,6 +135966,11 @@ entities: - type: Transform pos: 49.5,25.5 parent: 2 + - uid: 16368 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 - uid: 16390 components: - type: Transform @@ -147218,6 +148570,8 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 3466 @@ -147226,6 +148580,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 3467 @@ -147234,6 +148590,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 3468 @@ -147242,6 +148600,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 3469 @@ -147250,12 +148610,16 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3470 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarpPoint entities: - uid: 20936 @@ -147265,71 +148629,6 @@ entities: parent: 21128 - type: WarpPoint location: Unknown shuttle -- proto: WarpPointBombing - entities: - - uid: 13731 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - type: WarpPoint - location: Bar - - uid: 13732 - components: - - type: Transform - pos: -2.5,24.5 - parent: 2 - - type: WarpPoint - location: Security - - uid: 13733 - components: - - type: Transform - pos: -1.5,47.5 - parent: 2 - - type: WarpPoint - location: Perma - - uid: 13734 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - type: WarpPoint - location: Cargo - - uid: 13735 - components: - - type: Transform - pos: 44.5,8.5 - parent: 2 - - type: WarpPoint - location: Medical - - uid: 13736 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 2 - - type: WarpPoint - location: Engineering - - uid: 13737 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - - type: WarpPoint - location: Bridge - - uid: 13738 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - type: WarpPoint - location: Dorms - - uid: 13739 - components: - - type: Transform - pos: -48.5,1.5 - parent: 2 - - type: WarpPoint - location: Evacuation - proto: WashingMachine entities: - uid: 874 diff --git a/Resources/Maps/_Wega/wegacyberiad.yml b/Resources/Maps/_Wega/wegacyberiad.yml index b215d480fdd..0dc1af20c42 100644 --- a/Resources/Maps/_Wega/wegacyberiad.yml +++ b/Resources/Maps/_Wega/wegacyberiad.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 267.3.0 - forkId: wega - forkVersion: 6c0d3d61ced5dd3c4d9cb796e96ac8ba8ef0761d - time: 12/03/2025 16:09:46 - entityCount: 37591 + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 03/01/2026 12:11:26 + entityCount: 37599 maps: - 1 grids: @@ -30,6 +30,7 @@ tilemap: 25: FloorClown 29: FloorDark 9: FloorDarkDiagonal + 27: FloorDarkMono 38: FloorDarkPlastic 43: FloorFlesh 44: FloorFreezer @@ -140,7 +141,7 @@ entities: version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAA== + tiles: AAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAA== version: 7 -1,1: ind: -1,1 @@ -148,11 +149,11 @@ entities: version: 7 0,1: ind: 0,1 - tiles: WwAAAAAAAFsAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAFsAAAAAAAB4AAAAAAAAeAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAAQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAEAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAawAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfAAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAADAAAAAAAAfAAAAAAAAB0AAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAABrAAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAawAAAAAAAAEAAAAAAAB8AAAAAAAAHQAAAAAAAA== + tiles: WwAAAAAAAFsAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAFsAAAAAAAB4AAAAAAAAeAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAAQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAEAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAawAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfAAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: eAAAAAAAAHgAAAAAAABbAAAAAAAAWwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAAQAAAAAAAHwAAAAAAAB8AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAAEAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAADAAAAAAAAfAAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAawAAAAAAAAMAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAABAAAAAAAAfAAAAAAAAAEAAAAAAAADAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAMAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA== + tiles: eAAAAAAAAHgAAAAAAABbAAAAAAAAWwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAAQAAAAAAAHwAAAAAAAB8AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAAEAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAADAAAAAAAAfAAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAawAAAAAAAAMAAAAAAAABAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABrAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAABAAAAAAAAfAAAAAAAAAEAAAAAAAADAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAMAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA== version: 7 2,0: ind: 2,0 @@ -268,11 +269,11 @@ entities: version: 7 -1,3: ind: -1,3 - tiles: WwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAA== + tiles: WwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAB0AAAAAAABMAAAAAAAATAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAEwAAAAAAABMAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAB0AAAAAAABMAAAAAAAATAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAEwAAAAAAABMAAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,2: ind: -2,2 @@ -7454,6 +7455,32 @@ entities: 172: -4,-49 173: -4,-48 174: -4,-47 + - node: + color: '#FF0000FF' + id: HalfTileWhiteQuartertile + decals: + 10537: 13,31 + 10538: 12,31 + - node: + color: '#FF0000FF' + id: HalfTileWhiteQuartertile180 + decals: + 10545: 16,29 + 10546: 17,29 + 10547: 18,29 + - node: + color: '#FF0000FF' + id: HalfTileWhiteQuartertile270 + decals: + 10542: 12,29 + 10543: 13,29 + 10544: 14,29 + - node: + color: '#FF0000FF' + id: HalfTileWhiteQuartertile90 + decals: + 10539: 16,31 + 10541: 18,31 - node: angle: -1.5707963267948966 rad color: '#DE3A3AFF' @@ -11522,11 +11549,11 @@ entities: 5,-7: 0: 65526 5,-6: - 0: 32767 + 0: 24575 5,-5: 0: 65535 5,-4: - 0: 65399 + 0: 63351 6,-8: 0: 57341 6,-6: @@ -11803,7 +11830,7 @@ entities: 2,6: 0: 58111 2,7: - 0: 28262 + 0: 26214 2,8: 0: 28662 3,5: @@ -11811,13 +11838,13 @@ entities: 3,6: 0: 61567 3,7: - 0: 48048 + 0: 65520 4,5: 0: 56797 4,6: 0: 63965 4,7: - 0: 15288 + 0: 30576 3,8: 0: 65528 5,5: @@ -11825,9 +11852,7 @@ entities: 5,6: 0: 61695 5,7: - 0: 8191 - 4,8: - 0: 29624 + 0: 16383 5,8: 0: 61559 6,6: @@ -11864,7 +11889,7 @@ entities: 9,4: 0: 65535 10,0: - 0: 511 + 0: 447 2: 28672 10,1: 2: 1911 @@ -12032,7 +12057,7 @@ entities: 11,-6: 0: 11187 11,-9: - 0: 61166 + 0: 52974 12,-8: 0: 64312 12,-7: @@ -12251,10 +12276,18 @@ entities: 0: 1911 7,10: 0: 3067 - 9,9: - 0: 35566 + 8,11: + 1: 2288 + 7,11: + 1: 34952 + 0: 4369 9,10: + 1: 8962 0: 2184 + 9,11: + 1: 116 + 9,9: + 0: 35566 10,8: 0: 16 1: 32768 @@ -12407,8 +12440,7 @@ entities: 20,-9: 0: 57304 21,-8: - 3: 16 - 0: 56780 + 0: 56796 21,-7: 0: 59232 21,-6: @@ -12500,6 +12532,8 @@ entities: 0: 204 20,5: 1: 192 + 4,8: + 0: 29616 4,9: 0: 1919 3,9: @@ -12530,10 +12564,9 @@ entities: 0: 65535 6,12: 0: 36863 - 7,11: - 0: 4369 7,12: 0: 273 + 1: 34952 0,9: 0: 15291 -1,9: @@ -12633,34 +12666,54 @@ entities: 0: 808 -4,14: 0: 3 + 1: 27784 -5,14: 0: 221 + 1: 40960 + -4,15: + 1: 3 + -5,15: + 1: 15 -3,13: 0: 11 + -3,14: + 1: 12168 -2,13: 0: 17477 + 1: 4096 -2,14: + 1: 257 0: 17476 -2,15: 0: 140 + 1: 8192 + -2,16: + 1: 79 -1,13: 0: 65535 -1,14: 0: 61439 -1,15: 0: 240 + 1: 16384 + -1,16: + 1: 15 0,13: 0: 61917 0,14: 0: 65535 0,15: 0: 240 + 1: 36864 -6,12: 0: 61408 -6,13: 0: 61152 -6,14: 0: 238 + 1: 4096 + -6,15: + 1: 79 -6,11: 0: 61408 -9,8: @@ -12755,44 +12808,57 @@ entities: 0: 48056 -13,12: 0: 34944 + 1: 4881 -12,13: 0: 48063 -13,13: 0: 60552 -12,14: 0: 11 + 1: 63488 -13,14: 0: 14 + 1: 62464 -12,11: 0: 34944 -11,12: 0: 32767 -11,13: 0: 43699 - -11,11: - 0: 65528 -11,14: + 1: 61696 0: 2 + -11,11: + 0: 65528 -10,12: 0: 10231 -10,13: 0: 32767 + -10,14: + 1: 24352 -10,11: 0: 30719 -9,12: 0: 1911 -9,13: 0: 819 + -9,14: + 1: 868 -9,11: 0: 28791 + 0,16: + 1: 15 1,13: 0: 61695 1,14: 0: 32767 1,15: 0: 240 + 1: 32768 2,15: 0: 2203 + 1,16: + 1: 143 2,13: 0: 43688 2,14: @@ -12803,12 +12869,15 @@ entities: 0: 65407 3,15: 0: 4095 + 3,16: + 1: 241 4,13: 0: 7645 4,14: 0: 7453 4,15: 0: 273 + 1: 35976 -12,10: 0: 34816 -11,10: @@ -12821,10 +12890,18 @@ entities: 0: 65535 -10,10: 0: 65423 + 4,16: + 1: 250 5,13: 0: 6007 5,14: 0: 1815 + 5,15: + 1: 500 + 6,14: + 1: 8994 + 6,15: + 1: 50 6,13: 0: 3822 7,13: @@ -12945,7 +13022,7 @@ entities: 0: 257 1: 18006 -13,11: - 1: 7 + 1: 34823 -20,4: 1: 1136 -20,3: @@ -13447,23 +13524,23 @@ entities: 0: 10103 3,-20: 0: 4401 - 4: 34816 + 3: 34816 3,-19: 0: 4369 1: 3072 - 4: 8 + 3: 8 3,-18: 0: 64989 3,-21: 0: 61919 4,-20: - 4: 13056 + 3: 13056 1: 14 - 5: 34816 + 4: 34816 4,-19: - 4: 3 + 3: 3 1: 3840 - 5: 8 + 4: 8 4,-18: 0: 65535 4,-17: @@ -13595,7 +13672,7 @@ entities: 1: 58098 5,-20: 1: 3 - 5: 13056 + 4: 13056 0: 34816 5,-23: 1: 140 @@ -13618,18 +13695,21 @@ entities: 1: 34952 0: 13056 7,-21: - 1: 61440 - 0: 238 + 1: 45056 + 0: 16622 7,-24: 0: 3822 7,-25: 0: 57429 + 7,-20: + 0: 17412 + 1: 128 8,-23: 0: 56785 8,-21: 1: 61440 5,-19: - 5: 3 + 4: 3 1: 3840 0: 8 5,-18: @@ -13651,18 +13731,17 @@ entities: 0: 13107 1: 34952 7,-18: - 6: 57344 - 1: 12 + 5: 57344 + 0: 68 + 1: 8 7,-17: - 6: 238 - 7: 57344 - 7,-16: - 7: 238 + 5: 238 6: 57344 - 7,-20: - 1: 17536 + 7,-16: + 6: 238 + 5: 57344 7,-19: - 1: 17476 + 0: 17476 8,-20: 1: 4497 0: 49152 @@ -13686,14 +13765,14 @@ entities: 6,-13: 0: 4080 6,-12: - 0: 56799 + 0: 56783 7,-14: 1: 61440 - 6: 238 + 5: 238 7,-13: 0: 4080 7,-15: - 6: 57582 + 5: 57582 7,-12: 0: 30583 8,-14: @@ -13827,7 +13906,7 @@ entities: 12,-18: 0: 63739 12,-17: - 0: 61663 + 0: 28895 8,-15: 1: 8738 0: 34952 @@ -14265,13 +14344,11 @@ entities: 22,-11: 0: 53755 22,-10: - 0: 57551 - 3: 16 + 0: 57567 23,-11: 0: 64535 23,-10: - 0: 12511 - 8: 32 + 0: 12543 1: 32768 24,-12: 0: 10223 @@ -14375,6 +14452,18 @@ entities: 1: 310 32,-8: 1: 310 + -14,13: + 1: 50254 + -14,12: + 1: 49152 + -14,14: + 1: 50252 + -14,15: + 1: 4 + 2,16: + 1: 241 + 5,16: + 1: 16 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -14389,11 +14478,6 @@ entities: moles: Oxygen: 27.225372 Nitrogen: 102.419266 - - volume: 2500 - temperature: 293.14975 - moles: - Oxygen: 20.078888 - Nitrogen: 75.53487 - volume: 2500 temperature: 293.15 moles: @@ -14409,11 +14493,6 @@ entities: temperature: 293.15 moles: Plasma: 6666.982 - - volume: 2500 - temperature: 293.15 - moles: - Oxygen: 21.813705 - Nitrogen: 82.06108 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -14423,6 +14502,7 @@ entities: - type: GravityShake shakeTimes: 10 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 40802 components: - type: MetaData @@ -14496,6 +14576,29 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid +- proto: ActionToggleInternals + entities: + - uid: 30415 + mapInit: true + paused: true + components: + - type: Transform + parent: 29465 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 29465 +- proto: ActionToggleJetpack + entities: + - uid: 29466 + mapInit: true + paused: true + components: + - type: Transform + parent: 29465 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 29465 - proto: AirAlarm entities: - uid: 7 @@ -16260,7 +16363,6 @@ entities: - 14992 - 15004 - 15005 - - 14993 - 14681 - 14995 - 832 @@ -16268,8 +16370,6 @@ entities: - 17779 - 17778 - 17780 - - 18122 - - 18121 - type: Fixtures fixtures: {} - uid: 123 @@ -16290,6 +16390,8 @@ entities: - 17785 - 17787 - 17782 + - 30777 + - 22602 - type: Fixtures fixtures: {} - uid: 135 @@ -17642,11 +17744,6 @@ entities: - type: Transform pos: -26.5,-36.5 parent: 2 - - uid: 158 - components: - - type: Transform - pos: 19.5,33.5 - parent: 2 - uid: 159 components: - type: Transform @@ -17819,6 +17916,11 @@ entities: - type: Transform pos: 24.5,-77.5 parent: 2 + - uid: 12320 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 - uid: 23592 components: - type: Transform @@ -18138,12 +18240,6 @@ entities: - type: Transform pos: 45.5,-47.5 parent: 2 - - uid: 229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - uid: 230 components: - type: Transform @@ -19348,6 +19444,14 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,15.5 parent: 2 +- proto: AirlockExternalGlassPenalServitudeShuttleLavalandStation + entities: + - uid: 26011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,58.5 + parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 379 @@ -19436,6 +19540,14 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-10.5 parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 12712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-32.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 393 @@ -19448,12 +19560,6 @@ entities: - type: Transform pos: -70.5,-16.5 parent: 2 - - uid: 395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-32.5 - parent: 2 - uid: 396 components: - type: Transform @@ -20845,18 +20951,15 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 40195 + - uid: 633 components: - type: Transform - pos: -22.5,-27.5 + pos: -24.5,-23.5 parent: 2 -- proto: AirlockSalvageLocked - entities: - - uid: 633 + - uid: 40195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-23.5 + pos: -22.5,-27.5 parent: 2 - proto: AirlockScienceGlassLocked entities: @@ -23234,14 +23337,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 912 components: - type: Transform @@ -24209,6 +24304,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 23922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 33297 components: - type: Transform @@ -24256,6 +24359,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 35176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 39475 components: - type: Transform @@ -24574,6 +24685,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,46.5 parent: 2 + - uid: 25990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,58.5 + parent: 2 - uid: 33706 components: - type: Transform @@ -26660,6 +26777,11 @@ entities: parent: 2 - proto: BikeHorn entities: + - uid: 12522 + components: + - type: Transform + pos: 14.845873,30.769196 + parent: 2 - uid: 40412 components: - type: Transform @@ -27276,11 +27398,6 @@ entities: - type: Transform pos: 4.5,35.5 parent: 2 - - uid: 34805 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - proto: BlastDoorOpen entities: - uid: 1364 @@ -28074,8 +28191,8 @@ entities: pos: -14.5,9.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28103,8 +28220,8 @@ entities: pos: 5.5,-45.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28137,8 +28254,8 @@ entities: pos: 67.5,22.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28166,8 +28283,8 @@ entities: pos: 35.5,-92.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28195,8 +28312,8 @@ entities: pos: 34.5,-92.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28224,8 +28341,8 @@ entities: pos: 3.5,-30.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28254,8 +28371,8 @@ entities: pos: 58.5,-20.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28284,8 +28401,8 @@ entities: pos: 60.5,-20.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -28506,10 +28623,10 @@ entities: - type: InsideEntityStorage - proto: BoxCardboard entities: - - uid: 1521 + - uid: 25700 components: - type: Transform - pos: 19.519285,30.614523 + pos: 20.523226,30.541761 parent: 2 - proto: BoxCleanerGrenades entities: @@ -28718,11 +28835,6 @@ entities: - type: Transform pos: -26.353828,-30.403881 parent: 2 - - uid: 1564 - components: - - type: Transform - pos: -23.343388,-24.400959 - parent: 2 - uid: 1565 components: - type: Transform @@ -28738,10 +28850,10 @@ entities: - type: Transform pos: -11.458938,31.659779 parent: 2 - - uid: 39938 + - uid: 34075 components: - type: Transform - pos: -18.296968,-28.27409 + pos: -25.31978,-24.309797 parent: 2 - uid: 40157 components: @@ -28876,6 +28988,18 @@ entities: - type: Transform pos: 47.53825,4.402814 parent: 2 +- proto: BoxMRE + entities: + - uid: 12321 + components: + - type: Transform + pos: 18.557068,29.740788 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: 18.572693,29.412663 + parent: 2 - proto: BoxNitrileGloves entities: - uid: 1586 @@ -29060,14 +29184,6 @@ entities: - type: InsideEntityStorage - proto: BrigTimer entities: - - uid: 1625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 1626 components: - type: Transform @@ -29185,7 +29301,7 @@ entities: - uid: 33186 components: - type: Transform - pos: 45.62819,4.598659 + pos: 45.810432,4.4867153 parent: 2 - uid: 40427 components: @@ -31664,11 +31780,6 @@ entities: - type: Transform pos: -18.5,-43.5 parent: 2 - - uid: 2309 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - uid: 2310 components: - type: Transform @@ -52509,6 +52620,21 @@ entities: - type: Transform pos: 21.5,-31.5 parent: 2 + - uid: 12323 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 - uid: 12821 components: - type: Transform @@ -52579,6 +52705,11 @@ entities: - type: Transform pos: 37.5,12.5 parent: 2 + - uid: 15481 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 - uid: 16063 components: - type: Transform @@ -52744,6 +52875,11 @@ entities: - type: Transform pos: -7.5,47.5 parent: 2 + - uid: 17811 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 - uid: 17830 components: - type: Transform @@ -55849,6 +55985,11 @@ entities: - type: Transform pos: 24.5,11.5 parent: 2 + - uid: 35177 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 - uid: 36233 components: - type: Transform @@ -57079,6 +57220,20 @@ entities: - type: Transform pos: 14.465398,-35.69042 parent: 2 +- proto: Cablecuffs + entities: + - uid: 12319 + components: + - type: Transform + pos: 14.486498,30.44107 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 18124 + components: + - type: Transform + pos: 14.423998,30.769196 + parent: 2 - proto: CableHV entities: - uid: 181 @@ -75653,6 +75808,11 @@ entities: - type: Transform pos: 41.5,9.5 parent: 2 + - uid: 12322 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 - uid: 12602 components: - type: Transform @@ -75693,6 +75853,11 @@ entities: - type: Transform pos: 44.5,8.5 parent: 2 + - uid: 15480 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 - uid: 15562 components: - type: Transform @@ -76588,6 +76753,11 @@ entities: - type: Transform pos: 16.5,26.5 parent: 2 + - uid: 17809 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 - uid: 17821 components: - type: Transform @@ -77038,6 +77208,11 @@ entities: - type: Transform pos: -14.5,31.5 parent: 2 + - uid: 21076 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 - uid: 21093 components: - type: Transform @@ -78118,26 +78293,6 @@ entities: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 25990 - components: - - type: Transform - pos: -16.5,56.5 - parent: 2 - - uid: 26011 - components: - - type: Transform - pos: -16.5,57.5 - parent: 2 - - uid: 26024 - components: - - type: Transform - pos: -16.5,58.5 - parent: 2 - - uid: 26036 - components: - - type: Transform - pos: -17.5,58.5 - parent: 2 - uid: 26042 components: - type: Transform @@ -78783,6 +78938,11 @@ entities: - type: Transform pos: 15.5,24.5 parent: 2 + - uid: 34805 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 - uid: 35017 components: - type: Transform @@ -86289,6 +86449,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,45.5 parent: 2 + - uid: 11100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 - uid: 11636 components: - type: Transform @@ -86380,18 +86546,6 @@ entities: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 11662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,30.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,30.5 - parent: 2 - uid: 11664 components: - type: Transform @@ -87128,6 +87282,24 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 + - uid: 18123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 + - uid: 29464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 - uid: 39943 components: - type: Transform @@ -87696,11 +87868,6 @@ entities: - type: Transform pos: 65.75616,-79.64779 parent: 2 - - uid: 39939 - components: - - type: Transform - pos: -18.718843,-28.344402 - parent: 2 - uid: 40333 components: - type: Transform @@ -87769,21 +87936,6 @@ entities: - type: Transform pos: 66.52484,-40.260437 parent: 2 - - uid: 14086 - components: - - type: Transform - pos: -12.718213,49.78559 - parent: 2 - - uid: 14087 - components: - - type: Transform - pos: -12.565435,49.681423 - parent: 2 - - uid: 14088 - components: - - type: Transform - pos: -12.433491,49.605034 - parent: 2 - proto: CheckerBoard entities: - uid: 11912 @@ -88060,11 +88212,6 @@ entities: - type: Transform pos: 15.566395,15.625832 parent: 2 - - uid: 39940 - components: - - type: Transform - pos: -18.601656,-28.46159 - parent: 2 - uid: 40332 components: - type: Transform @@ -90706,13 +90853,6 @@ entities: - type: Transform pos: -34.24615,19.416029 parent: 2 - - uid: 12319 - components: - - type: Transform - parent: 12318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 12324 components: - type: Transform @@ -91160,6 +91300,18 @@ entities: - type: Transform pos: 6.5620985,21.52813 parent: 2 +- proto: ClothingHeadHatHardhatYellowDark + entities: + - uid: 35179 + components: + - type: Transform + pos: -26.702314,-30.068552 + parent: 2 + - uid: 35180 + components: + - type: Transform + pos: -26.296064,-30.068552 + parent: 2 - proto: ClothingHeadHatHoodCulthood entities: - uid: 12424 @@ -91410,15 +91562,6 @@ entities: - type: Transform pos: 80.5927,-51.38376 parent: 2 -- proto: ClothingMaskGasAtmos - entities: - - uid: 12320 - components: - - type: Transform - parent: 12318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingMaskJoy entities: - uid: 12458 @@ -91724,15 +91867,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitEngineering - entities: - - uid: 12321 - components: - - type: Transform - parent: 12318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVA entities: - uid: 12282 @@ -92095,6 +92229,10 @@ entities: - type: Transform pos: 38.30463,-55.491287 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 12085 @@ -92104,11 +92242,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 40418 components: - type: Transform pos: -21.292381,53.64593 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtSyndieFormalDress entities: - uid: 862 @@ -92118,6 +92264,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorBlack entities: - uid: 12504 @@ -92125,6 +92275,10 @@ entities: - type: Transform pos: -18.506134,18.50784 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorRed entities: - uid: 12469 @@ -92134,6 +92288,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorTeal entities: - uid: 1243 @@ -92143,6 +92301,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitGenetics entities: - uid: 12505 @@ -92150,6 +92312,10 @@ entities: - type: Transform pos: 42.484604,-58.710686 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 40460 @@ -92157,11 +92323,19 @@ entities: - type: Transform pos: -19.5,41.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 40461 components: - type: Transform pos: -18.5,45.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitSuperstarCop entities: - uid: 1619 @@ -92171,6 +92345,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClownRecorder entities: - uid: 17818 @@ -92242,10 +92420,11 @@ entities: parent: 2 - proto: Cobweb2 entities: - - uid: 12522 + - uid: 11662 components: - type: Transform - pos: 13.5,31.5 + rot: 1.5707963267948966 rad + pos: 12.5,31.5 parent: 2 - uid: 12523 components: @@ -92287,10 +92466,10 @@ entities: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 12533 + - uid: 20806 components: - type: Transform - pos: 17.5,31.5 + pos: 18.5,31.5 parent: 2 - proto: CombatKnife entities: @@ -93088,6 +93267,11 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: + - uid: 2327 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 - uid: 7946 components: - type: Transform @@ -93325,6 +93509,11 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: + - uid: 2293 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 - uid: 12697 components: - type: Transform @@ -93415,17 +93604,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-46.5 parent: 2 - - uid: 12712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-33.5 - parent: 2 - - uid: 39807 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 2 - uid: 40382 components: - type: Transform @@ -93489,19 +93667,6 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-17.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 12723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-33.5 - parent: 2 - - uid: 39811 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 2 - proto: ComputerSalvageJobBoard entities: - uid: 35400 @@ -93531,13 +93696,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-19.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 39800 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 12726 @@ -93916,12 +94074,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,38.5 parent: 2 - - uid: 12778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 2 - uid: 12779 components: - type: Transform @@ -94546,8 +94698,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 12854 @@ -94859,32 +95011,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 12318 - components: - - type: Transform - pos: 19.5,32.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: {} - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12320 - - 12323 - - 12321 - - 12322 - - 12319 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 12346 components: - type: Transform @@ -95113,30 +95239,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 12887 - components: - - type: Transform - pos: 19.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1478 - moles: - Oxygen: 1.8856695 - Nitrogen: 7.0937095 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12888 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 12889 components: - type: Transform @@ -95217,6 +95319,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 18127 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 - uid: 23631 components: - type: Transform @@ -95242,6 +95349,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 26680 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 - uid: 30897 components: - type: Transform @@ -95692,6 +95804,13 @@ entities: - type: Transform pos: 21.5,-45.5 parent: 2 +- proto: CrateMindShieldImplants + entities: + - uid: 31535 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 - proto: CrateNPCHamlet entities: - uid: 12908 @@ -95896,6 +96015,13 @@ entities: - type: Transform pos: 73.5,-79.5 parent: 2 +- proto: CrateWeaponSecure + entities: + - uid: 13429 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 - proto: CrayonRed entities: - uid: 12933 @@ -104318,8 +104444,8 @@ entities: pos: 68.5,-37.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 16448.8269411 - lastInjectorTime: 16448.8269411 + lastSubjectInjectTime: 3382.1736355 + lastInjectorTime: 3382.1736355 - type: DnaClient server: 23570 connectedToServer: True @@ -104330,8 +104456,8 @@ entities: pos: 66.5,-37.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 16448.8269411 - lastInjectorTime: 16448.8269411 + lastSubjectInjectTime: 3382.1736355 + lastInjectorTime: 3382.1736355 - type: DnaClient server: 23570 connectedToServer: True @@ -105076,6 +105202,16 @@ entities: canCollide: False - proto: DrinkWaterBottleFull entities: + - uid: 12887 + components: + - type: Transform + pos: 16.802137,30.78482 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: 16.645887,30.90982 + parent: 2 - uid: 14379 components: - type: Transform @@ -105116,6 +105252,11 @@ entities: - type: Transform pos: -59.57804,-2.5519834 parent: 2 + - uid: 17814 + components: + - type: Transform + pos: 16.505262,30.800446 + parent: 2 - proto: DrinkWaterCup entities: - uid: 14388 @@ -105242,6 +105383,16 @@ entities: rot: -1.5707963267948966 rad pos: 84.21792,-45.36651 parent: 2 + - uid: 31474 + components: + - type: Transform + pos: 45.326057,4.6273403 + parent: 2 + - uid: 31533 + components: + - type: Transform + pos: 45.357307,4.4242153 + parent: 2 - proto: ElectrolysisUnitMachineCircuitboard entities: - uid: 14404 @@ -107331,7 +107482,6 @@ entities: - type: DeviceList devices: - 14681 - - 14993 - 14992 - 14991 - 14990 @@ -112069,16 +112219,6 @@ entities: - 122 - 123 - 14692 - - uid: 14993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - 14692 - uid: 14995 components: - type: Transform @@ -113806,7 +113946,7 @@ entities: pos: 73.5,-41.5 parent: 2 - type: Door - secondsUntilStateChange: -37471.98 + secondsUntilStateChange: -43058.71 state: Closing - type: DeviceNetwork deviceLists: @@ -114089,6 +114229,16 @@ entities: - type: Transform pos: -41.91447,10.754452 parent: 2 + - uid: 35112 + components: + - type: Transform + pos: -26.506647,-28.727581 + parent: 2 + - uid: 35113 + components: + - type: Transform + pos: -26.506647,-28.852581 + parent: 2 - proto: FlashlightSeclite entities: - uid: 40184 @@ -114171,6 +114321,11 @@ entities: - type: Transform pos: 75.50371,-61.43685 parent: 2 + - uid: 35178 + components: + - type: Transform + pos: -26.494371,-31.511623 + parent: 2 - proto: FloorAzureWaterEntity entities: - uid: 398 @@ -114498,6 +114653,13 @@ entities: - type: Transform pos: -1.5463676,-47.527756 parent: 2 +- proto: FoamCrossbow + entities: + - uid: 14993 + components: + - type: Transform + pos: 16.177137,30.706696 + parent: 2 - proto: FoodBanana entities: - uid: 15270 @@ -116844,6 +117006,14 @@ entities: parent: 2 - proto: GasPipeBendAlt1 entities: + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9052 components: - type: Transform @@ -117808,6 +117978,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 18110 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18158 components: - type: Transform @@ -119813,21 +119990,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17808 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17826 components: - type: Transform @@ -119905,13 +120067,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18123 - components: - - type: Transform - pos: 12.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 18160 components: - type: Transform @@ -120398,6 +120553,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 19668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 20869 components: - type: Transform @@ -120422,6 +120585,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 21381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21674 components: - type: Transform @@ -132936,20 +133107,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17810 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17811 - components: - - type: Transform - pos: 15.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 17812 components: - type: Transform @@ -133633,30 +133790,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18126 + - uid: 18121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 + pos: 9.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18131 components: - type: Transform @@ -146743,6 +146883,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 17784 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 17801 components: - type: Transform @@ -146767,21 +146914,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17809 - components: - - type: Transform - pos: 17.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 17815 components: - type: Transform @@ -147458,22 +147590,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 18134 components: - type: Transform @@ -157310,14 +157426,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 18129 components: - type: Transform @@ -159118,14 +159226,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 18119 components: - type: Transform @@ -162130,16 +162230,6 @@ entities: color: '#0000FFFF' - type: AtmosPipeLayers pipeLayer: Tertiary - - uid: 17784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosPipeLayers - pipeLayer: Tertiary - uid: 17785 components: - type: Transform @@ -162313,19 +162403,6 @@ entities: color: '#0000FFFF' - type: AtmosPipeLayers pipeLayer: Tertiary - - uid: 18121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosPipeLayers - pipeLayer: Tertiary - uid: 18138 components: - type: Transform @@ -162842,6 +162919,21 @@ entities: pipeLayer: Tertiary - type: AtmosPipeColor color: '#0000FFFF' + - uid: 22602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 123 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 24229 components: - type: Transform @@ -165212,16 +165304,6 @@ entities: color: '#FF0000FF' - type: AtmosPipeLayers pipeLayer: Secondary - - uid: 17783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: AtmosPipeLayers - pipeLayer: Secondary - uid: 17786 components: - type: Transform @@ -165393,19 +165475,6 @@ entities: color: '#FF0000FF' - type: AtmosPipeLayers pipeLayer: Secondary - - uid: 18122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: AtmosPipeLayers - pipeLayer: Secondary - uid: 18137 components: - type: Transform @@ -166001,6 +166070,21 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF0000FF' + - uid: 30777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 123 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 30877 components: - type: Transform @@ -169255,16 +169339,6 @@ entities: - type: Transform pos: 13.5,32.5 parent: 2 - - uid: 19667 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - - uid: 19668 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - uid: 19669 components: - type: Transform @@ -169575,16 +169649,6 @@ entities: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 19820 - components: - - type: Transform - pos: -17.5,58.5 - parent: 2 - - uid: 19821 - components: - - type: Transform - pos: -16.5,58.5 - parent: 2 - uid: 19863 components: - type: Transform @@ -174150,10 +174214,10 @@ entities: rot: 3.141592653589793 rad pos: 67.5,-76.5 parent: 2 - - uid: 26223 + - uid: 24592 components: - type: Transform - pos: -13.5,59.5 + pos: -17.5,58.5 parent: 2 - uid: 27236 components: @@ -174582,31 +174646,6 @@ entities: - type: Transform pos: -21.5,60.5 parent: 2 - - uid: 35109 - components: - - type: Transform - pos: -20.5,60.5 - parent: 2 - - uid: 35110 - components: - - type: Transform - pos: -18.5,60.5 - parent: 2 - - uid: 35111 - components: - - type: Transform - pos: -17.5,60.5 - parent: 2 - - uid: 35112 - components: - - type: Transform - pos: -15.5,60.5 - parent: 2 - - uid: 35113 - components: - - type: Transform - pos: -16.5,60.5 - parent: 2 - uid: 35114 components: - type: Transform @@ -175296,11 +175335,6 @@ entities: - type: Transform pos: 10.238505,44.5377 parent: 2 - - uid: 40451 - components: - - type: Transform - pos: -15.5,46.5 - parent: 2 - proto: HandheldHealthAnalyzer entities: - uid: 20880 @@ -175308,8 +175342,6 @@ entities: - type: Transform pos: 64.3912,-74.4199 parent: 2 -- proto: HandheldHealthAnalyzerUnpowered - entities: - uid: 20881 components: - type: Transform @@ -175903,10 +175935,10 @@ entities: parent: 2 - proto: HolopadSecurityInterrogation entities: - - uid: 11100 + - uid: 22872 components: - type: Transform - pos: 16.5,31.5 + pos: 15.5,29.5 parent: 2 - uid: 40144 components: @@ -177342,6 +177374,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 18122 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 21036 components: - type: Transform @@ -177366,14 +177405,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 33943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,32.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 33944 components: - type: Transform @@ -177626,6 +177657,22 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: + - uid: 29465 + components: + - type: Transform + pos: -15.522228,46.34454 + parent: 2 + - type: GasTank + toggleActionEntity: 30415 + - type: Jetpack + toggleActionEntity: 29466 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 29466 + - 30415 - uid: 35060 components: - type: Transform @@ -177909,6 +177956,11 @@ entities: - type: Transform pos: 4.1620073,7.723239 parent: 2 + - uid: 17783 + components: + - type: Transform + pos: 15.708387,30.78482 + parent: 2 - uid: 21059 components: - type: Transform @@ -177919,11 +177971,6 @@ entities: - type: Transform pos: -58.67791,-3.3297794 parent: 2 - - uid: 21076 - components: - - type: Transform - pos: 16.395477,30.858603 - parent: 2 - uid: 21077 components: - type: Transform @@ -178095,6 +178142,19 @@ entities: - type: Transform pos: 36.559563,-1.2581604 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 12723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 - proto: LeavesCannabis entities: - uid: 21105 @@ -178188,6 +178248,39 @@ entities: - Toggle - type: Fixtures fixtures: {} +- proto: LockableButtonDetective + entities: + - uid: 14088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8971: + - - Pressed + - DoorBolt + 300: + - - Pressed + - DoorBolt + 16399: + - - Pressed + - DoorBolt + 299: + - - Pressed + - DoorBolt + 33518: + - - Pressed + - Toggle + 33517: + - - Pressed + - Toggle + 33516: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 40710 @@ -178281,6 +178374,18 @@ entities: 41319: - - Pressed - DoorBolt + 41315: + - - Pressed + - Toggle + 41314: + - - Pressed + - Toggle + 41316: + - - Pressed + - Toggle + 41317: + - - Pressed + - Toggle - type: Fixtures fixtures: {} - uid: 41326 @@ -178294,6 +178399,18 @@ entities: 41318: - - Pressed - DoorBolt + 41310: + - - Pressed + - Toggle + 41311: + - - Pressed + - Toggle + 41312: + - - Pressed + - Toggle + 41313: + - - Pressed + - Toggle - type: Fixtures fixtures: {} - proto: LockableButtonResearch @@ -178315,18 +178432,49 @@ entities: fixtures: {} - proto: LockableButtonSecurity entities: - - uid: 23922 + - uid: 9911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 + rot: -1.5707963267948966 rad + pos: 19.5,31.5 parent: 2 - type: DeviceLinkSource linkedPorts: + 26054: + - - Pressed + - Toggle 21133: - - Pressed - Toggle - 26054: + 12318: + - - Pressed + - Toggle + 26681: + - - Pressed + - Toggle + 669: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 25170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41000: + - - Pressed + - Toggle + 40999: + - - Pressed + - Toggle + 40677: + - - Pressed + - DoorBolt + 26434: - - Pressed - Toggle - type: Fixtures @@ -179954,6 +180102,11 @@ entities: - type: Transform pos: -35.5,-51.5 parent: 2 + - uid: 31534 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 - uid: 33676 components: - type: Transform @@ -179964,11 +180117,6 @@ entities: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 40789 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 2 - uid: 40790 components: - type: Transform @@ -180973,11 +181121,6 @@ entities: - type: InsideEntityStorage - proto: Mattress entities: - - uid: 21381 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - uid: 40328 components: - type: Transform @@ -181220,6 +181363,16 @@ entities: - type: Transform pos: 64.524315,-11.376224 parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -20.97452,-25.26377 + parent: 2 + - uid: 35109 + components: + - type: Transform + pos: -20.97452,-25.498144 + parent: 2 - uid: 40335 components: - type: Transform @@ -181993,15 +182146,6 @@ entities: - type: Transform pos: -53.5,-16.5 parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 12322 - components: - - type: Transform - parent: 12318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 21530 @@ -182152,11 +182296,18 @@ entities: parent: 2 - proto: OreProcessor entities: - - uid: 33779 + - uid: 24498 components: - type: Transform - pos: -26.5,-31.5 + pos: -23.5,-23.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical - proto: OreProcessorMachineCircuitboard entities: - uid: 21552 @@ -182312,13 +182463,6 @@ entities: parent: 2 - proto: OxygenTankFilled entities: - - uid: 12323 - components: - - type: Transform - parent: 12318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 21571 components: - type: Transform @@ -183405,6 +183549,13 @@ entities: - type: Transform pos: -35.5,44.5 parent: 2 +- proto: PenalServitudeLavalandShuttleConsole + entities: + - uid: 26024 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 - proto: PenCap entities: - uid: 21755 @@ -183519,6 +183670,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: PickaxeBorg + entities: + - uid: 35181 + components: + - type: Transform + pos: -26.671064,-30.380894 + parent: 2 + - uid: 35182 + components: + - type: Transform + pos: -26.452314,-30.396519 + parent: 2 - proto: PillCanister entities: - uid: 12910 @@ -183718,6 +183881,38 @@ entities: - type: Transform pos: 31.528877,-85.50824 parent: 2 +- proto: PlushieSpawner50 + entities: + - uid: 26063 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 26064 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 26065 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 26067 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 26068 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 - proto: PlushieVox entities: - uid: 22002 @@ -183776,6 +183971,11 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: + - uid: 229 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 - uid: 16092 components: - type: Transform @@ -183816,11 +184016,6 @@ entities: - type: Transform pos: 97.5,-49.5 parent: 2 - - uid: 30415 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - uid: 30416 components: - type: Transform @@ -184542,6 +184737,11 @@ entities: parent: 2 - proto: PowerCellRecharger entities: + - uid: 14086 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 - uid: 17711 components: - type: Transform @@ -187379,6 +187579,12 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 2309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 - uid: 11807 components: - type: Transform @@ -187391,6 +187597,12 @@ entities: rot: 3.141592653589793 rad pos: -34.5,28.5 parent: 2 + - uid: 18128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,29.5 + parent: 2 - uid: 21542 components: - type: Transform @@ -187506,12 +187718,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,29.5 parent: 2 - - uid: 22602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 2 - uid: 22603 components: - type: Transform @@ -189255,16 +189461,16 @@ entities: rot: 3.141592653589793 rad pos: -12.5,50.5 parent: 2 - - uid: 13429 + - uid: 14683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,49.5 + pos: 2.5,53.5 parent: 2 - - uid: 14683 + - uid: 20774 components: - type: Transform - pos: 2.5,53.5 + rot: 1.5707963267948966 rad + pos: 18.5,29.5 parent: 2 - uid: 22844 components: @@ -189331,11 +189537,6 @@ entities: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 22872 - components: - - type: Transform - pos: 19.5,30.5 - parent: 2 - uid: 22873 components: - type: Transform @@ -189525,6 +189726,12 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 2 + - uid: 26679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 - uid: 33178 components: - type: Transform @@ -189646,15 +189853,15 @@ entities: - type: Transform pos: 31.718748,-87.25017 parent: 2 - - uid: 22926 + - uid: 33803 components: - type: Transform - pos: -23.723347,-24.386353 + pos: -25.75728,-24.387922 parent: 2 - - uid: 22927 + - uid: 33943 components: - type: Transform - pos: -23.474913,-24.620043 + pos: -25.50728,-24.544172 parent: 2 - proto: RadioHandheldSecurity entities: @@ -193105,11 +193312,6 @@ entities: - type: Transform pos: -18.5,41.5 parent: 2 - - uid: 2293 - components: - - type: Transform - pos: -16.5,58.5 - parent: 2 - uid: 2302 components: - type: Transform @@ -193140,11 +193342,6 @@ entities: - type: Transform pos: -17.5,44.5 parent: 2 - - uid: 2327 - components: - - type: Transform - pos: -17.5,58.5 - parent: 2 - uid: 2331 components: - type: Transform @@ -193497,6 +193694,11 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 + - uid: 24702 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 - uid: 26914 components: - type: Transform @@ -195079,11 +195281,6 @@ entities: - type: Transform pos: 16.5,32.5 parent: 2 - - uid: 31393 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - uid: 31394 components: - type: Transform @@ -195437,11 +195634,6 @@ entities: - type: Transform pos: 12.5,32.5 parent: 2 - - uid: 31474 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - uid: 31475 components: - type: Transform @@ -197525,7 +197717,7 @@ entities: pos: 65.5,-31.5 parent: 2 - type: DnaServer - serverId: 260 + serverId: 314 - proto: Retractor entities: - uid: 23571 @@ -197875,6 +198067,11 @@ entities: parent: 2 - proto: Scalpel entities: + - uid: 13431 + components: + - type: Transform + pos: 38.48904,-43.554497 + parent: 2 - uid: 16524 components: - type: Transform @@ -197902,13 +198099,6 @@ entities: - type: Transform pos: 40.49833,-18.583992 parent: 2 -- proto: ScalpelLaser - entities: - - uid: 23676 - components: - - type: Transform - pos: 38.40019,-43.57206 - parent: 2 - proto: SciFlash entities: - uid: 15210 @@ -198551,7 +198741,7 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 9911 + - uid: 18126 components: - type: Transform pos: 6.5,44.5 @@ -198772,7 +198962,7 @@ entities: - uid: 14516 components: - type: Transform - pos: 7.5,44.5 + pos: 7.5400968,44.61332 parent: 2 - uid: 23738 components: @@ -198940,7 +199130,7 @@ entities: - uid: 14519 components: - type: Transform - pos: 7.5,44.5 + pos: 7.4775968,44.597103 parent: 2 - uid: 23766 components: @@ -199024,7 +199214,7 @@ entities: - uid: 14517 components: - type: Transform - pos: 7.5,44.5 + pos: 7.4775968,44.597103 parent: 2 - uid: 23774 components: @@ -199329,6 +199519,11 @@ entities: parent: 2 - proto: ShuttersNormalOpen entities: + - uid: 12318 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 - uid: 12867 components: - type: Transform @@ -199764,6 +199959,16 @@ entities: - type: Transform pos: 17.5,32.5 parent: 2 + - uid: 26434 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 26681 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 - uid: 26734 components: - type: Transform @@ -201849,9 +202054,6 @@ entities: - - Pressed - Toggle 34779: - - - Pressed - - Toggle - 34805: - - Pressed - Toggle 34803: @@ -202550,6 +202752,16 @@ entities: parent: 2 - type: Fixtures fixtures: {} +- proto: SignInterrogation + entities: + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 24063 @@ -205266,10 +205478,10 @@ entities: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 24498 + - uid: 33779 components: - type: Transform - pos: -25.5,-24.5 + pos: -23.5,-26.5 parent: 2 - proto: SpawnMobMcGriff entities: @@ -206264,33 +206476,6 @@ entities: - type: Transform pos: 69.5,-27.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 24592 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 - - uid: 24593 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 2 - - uid: 24594 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 2 - - uid: 33824 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 33825 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 2 - proto: SpawnPointScientist entities: - uid: 24596 @@ -206340,15 +206525,15 @@ entities: - type: Transform pos: -2.5,36.5 parent: 2 - - uid: 33646 + - uid: 31016 components: - type: Transform - pos: 23.5,38.5 + pos: 13.5,30.5 parent: 2 - - uid: 33647 + - uid: 33646 components: - type: Transform - pos: 15.5,30.5 + pos: 23.5,38.5 parent: 2 - uid: 33790 components: @@ -206437,7 +206622,7 @@ entities: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 33803 + - uid: 31393 components: - type: Transform pos: 17.5,30.5 @@ -206657,6 +206842,40 @@ entities: - type: Transform pos: 23.5,-1.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 395 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 26223 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 33647 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 33824 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 33825 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 19820 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 24618 @@ -206790,6 +207009,18 @@ entities: - type: Transform pos: -1.5,52.5 parent: 2 +- proto: SpawnPointWardenHelper + entities: + - uid: 19821 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 - proto: SpawnVehicleJanicart entities: - uid: 12404 @@ -206882,6 +207113,11 @@ entities: parent: 2 - proto: SprayBottle entities: + - uid: 23676 + components: + - type: Transform + pos: -8.712991,52.50992 + parent: 2 - uid: 24633 components: - type: Transform @@ -206909,11 +207145,6 @@ entities: parent: 2 - proto: SprayBottleEthanol entities: - - uid: 13431 - components: - - type: Transform - pos: -8.716198,52.4689 - parent: 2 - uid: 23958 components: - type: Transform @@ -207384,13 +207615,15 @@ entities: - type: Transform pos: -4.298547,-42.514606 parent: 2 -- proto: StationAiUploadComputer +- proto: StationAiFixerComputer entities: - - uid: 24702 + - uid: 35110 components: - type: Transform pos: 67.5,-42.5 parent: 2 +- proto: StationAiUploadComputer + entities: - uid: 24703 components: - type: Transform @@ -211250,6 +211483,11 @@ entities: - type: Transform pos: 18.5,9.5 parent: 2 + - uid: 22926 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 - uid: 25143 components: - type: Transform @@ -211388,12 +211626,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 2 - - uid: 25170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 2 - uid: 25173 components: - type: Transform @@ -213405,11 +213637,6 @@ entities: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 39882 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 2 - uid: 39883 components: - type: Transform @@ -213807,6 +214034,11 @@ entities: rot: 3.141592653589793 rad pos: -12.5,51.5 parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 - uid: 18670 components: - type: Transform @@ -214269,6 +214501,12 @@ entities: - type: Transform pos: -7.5,45.5 parent: 2 + - uid: 17808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 2 - uid: 25657 components: - type: Transform @@ -214399,12 +214637,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-12.5 parent: 2 - - uid: 25700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,30.5 - parent: 2 - uid: 25701 components: - type: Transform @@ -214677,6 +214909,18 @@ entities: - type: Transform pos: -30.5,11.5 parent: 2 + - uid: 30823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - uid: 30824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 2 - uid: 32017 components: - type: Transform @@ -216413,6 +216657,10 @@ entities: - type: Transform pos: 42.4782,13.573816 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ToyFigurineAtmosTech entities: - uid: 26044 @@ -216512,38 +216760,6 @@ entities: - type: Transform pos: -42.510498,43.521072 parent: 2 -- proto: ToySpawner - entities: - - uid: 26063 - components: - - type: Transform - pos: 35.5,37.5 - parent: 2 - - uid: 26064 - components: - - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 26065 - components: - - type: Transform - pos: 56.5,6.5 - parent: 2 - - uid: 26066 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - - uid: 26067 - components: - - type: Transform - pos: 56.5,4.5 - parent: 2 - - uid: 26068 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - proto: TrainingBomb entities: - uid: 10908 @@ -216985,20 +217201,6 @@ entities: - Reverse - - Middle - Off - - uid: 26089 - components: - - type: Transform - pos: 12.5,31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12778: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - proto: UnfinishedMachineFrame entities: - uid: 21294 @@ -217080,6 +217282,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformScrubsColorPurple entities: - uid: 26100 @@ -217087,6 +217293,10 @@ entities: - type: Transform pos: 38.496433,-45.493935 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRedWithTop entities: - uid: 12349 @@ -217096,6 +217306,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12350 components: - type: Transform @@ -217103,6 +217317,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12354 components: - type: Transform @@ -217110,6 +217328,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12355 components: - type: Transform @@ -217117,6 +217339,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 26102 @@ -217626,6 +217852,13 @@ entities: - type: Transform pos: -13.5,47.5 parent: 2 +- proto: VendingMachineMedicalBase + entities: + - uid: 35111 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 - proto: VendingMachineMediDrobe entities: - uid: 26175 @@ -217716,11 +217949,105 @@ entities: - type: Transform pos: -22.5,-30.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - uid: 26192 components: - type: Transform pos: -22.5,-31.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 38442 @@ -218154,6 +218481,11 @@ entities: - type: Transform pos: -18.5,30.5 parent: 2 + - uid: 158 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 - uid: 188 components: - type: Transform @@ -218750,6 +219082,11 @@ entities: - type: Transform pos: 13.5,52.5 parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 - uid: 1632 components: - type: Transform @@ -220408,6 +220745,11 @@ entities: rot: 3.141592653589793 rad pos: 32.5,43.5 parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 - uid: 12499 components: - type: Transform @@ -220472,6 +220814,17 @@ entities: - type: Transform pos: -13.5,-42.5 parent: 2 + - uid: 17817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 - uid: 18362 components: - type: Transform @@ -220552,6 +220905,12 @@ entities: - type: Transform pos: -13.5,56.5 parent: 2 + - uid: 19667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 - uid: 20197 components: - type: Transform @@ -221580,6 +221939,11 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-104.5 parent: 2 + - uid: 26089 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 - uid: 26117 components: - type: Transform @@ -222526,12 +222890,6 @@ entities: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 26434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 2 - uid: 26435 components: - type: Transform @@ -223734,21 +224092,6 @@ entities: - type: Transform pos: 14.5,28.5 parent: 2 - - uid: 26679 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 26680 - components: - - type: Transform - pos: 14.5,30.5 - parent: 2 - - uid: 26681 - components: - - type: Transform - pos: 14.5,31.5 - parent: 2 - uid: 26682 components: - type: Transform @@ -232922,6 +233265,12 @@ entities: - type: Transform pos: 37.5,-43.5 parent: 2 + - uid: 29391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 - uid: 29454 components: - type: Transform @@ -232972,21 +233321,6 @@ entities: - type: Transform pos: 18.5,32.5 parent: 2 - - uid: 29464 - components: - - type: Transform - pos: 18.5,31.5 - parent: 2 - - uid: 29465 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 29466 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - uid: 29467 components: - type: Transform @@ -234622,12 +234956,6 @@ entities: - type: Transform pos: 38.5,7.5 parent: 2 - - uid: 16527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,31.5 - parent: 2 - uid: 17419 components: - type: Transform @@ -237262,11 +237590,6 @@ entities: - type: Transform pos: 22.5,31.5 parent: 2 - - uid: 29391 - components: - - type: Transform - pos: 19.5,31.5 - parent: 2 - uid: 29392 components: - type: Transform @@ -242876,11 +243199,6 @@ entities: - type: Transform pos: 3.5,36.5 parent: 2 - - uid: 30777 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - uid: 40454 components: - type: Transform @@ -243792,13 +244110,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12888 + - uid: 17810 components: - type: Transform - parent: 12887 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 15.220873,30.706696 + parent: 2 - uid: 30921 components: - type: Transform @@ -244419,12 +244735,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,35.5 parent: 2 - - uid: 31016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - uid: 31019 components: - type: Transform @@ -244439,6 +244749,12 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: + - uid: 22927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 2 - uid: 31023 components: - type: Transform @@ -244592,6 +244908,13 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 1564 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 31047 @@ -246608,15 +246931,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 34074 + - uid: 16527 components: - type: Transform - pos: 13.381611,-43.50255 + pos: 15.473728,30.425446 parent: 2 - - uid: 34075 + - uid: 34074 components: - type: Transform - pos: 16.48316,30.478855 + pos: 13.381611,-43.50255 parent: 2 - uid: 34076 components: diff --git a/Resources/Maps/_Wega/wegaemerald.yml b/Resources/Maps/_Wega/wegaemerald.yml index 0de7069f88f..1dc5e152316 100644 --- a/Resources/Maps/_Wega/wegaemerald.yml +++ b/Resources/Maps/_Wega/wegaemerald.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 270.1.0 forkId: "" forkVersion: "" - time: 09/02/2025 15:33:54 - entityCount: 51059 + time: 03/01/2026 13:23:03 + entityCount: 50909 maps: - 1 grids: @@ -497,11 +497,11 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: nAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAwAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: nAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAwAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -3,-4: ind: -3,-4 - tiles: nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -3,-6: ind: -3,-6 @@ -509,7 +509,7 @@ entities: version: 7 -2,-5: ind: -2,-5 - tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: AwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACcAAAAAAAAnAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -2,-6: ind: -2,-6 @@ -517,7 +517,7 @@ entities: version: 7 -2,-4: ind: -2,-4 - tiles: nQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAB4AAAAAAAAfAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAAfAAAAAAAAHgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAHgAAAAAAAB8AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJwAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAB4AAAAAAAAfAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAAAfAAAAAAAAHgAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAHgAAAAAAAB8AAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAAwAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAADAAAAAAAAnQAAAAAAAAMAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAAwAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAA== version: 7 -1,-4: ind: -1,-4 @@ -5975,11 +5975,6 @@ entities: 2906: -2,-8 2907: -3,-12 2908: -2,-12 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 4395: -38,-65 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -10159,8 +10154,6 @@ entities: 4221: -51,-31 4327: -46,-46 4349: -38,-51 - 4388: -39,-64 - 4389: -36,-63 4411: -24,-34 4417: -24,-39 - node: @@ -10280,7 +10273,6 @@ entities: 4365: -30,-54 4412: -19,-41 4415: -19,-37 - 5697: -33,-65 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -10533,7 +10525,6 @@ entities: 4343: -40,-51 4350: -36,-51 4351: -30,-52 - 4390: -33,-63 4414: -19,-34 4418: -19,-39 - node: @@ -10629,7 +10620,6 @@ entities: 5141: 42,39 5146: 46,39 5355: 34,-39 - 5698: -37,-68 5715: 73,-68 - node: color: '#FFFFFFFF' @@ -10647,7 +10637,6 @@ entities: 5147: 44,39 5354: 31,-39 5402: -16,41 - 5699: -39,-68 5716: 71,-68 12053: -57,-27 - node: @@ -10664,7 +10653,6 @@ entities: 5142: 42,37 5145: 46,37 5356: 34,-41 - 5700: -37,-69 5717: 73,-70 12032: -21,-83 12166: -15,-99 @@ -10684,7 +10672,6 @@ entities: 5144: 44,37 5357: 31,-41 5408: -16,43 - 5701: -39,-69 5714: 71,-70 12033: -23,-83 12054: -57,-25 @@ -10719,7 +10706,6 @@ entities: 5045: -29,-87 5123: 14,45 5413: -15,45 - 5704: -38,-69 5729: 87,-9 12167: -16,-99 12175: -15,-91 @@ -10738,7 +10724,6 @@ entities: 5352: 112,-64 5414: -13,45 5695: 48,-92 - 5705: -38,-69 12065: -56,-25 12066: -57,-21 12168: 2,-99 @@ -10749,11 +10734,6 @@ entities: id: WarnEndE decals: 5409: -13,43 - - node: - color: '#FFFFFFFF' - id: WarnEndS - decals: - 5702: -38,-70 - node: color: '#FFFFFFFF' id: WarnFull @@ -11024,7 +11004,6 @@ entities: 5392: -14,41 5393: -13,41 5401: -15,41 - 5703: -38,-68 5725: 89,-11 5726: 88,-11 11155: -56,11 @@ -13647,8 +13626,7 @@ entities: -2,9: 0: 57583 -2,10: - 0: 14335 - 1: 2048 + 0: 16383 -2,11: 0: 65528 -3,12: @@ -13724,12 +13702,12 @@ entities: -5,8: 0: 30578 -9,11: - 2: 6103 + 1: 6103 -8,11: 0: 60940 -8,12: 0: 239 - 2: 4096 + 1: 4096 -8,9: 0: 52224 -8,10: @@ -13814,23 +13792,24 @@ entities: 0: 63995 6,8: 0: 4479 - 2: 32768 + 1: 32768 7,5: 0: 4919 - 2: 2048 + 1: 2048 7,6: 0: 5939 7,7: 0: 57341 7,8: 0: 13 - 2: 12544 + 1: 12544 8,4: 0: 819 8,5: - 2: 40772 + 1: 40772 8,6: 0: 65472 + 1: 1 8,7: 0: 55739 5,11: @@ -13847,20 +13826,20 @@ entities: 0: 65527 6,12: 0: 119 - 2: 16384 + 1: 16384 7,9: - 2: 31746 + 1: 31746 7,11: 0: 65520 7,10: - 2: 9924 + 1: 9924 8,8: 0: 52353 8,9: - 2: 256 + 1: 256 0: 36044 8,10: - 2: 48 + 1: 48 0: 136 8,11: 0: 65520 @@ -14049,7 +14028,7 @@ entities: 6,-7: 0: 48059 6,-6: - 0: 48059 + 0: 46011 7,-8: 0: 4095 7,-7: @@ -14061,61 +14040,60 @@ entities: 8,-8: 0: 4095 8,-7: - 0: 62395 + 0: 29627 8,-6: 0: 28927 8,-5: 0: 65527 -9,12: 0: 12 - 2: 21779 + 1: 21779 -8,13: - 2: 7953 + 1: 7953 -9,13: - 2: 54623 + 1: 54623 -7,13: - 2: 256 + 1: 256 0: 204 -6,12: 0: 56784 -6,13: 0: 52721 -6,14: - 2: 273 + 1: 273 0: 204 -5,13: 0: 65520 -5,14: 0: 255 -5,15: - 2: 2184 + 1: 2184 -4,15: - 2: 30583 + 1: 30583 -4,13: 0: 36590 -4,14: - 0: 3306 - 1: 512 + 0: 3818 -4,16: - 2: 36079 + 1: 36079 -3,13: 0: 16383 -3,14: 0: 52696 -3,15: - 2: 61969 + 1: 61969 0: 140 -3,16: - 2: 65330 + 1: 65330 -2,13: 0: 37887 -2,14: 0: 65535 -2,15: 0: 3327 - 2: 4096 + 1: 4096 -2,16: - 2: 61486 + 1: 61486 -1,13: 0: 64750 -1,14: @@ -14129,17 +14107,17 @@ entities: 0,15: 0: 16383 -3,17: - 2: 12 + 1: 12 -2,17: - 2: 2287 + 1: 2287 -1,16: - 2: 65296 + 1: 65296 -1,17: - 2: 223 + 1: 223 0,16: - 2: 63304 + 1: 63304 0,17: - 2: 2271 + 1: 2271 1,12: 0: 65520 1,13: @@ -14148,9 +14126,9 @@ entities: 0: 65535 1,15: 0: 511 - 2: 49152 + 1: 49152 1,16: - 2: 63523 + 1: 63523 2,12: 0: 65520 2,13: @@ -14159,182 +14137,182 @@ entities: 0: 7677 2,15: 0: 1 - 2: 29252 + 1: 29252 2,16: - 2: 65514 + 1: 65514 3,13: 0: 65534 3,14: 0: 1023 - 2: 32768 + 1: 32768 3,12: 0: 61152 3,15: - 2: 32767 + 1: 32767 3,16: - 2: 311 + 1: 311 4,12: 0: 49072 4,13: 0: 30577 4,14: 0: 119 - 2: 32768 + 1: 32768 1,17: - 2: 63 + 1: 63 2,17: - 2: 3 + 1: 3 5,12: 0: 30512 5,13: 0: 6007 5,14: 0: 55 - 2: 30720 + 1: 30720 6,13: - 2: 51020 + 1: 51020 6,14: - 2: 8976 + 1: 8976 6,15: - 2: 546 + 1: 546 7,13: - 2: 15907 + 1: 15907 7,15: 0: 20204 7,12: - 2: 11808 + 1: 11808 7,14: - 2: 2 + 1: 2 0: 52352 7,16: 0: 20206 8,12: - 2: 4896 + 1: 4896 8,13: - 2: 4465 + 1: 4465 8,14: 0: 8176 8,15: 0: 20165 6,16: - 2: 19456 + 1: 19456 6,17: - 2: 19652 + 1: 19652 6,18: - 2: 19532 + 1: 19532 6,19: - 2: 17604 + 1: 17604 6,20: - 2: 19532 + 1: 19532 7,17: - 2: 60944 + 1: 60944 0: 68 7,18: - 2: 61359 + 1: 61359 7,19: - 2: 61118 + 1: 61118 7,20: - 2: 20399 + 1: 20399 8,17: - 2: 3856 + 1: 3856 8,18: - 2: 20479 + 1: 20479 8,19: - 2: 20479 + 1: 20479 -12,15: - 3: 12544 + 0: 12544 -12,16: - 3: 17410 + 0: 17410 -12,19: - 3: 4919 + 0: 4919 -13,19: - 3: 65472 + 0: 65472 -12,17: - 3: 4 + 0: 4 -12,18: - 3: 16384 + 0: 16384 -12,12: - 2: 65311 + 1: 65311 -12,11: - 2: 8191 + 1: 8191 -13,12: - 2: 60207 + 1: 60207 -12,13: - 2: 4015 + 1: 4015 -13,13: - 2: 4010 + 1: 4010 -13,15: - 3: 2254 + 0: 2254 -11,12: - 2: 65487 + 1: 65487 -11,13: - 2: 32207 + 1: 32207 -11,14: - 2: 14 + 1: 14 -11,11: - 2: 53247 + 1: 53247 -10,12: - 2: 56799 + 1: 56799 -10,13: - 2: 24029 + 1: 24029 -10,14: - 2: 15 + 1: 15 -10,11: - 2: 57311 + 1: 57311 -9,14: - 2: 7 + 1: 7 -12,8: - 3: 187 - 2: 61440 + 2: 51 + 1: 61440 + 0: 136 -12,7: - 3: 45056 - 0: 15 - 2: 240 + 2: 12288 + 0: 32783 + 1: 240 -13,8: - 3: 187 - 2: 61440 + 2: 187 + 1: 61440 -12,10: - 2: 40704 + 1: 40704 -13,10: - 2: 11874 + 1: 11874 -13,11: - 2: 10986 + 1: 10986 -11,8: - 3: 51 - 2: 61440 - 4: 136 + 0: 51 + 1: 61440 + 3: 136 -11,10: - 2: 52606 + 1: 52606 -11,7: - 3: 12288 - 4: 32768 - 0: 15 - 2: 240 + 0: 12303 + 3: 32768 + 1: 240 -11,9: - 2: 17604 + 1: 17604 -10,8: - 4: 51 - 2: 61440 - 5: 136 + 3: 51 + 1: 61440 + 4: 136 -10,9: - 2: 26361 + 1: 26361 -10,10: - 2: 56671 + 1: 56671 -10,7: - 4: 12288 - 5: 32768 + 3: 12288 + 4: 32768 0: 15 - 2: 240 + 1: 240 -9,8: - 5: 51 - 2: 63624 + 4: 51 + 1: 63624 -9,9: - 2: 8754 + 1: 8754 -9,10: - 2: 21847 + 1: 21847 -9,7: - 5: 12288 - 2: 35056 + 4: 12288 + 1: 35056 0: 15 -12,4: 0: 65535 @@ -14352,8 +14330,8 @@ entities: 0: 4095 -13,7: 0: 15 - 2: 240 - 3: 45056 + 1: 240 + 2: 45056 -11,4: 0: 65535 -11,5: @@ -14379,8 +14357,7 @@ entities: -13,0: 0: 53727 -12,1: - 0: 40447 - 1: 16384 + 0: 56831 -13,1: 0: 56783 -12,2: @@ -14392,11 +14369,9 @@ entities: -11,0: 0: 45311 -11,1: - 0: 39871 - 1: 8192 + 0: 48063 -11,2: - 0: 47129 - 1: 34 + 0: 47163 -11,-1: 0: 61678 -10,0: @@ -14486,8 +14461,7 @@ entities: -16,17: 0: 61408 -16,15: - 0: 60928 - 3: 2 + 0: 60930 -16,19: 0: 52416 -15,16: @@ -14503,73 +14477,71 @@ entities: -14,17: 0: 4369 -14,20: - 3: 65532 + 0: 65532 -14,19: 0: 32768 -13,20: - 3: 16383 + 0: 16383 -16,12: - 3: 8736 - 2: 10 + 0: 8736 + 1: 10 -17,12: - 2: 32767 - 3: 32768 + 1: 32767 + 0: 32768 -16,13: - 3: 8738 + 0: 8738 -17,13: - 3: 65535 + 0: 65535 -16,14: - 3: 8738 + 0: 8738 -17,14: - 3: 36863 - 0: 8192 + 0: 45055 -17,15: - 3: 8 - 0: 65314 + 0: 65322 -16,11: - 2: 43690 + 1: 43690 -15,12: - 2: 34 + 1: 34 -15,11: - 2: 12835 + 1: 12835 -14,13: - 3: 16384 + 0: 16384 -14,14: - 3: 2252 + 0: 2252 -14,12: - 2: 35916 + 1: 35916 -13,14: - 3: 63280 + 0: 63280 -16,9: - 2: 44970 + 1: 44970 -17,9: - 2: 65535 + 1: 65535 -16,10: - 2: 44970 + 1: 44970 -17,10: - 2: 65535 + 1: 65535 -16,8: - 2: 43690 + 1: 43690 -16,7: - 2: 43767 + 1: 43767 0: 8 -15,8: - 2: 61440 - 3: 238 + 1: 61440 + 2: 238 -15,9: - 2: 8994 + 1: 8994 -15,10: - 2: 8754 + 1: 8754 -15,7: - 3: 57344 + 2: 57344 0: 15 - 2: 240 + 1: 240 -14,8: - 2: 61986 - 3: 136 + 1: 61986 + 2: 136 -14,7: - 2: 8944 - 3: 32768 + 1: 8944 + 2: 32768 0: 15 -16,4: 0: 61695 @@ -14586,7 +14558,7 @@ entities: -17,6: 0: 8751 -17,7: - 2: 65535 + 1: 65535 -15,4: 0: 65250 -15,5: @@ -14618,8 +14590,7 @@ entities: -17,2: 0: 57599 -17,3: - 0: 60622 - 6: 544 + 0: 61166 -15,0: 0: 56783 -15,1: @@ -14707,41 +14678,41 @@ entities: 8,16: 0: 3822 8,20: - 2: 4095 + 1: 4095 9,16: 0: 3838 9,17: - 2: 12032 + 1: 12032 9,18: - 2: 12287 + 1: 12287 9,19: - 2: 12287 + 1: 12287 9,20: - 2: 12287 + 1: 12287 9,15: 0: 52962 10,16: 0: 1911 10,17: - 2: 20292 + 1: 20292 10,18: - 2: 55167 + 1: 55167 10,19: - 2: 55159 + 1: 55159 10,15: 0: 8176 10,20: - 2: 20343 + 1: 20343 11,17: - 2: 8960 + 1: 8960 11,18: - 2: 12835 + 1: 12835 11,19: - 2: 12561 + 1: 12561 11,20: - 2: 8994 + 1: 8994 12,16: - 2: 16385 + 1: 16385 9,12: 0: 29303 9,13: @@ -14805,12 +14776,12 @@ entities: 12,11: 0: 30583 9,5: - 2: 370 + 1: 370 0: 32768 9,6: 0: 57308 9,4: - 2: 8820 + 1: 8820 9,3: 0: 6007 10,5: @@ -14818,10 +14789,10 @@ entities: 10,6: 0: 61416 10,4: - 2: 2 + 1: 2 0: 50176 10,3: - 2: 28944 + 1: 28944 11,4: 0: 20223 11,5: @@ -14859,19 +14830,18 @@ entities: 11,2: 0: 47927 11,3: - 2: 2448 + 1: 2448 11,-1: 0: 61152 12,0: 0: 65532 12,1: - 0: 40944 + 0: 36848 12,2: - 0: 13105 - 7: 2 - 2: 2176 + 0: 13107 + 1: 2176 12,3: - 2: 18248 + 1: 18248 8,-2: 0: 20206 9,-4: @@ -14937,27 +14907,27 @@ entities: 12,-5: 0: 65534 12,17: - 2: 32836 + 1: 32836 13,16: 0: 30037 13,17: 0: 3839 12,18: - 2: 8 + 1: 8 13,18: - 2: 19 + 1: 19 14,16: 0: 33791 14,17: 0: 59583 14,15: 0: 63488 - 2: 56 + 1: 56 14,18: 0: 238 - 2: 57344 + 1: 57344 14,19: - 2: 3 + 1: 3 15,16: 0: 63923 15,17: @@ -14966,11 +14936,11 @@ entities: 0: 60447 15,15: 0: 47880 - 2: 3 + 1: 3 15,19: 0: 52974 15,20: - 2: 17505 + 1: 17505 16,16: 0: 65521 16,17: @@ -14980,19 +14950,19 @@ entities: 16,19: 0: 65535 12,14: - 2: 198 + 1: 198 12,15: - 2: 24576 + 1: 24576 13,12: 0: 14335 13,13: 0: 65528 13,14: - 2: 272 + 1: 272 13,11: 0: 65535 13,15: - 2: 1568 + 1: 1568 14,12: 0: 28791 14,13: @@ -15000,7 +14970,7 @@ entities: 14,11: 0: 30583 14,14: - 2: 194 + 1: 194 15,12: 0: 4095 15,13: @@ -15008,7 +14978,7 @@ entities: 15,11: 0: 65527 15,14: - 2: 8192 + 1: 8192 0: 34824 16,13: 0: 8145 @@ -15053,7 +15023,7 @@ entities: 13,6: 0: 65411 13,3: - 2: 10927 + 1: 10927 14,4: 0: 65484 14,5: @@ -15062,7 +15032,7 @@ entities: 0: 65535 14,3: 0: 52428 - 2: 256 + 1: 256 15,4: 0: 63249 15,5: @@ -15071,7 +15041,7 @@ entities: 0: 65527 15,3: 0: 4369 - 2: 8 + 1: 8 16,4: 0: 16366 16,5: @@ -15085,7 +15055,7 @@ entities: 13,1: 0: 32624 13,2: - 2: 42816 + 1: 42816 13,-1: 0: 61166 14,0: @@ -15093,7 +15063,7 @@ entities: 14,1: 0: 65532 14,2: - 2: 4096 + 1: 4096 0: 52428 14,-1: 0: 65535 @@ -15103,7 +15073,7 @@ entities: 0: 32625 15,2: 0: 4369 - 2: 51328 + 1: 51328 15,-1: 0: 65535 16,0: @@ -15111,9 +15081,9 @@ entities: 16,1: 0: 4080 16,2: - 2: 20292 + 1: 20292 16,3: - 2: 343 + 1: 343 0: 32768 13,-4: 0: 48051 @@ -15180,7 +15150,7 @@ entities: 16,-7: 0: 61695 16,-6: - 0: 65535 + 0: 61439 16,-5: 0: 65524 16,20: @@ -15191,28 +15161,28 @@ entities: 0: 64915 17,18: 0: 13197 - 2: 32768 + 1: 32768 17,19: 0: 4915 - 2: 34952 + 1: 34952 17,15: 0: 47903 17,20: - 2: 4412 + 1: 4412 18,16: 0: 48051 18,17: 0: 63288 18,18: 0: 34871 - 2: 12288 + 1: 12288 18,19: - 2: 13107 + 1: 13107 0: 2184 18,15: 0: 47903 18,20: - 2: 135 + 1: 135 19,16: 0: 65521 19,17: @@ -15225,7 +15195,7 @@ entities: 0: 47903 19,20: 0: 12 - 2: 4368 + 1: 4368 20,16: 0: 62393 20,17: @@ -15271,7 +15241,7 @@ entities: 17,8: 0: 48056 17,9: - 0: 51647 + 0: 51643 17,10: 0: 40959 17,7: @@ -15318,7 +15288,7 @@ entities: 0: 65535 18,3: 0: 44545 - 2: 12 + 1: 12 19,4: 0: 61184 19,5: @@ -15327,7 +15297,7 @@ entities: 0: 65535 20,4: 0: 61696 - 2: 137 + 1: 137 20,5: 0: 65520 20,6: @@ -15348,7 +15318,7 @@ entities: 0: 15 18,2: 0: 4096 - 2: 14 + 1: 14 18,-1: 0: 65535 19,0: @@ -15358,18 +15328,18 @@ entities: 19,-1: 0: 65535 19,2: - 2: 3936 + 1: 3936 19,3: - 2: 3584 + 1: 3584 20,0: 0: 65535 20,1: 0: 53246 20,2: - 2: 4881 + 1: 4881 0: 34944 20,3: - 2: 39217 + 1: 39217 0: 8 17,-4: 0: 15260 @@ -15439,37 +15409,37 @@ entities: 0: 14813 20,20: 0: 1 - 2: 17600 + 1: 17600 21,16: 0: 14847 21,17: 0: 62399 21,18: 0: 255 - 2: 57344 + 1: 57344 21,15: 0: 62208 21,20: - 2: 1 + 1: 1 22,16: 0: 50517 22,17: 0: 3839 22,15: 0: 4096 - 2: 3088 + 1: 3088 22,18: - 2: 34 + 1: 34 23,16: 0: 4369 - 2: 50176 + 1: 50176 23,17: 0: 17 - 2: 25804 + 1: 25804 24,17: - 2: 48 + 1: 48 23,15: - 2: 304 + 1: 304 21,8: 0: 61152 21,9: @@ -15488,29 +15458,29 @@ entities: 0: 4369 21,4: 0: 28672 - 2: 68 + 1: 68 21,6: 0: 57583 21,5: 0: 58606 21,3: - 2: 61440 + 1: 61440 0: 15 22,5: 0: 56575 22,6: 0: 56541 22,4: - 2: 1122 + 1: 1122 22,3: - 2: 12928 + 1: 12928 0: 3 23,6: 0: 28512 23,4: - 2: 58112 + 1: 58112 23,5: - 2: 2 + 1: 2 24,6: 0: 768 21,0: @@ -15536,7 +15506,7 @@ entities: 23,2: 0: 13107 23,3: - 2: 16 + 1: 16 23,-1: 0: 28784 21,-4: @@ -15556,7 +15526,7 @@ entities: 22,-5: 0: 65535 23,-2: - 2: 8704 + 1: 8704 20,-9: 0: 65524 21,-8: @@ -15581,11 +15551,11 @@ entities: 0: 56543 23,-6: 0: 8413 - 2: 32768 + 1: 32768 23,-9: 0: 7407 23,-5: - 2: 200 + 1: 200 24,-8: 0: 65535 24,-7: @@ -15593,29 +15563,29 @@ entities: 24,-6: 0: 255 -20,-4: - 2: 32147 + 1: 32147 -20,-5: - 2: 28672 + 1: 28672 -21,-4: - 2: 65364 + 1: 65364 -20,-3: - 2: 64885 + 1: 64885 -21,-3: - 2: 65535 + 1: 65535 -20,-2: - 2: 273 + 1: 273 -21,-2: - 2: 559 + 1: 559 -20,-1: - 2: 57311 + 1: 57311 -21,-1: - 2: 7951 + 1: 7951 -20,0: - 2: 56797 + 1: 56797 -19,-4: - 2: 4352 + 1: 4352 -19,-3: - 2: 62961 + 1: 62961 -19,-1: 0: 59962 -19,-5: @@ -15623,14 +15593,14 @@ entities: -19,0: 0: 61166 -19,-2: - 2: 4 + 1: 4 0: 32768 -18,-3: - 2: 12561 + 1: 12561 0: 34956 -18,-2: 0: 55688 - 2: 17 + 1: 17 -18,-1: 0: 48015 -18,0: @@ -15640,22 +15610,22 @@ entities: -18,-4: 0: 52428 -21,0: - 2: 16177 + 1: 16177 -20,1: - 2: 57309 + 1: 57309 -21,1: - 2: 3857 + 1: 3857 -20,2: - 2: 15 + 1: 15 0: 65280 -21,2: - 2: 383 + 1: 383 0: 52224 -20,3: 0: 4095 -21,3: 0: 36044 - 2: 4368 + 1: 4368 -20,4: 0: 40445 -19,2: @@ -15683,70 +15653,70 @@ entities: -18,5: 0: 47 -19,6: - 2: 34952 + 1: 34952 -18,6: - 2: 12032 + 1: 12032 -19,7: - 2: 34952 + 1: 34952 -18,7: - 2: 8946 + 1: 8946 -19,8: - 2: 34952 + 1: 34952 -18,8: - 2: 8754 + 1: 8754 -17,8: - 2: 65535 + 1: 65535 25,-8: 0: 17 25,-7: 0: 4368 25,-6: 0: 17 - 2: 27712 + 1: 27712 25,-5: - 2: 2 + 1: 2 -20,11: - 3: 24576 + 0: 24576 -21,11: - 3: 61696 + 0: 61696 -19,9: - 2: 34952 + 1: 34952 -18,9: - 2: 15907 + 1: 15907 -19,10: - 2: 34952 + 1: 34952 -18,10: - 2: 12066 + 1: 12066 -19,11: - 2: 34952 + 1: 34952 -18,11: - 2: 8754 + 1: 8754 -19,12: - 2: 3663 + 1: 3663 -18,12: - 2: 9187 - 3: 32768 + 1: 9187 + 0: 32768 -17,11: - 2: 65535 + 1: 65535 -20,13: - 8: 35071 + 2: 35071 0: 8704 -21,13: - 8: 65535 + 2: 65535 -20,14: 0: 65442 -21,14: 0: 52416 - 8: 4369 + 2: 4369 -20,15: 0: 65535 -21,15: 0: 52428 - 8: 4369 + 2: 4369 -20,16: 0: 65535 -19,13: - 8: 4368 + 2: 4368 0: 51336 -19,14: 0: 63960 @@ -15755,15 +15725,12 @@ entities: -19,16: 0: 65535 -18,13: - 0: 4096 - 2: 610 - 3: 34952 + 0: 39048 + 1: 610 -18,14: - 0: 4112 - 3: 52424 + 0: 56536 -18,15: - 0: 60433 - 3: 12 + 0: 60445 -18,16: 0: 61422 -16,-11: @@ -15809,7 +15776,7 @@ entities: -21,-6: 0: 3327 -21,-5: - 2: 62002 + 1: 62002 -19,-8: 0: 61439 -19,-6: @@ -15823,178 +15790,178 @@ entities: -18,-6: 0: 61175 -24,12: - 8: 65535 + 2: 65535 -24,11: - 8: 65535 + 2: 65535 -25,12: - 8: 65535 + 2: 65535 -24,13: - 8: 65535 + 2: 65535 -25,13: - 8: 65535 + 2: 65535 -24,14: - 8: 65535 + 2: 65535 -25,14: - 8: 65535 + 2: 65535 -24,15: - 8: 65535 + 2: 65535 -25,15: - 8: 65535 + 2: 65535 -24,16: - 8: 65535 + 2: 65535 -23,12: - 8: 65527 + 2: 65527 -23,13: - 8: 65535 + 2: 65535 -23,14: - 8: 65535 + 2: 65535 -23,15: - 8: 65535 + 2: 65535 -23,11: - 8: 29456 + 2: 29456 -23,16: - 8: 65535 + 2: 65535 -22,12: - 8: 61696 + 2: 61696 -22,13: - 8: 65535 + 2: 65535 -22,14: - 8: 65535 + 2: 65535 -22,15: - 8: 65535 + 2: 65535 -22,16: - 8: 65535 + 2: 65535 -21,12: - 8: 4096 - 3: 6 + 2: 4096 + 0: 6 -21,16: - 8: 4369 + 2: 4369 0: 52428 -25,11: - 8: 65534 + 2: 65534 -22,3: - 2: 65520 + 1: 65520 -24,0: - 2: 4369 + 1: 4369 0: 52428 -25,0: - 2: 13115 + 1: 13115 -24,1: - 2: 1 + 1: 1 0: 61132 -25,1: - 2: 13307 + 1: 13307 -25,2: - 2: 13307 + 1: 13307 -24,3: - 2: 65530 + 1: 65530 -25,3: - 2: 63959 + 1: 63959 -24,2: - 2: 44576 + 1: 44576 -24,-1: 0: 52960 -23,1: 0: 4096 - 2: 28262 + 1: 28262 -23,2: - 2: 43982 + 1: 43982 -23,3: - 2: 65528 + 1: 65528 -23,0: - 2: 26214 + 1: 26214 -23,-1: - 2: 28270 + 1: 28270 0: 16 -22,1: - 2: 7953 + 1: 7953 -22,2: - 2: 4095 + 1: 4095 -22,0: - 2: 40849 + 1: 40849 -22,-1: - 2: 7967 + 1: 7967 -24,-3: - 2: 5628 + 1: 5628 -25,-3: - 2: 64640 + 1: 64640 -24,-2: - 2: 18240 + 1: 18240 -25,-2: - 2: 48121 + 1: 48121 -25,-1: - 2: 62267 + 1: 62267 -24,-4: - 2: 52428 + 1: 52428 -24,-5: - 2: 52224 + 1: 52224 -23,-4: - 2: 55583 + 1: 55583 -23,-3: - 2: 55705 + 1: 55705 -23,-5: - 2: 65280 + 1: 65280 -22,-4: - 2: 65365 + 1: 65365 -22,-3: - 2: 65535 + 1: 65535 -23,-2: - 2: 2184 + 1: 2184 -22,-2: - 2: 2735 + 1: 2735 -22,-5: - 2: 55236 + 1: 55236 -24,-8: - 2: 1808 + 1: 1808 0: 14 -23,-8: 0: 3839 -23,-9: 0: 61440 -23,-7: - 2: 12 + 1: 12 -22,-8: 0: 52703 -22,-7: - 2: 8705 + 1: 8705 0: 34944 -22,-9: 0: 53248 -22,-6: - 2: 16386 + 1: 16386 0: 136 -21,-9: 0: 4096 -24,-9: - 2: 512 + 1: 512 -28,15: - 3: 34 + 0: 34 -27,13: - 8: 65518 + 2: 65518 -27,14: - 8: 52991 + 2: 52991 -27,12: - 8: 61132 + 2: 61132 -27,15: - 8: 2188 + 2: 2188 -27,11: - 8: 32768 + 2: 32768 -26,12: - 8: 65535 + 2: 65535 -26,13: - 8: 65535 + 2: 65535 -26,14: - 8: 65535 + 2: 65535 -26,15: - 8: 65535 + 2: 65535 -26,11: - 8: 65152 + 2: 65152 -26,16: - 8: 36079 + 2: 36079 -25,16: - 8: 65535 + 2: 65535 -12,-13: - 0: 53480 + 0: 53482 -12,-10: 0: 12012 -11,-12: @@ -16057,7 +16024,7 @@ entities: 0: 3838 -4,-11: 0: 4401 - 9: 52428 + 5: 52428 -4,-10: 0: 57297 -4,-13: @@ -16065,7 +16032,7 @@ entities: -3,-12: 0: 36591 -3,-11: - 9: 13107 + 5: 13107 0: 35968 -3,-10: 0: 65520 @@ -16074,7 +16041,7 @@ entities: -2,-12: 0: 65535 -2,-11: - 0: 65532 + 0: 65528 -2,-10: 0: 65535 -2,-13: @@ -16253,71 +16220,71 @@ entities: 0: 61160 20,-12: 0: 819 - 2: 34952 + 1: 34952 20,-11: 0: 4915 - 2: 8 + 1: 8 20,-10: 0: 65364 20,-13: 0: 13240 - 2: 32768 + 1: 32768 21,-12: - 2: 65527 + 1: 65527 21,-11: - 2: 49167 + 1: 49167 21,-10: 0: 53521 21,-13: - 2: 29696 + 1: 29696 0: 2079 22,-12: - 2: 21853 + 1: 21853 22,-11: - 2: 62533 + 1: 62533 22,-10: 0: 61440 - 2: 138 + 1: 138 22,-13: - 2: 21856 + 1: 21856 23,-10: 0: 57344 24,-9: 0: 7 - 2: 3712 + 1: 3712 24,-10: - 2: 36400 + 1: 36400 25,-9: - 2: 256 + 1: 256 -22,-17: - 2: 61440 + 1: 61440 -22,-16: - 2: 771 + 1: 771 0: 128 -22,-19: - 2: 34944 + 1: 34944 -22,-18: - 2: 34952 + 1: 34952 -21,-19: - 2: 12834 + 1: 12834 -21,-18: - 2: 256 + 1: 256 -21,-17: 0: 61166 -21,-20: - 2: 8192 + 1: 8192 -20,-17: 0: 48059 -24,-16: - 2: 3084 + 1: 3084 -24,-15: - 2: 1092 + 1: 1092 -24,-14: 0: 34952 -24,-13: 0: 8 -23,-16: - 2: 3855 + 1: 3855 -23,-15: 0: 43963 -23,-14: @@ -16369,31 +16336,31 @@ entities: -16,-14: 0: 65520 -20,-18: - 2: 1672 + 1: 1672 -20,-20: - 2: 34816 + 1: 34816 -20,-19: - 2: 34952 + 1: 34952 -19,-18: - 2: 256 + 1: 256 -18,-18: 0: 57344 - 2: 226 + 1: 226 -17,-18: - 2: 48 + 1: 48 0: 61440 -17,-17: 0: 4095 -17,-20: - 2: 8930 + 1: 8930 -17,-21: - 2: 8738 + 1: 8738 -17,-19: - 2: 14 + 1: 14 -16,-20: - 2: 21887 + 1: 21887 -16,-19: - 2: 63903 + 1: 63903 -16,-18: 0: 61440 -16,-17: @@ -16429,122 +16396,113 @@ entities: -13,-17: 0: 30578 -12,-16: - 2: 12785 + 1: 12561 -12,-15: 0: 65520 -16,-21: - 2: 30590 + 1: 30590 -15,-20: - 2: 23 + 1: 23 0: 32768 -15,-19: - 2: 4099 + 1: 4099 0: 2184 -15,-18: 0: 64716 -15,-21: - 2: 8751 + 1: 8751 -14,-20: 0: 12561 - 2: 12 + 1: 12 -14,-19: 0: 4915 - 2: 8 + 1: 8 -14,-18: 0: 65535 -14,-21: - 2: 39327 + 1: 39327 -13,-19: - 2: 1095 + 1: 1095 -13,-18: 0: 32767 -13,-20: - 2: 17614 + 1: 17614 -13,-21: - 2: 52431 + 1: 52431 -12,-20: - 2: 39417 + 1: 39417 -12,-18: 0: 255 - 2: 8192 + 1: 8192 -12,-17: - 2: 3859 + 1: 273 -12,-21: - 2: 39416 + 1: 39416 -12,-19: - 2: 287 + 1: 287 -11,-18: 0: 127 - 2: 12288 - -11,-17: - 2: 4369 - -11,-16: - 2: 12561 + 1: 12288 -10,-19: - 0: 61986 + 0: 61440 -10,-18: - 0: 50431 - 7: 8192 - -10,-17: - 0: 61166 - -10,-16: - 0: 14 - 2: 32768 + 0: 255 -9,-18: 0: 15 - -9,-17: - 0: 65520 -9,-19: 0: 57344 - -9,-16: - 0: 58623 -9,-20: 0: 8 -9,-21: 0: 34816 -8,-20: 0: 34831 - 2: 8960 + 1: 8960 -8,-19: 0: 63616 - 2: 50 + 1: 50 -8,-18: 0: 11 - 2: 36352 + 1: 36352 -12,-14: 0: 61152 -11,-15: 0: 65328 -11,-14: 0: 63472 + -11,-16: + 1: 12288 -10,-15: 0: 56576 - 2: 12 + 1: 12 -10,-14: 0: 56540 + -10,-16: + 1: 32768 -9,-15: 0: 65518 -9,-14: 0: 65535 + -9,-16: + 0: 58368 -8,-15: 0: 61422 -8,-14: 0: 30470 -8,-13: - 1: 1 - 0: 3846 + 0: 3847 -12,-24: - 2: 29808 + 1: 29808 -13,-24: - 2: 54512 + 1: 54512 -12,-23: - 2: 18244 + 1: 18244 -13,-23: - 2: 61156 + 1: 61156 -12,-22: - 2: 35924 + 1: 35924 -13,-22: - 2: 61166 + 1: 61166 -8,-21: 0: 65518 -7,-20: @@ -16592,12 +16550,12 @@ entities: -4,-17: 0: 64319 -8,-23: - 2: 272 + 1: 272 0: 17472 -8,-22: 0: 61166 -7,-23: - 2: 272 + 1: 272 -6,-22: 0: 17408 -5,-24: @@ -16610,7 +16568,7 @@ entities: 0: 34944 -4,-24: 0: 13107 - 2: 34952 + 1: 34952 -4,-23: 0: 13299 -4,-22: @@ -16618,7 +16576,7 @@ entities: -4,-21: 0: 65331 -8,-16: - 2: 3072 + 1: 3072 -7,-15: 0: 48951 -7,-14: @@ -16660,7 +16618,7 @@ entities: -1,-15: 0: 20479 -1,-14: - 0: 61695 + 0: 53503 -1,-17: 0: 65295 0,-16: @@ -16691,7 +16649,7 @@ entities: 0: 65520 -1,-21: 0: 65280 - 2: 8 + 1: 8 0,-20: 0: 65519 0,-19: @@ -16706,13 +16664,13 @@ entities: 0: 16 -1,-23: 0: 192 - 2: 32768 + 1: 32768 -1,-24: - 2: 34952 + 1: 34952 0,-23: 0: 61182 -1,-22: - 2: 34952 + 1: 34952 0,-21: 0: 65518 1,-20: @@ -16750,7 +16708,7 @@ entities: 3,-16: 0: 32759 4,-20: - 2: 116 + 1: 116 0: 12288 4,-19: 0: 20735 @@ -16787,14 +16745,14 @@ entities: 0,-25: 0: 61408 1,-24: - 2: 2 + 1: 2 1,-22: - 2: 17920 + 1: 17920 1,-25: - 2: 8704 + 1: 8704 2,-22: 0: 4352 - 2: 19456 + 1: 19456 3,-24: 0: 61158 3,-23: @@ -16804,7 +16762,7 @@ entities: 3,-25: 0: 26208 4,-21: - 2: 1136 + 1: 1136 0: 12288 5,-19: 0: 53503 @@ -16838,7 +16796,7 @@ entities: 0: 4095 7,-21: 0: 14376 - 2: 2 + 1: 2 7,-16: 0: 48059 8,-20: @@ -16870,12 +16828,12 @@ entities: 8,-14: 0: 32624 7,-22: - 2: 9924 + 1: 9924 8,-22: - 2: 33908 + 1: 33908 8,-21: 0: 4883 - 2: 136 + 1: 136 9,-16: 0: 63359 9,-15: @@ -16895,8 +16853,7 @@ entities: 11,-16: 0: 28927 11,-15: - 0: 20727 - 1: 8192 + 0: 28919 11,-14: 0: 32631 12,-16: @@ -16914,11 +16871,11 @@ entities: 10,-18: 0: 65336 10,-20: - 2: 136 + 1: 136 10,-21: - 2: 34952 + 1: 34952 11,-20: - 2: 63 + 1: 63 0: 4352 11,-19: 0: 65521 @@ -16927,42 +16884,42 @@ entities: 11,-17: 0: 4092 11,-21: - 2: 45887 + 1: 45887 12,-20: - 2: 39327 + 1: 39327 12,-19: 0: 6000 12,-18: 0: 4092 9,-24: - 2: 140 + 1: 140 9,-25: - 2: 35568 + 1: 35568 10,-24: 0: 14 - 2: 36608 + 1: 36608 10,-25: 0: 61156 11,-24: 0: 60939 - 2: 4352 + 1: 4352 10,-23: - 2: 34952 + 1: 34952 11,-23: - 2: 16177 + 1: 16177 10,-22: - 2: 34952 + 1: 34952 11,-22: - 2: 13107 + 1: 13107 11,-25: 0: 49075 12,-24: 0: 65327 12,-23: 0: 15 - 2: 12032 + 1: 12032 12,-21: - 2: 45437 + 1: 45437 12,-17: 0: 61166 13,-16: @@ -16972,8 +16929,7 @@ entities: 13,-14: 0: 4095 13,-17: - 0: 48674 - 9: 8 + 0: 48682 14,-16: 0: 61902 14,-15: @@ -16981,8 +16937,7 @@ entities: 14,-14: 0: 36863 14,-17: - 0: 58888 - 9: 3 + 0: 58891 15,-16: 0: 47547 15,-15: @@ -17000,8 +16955,7 @@ entities: 13,-19: 0: 65532 13,-18: - 0: 9023 - 9: 34816 + 0: 43839 13,-20: 0: 52428 14,-20: @@ -17009,11 +16963,10 @@ entities: 14,-19: 0: 61789 14,-18: - 0: 51331 - 9: 13056 + 0: 64387 14,-21: 0: 57344 - 2: 234 + 1: 234 15,-20: 0: 47281 15,-19: @@ -17033,35 +16986,35 @@ entities: 12,-25: 0: 65522 12,-22: - 2: 21886 + 1: 21886 13,-24: 0: 13102 - 2: 34816 + 1: 34816 13,-23: 0: 3 - 2: 44936 + 1: 44936 13,-22: - 2: 39323 + 1: 39323 13,-21: - 2: 8089 + 1: 8089 13,-25: 0: 61414 14,-24: 0: 3 - 2: 1928 + 1: 1928 14,-22: - 2: 45192 + 1: 45192 14,-25: 0: 13105 - 2: 34944 + 1: 34944 15,-24: - 2: 1 + 1: 1 15,-22: - 0: 61166 + 0: 52974 15,-23: - 2: 3712 + 1: 3712 16,-23: - 2: 256 + 1: 256 0: 2184 16,-22: 0: 65531 @@ -17074,8 +17027,7 @@ entities: 17,-18: 0: 65392 17,-17: - 0: 45631 - 1: 2048 + 0: 47679 17,-21: 0: 45983 17,-16: @@ -17110,46 +17062,42 @@ entities: 0: 56797 20,-18: 0: 62209 - 2: 128 + 1: 128 20,-17: 0: 12339 - 2: 34816 + 1: 34816 17,-23: 0: 37819 17,-22: 0: 65535 17,-24: - 2: 768 + 1: 768 0: 32768 18,-24: 0: 12304 - 2: 2272 + 1: 2272 18,-23: 0: 14779 18,-22: 0: 65535 19,-24: - 2: 33024 + 1: 33024 19,-23: 0: 39731 - 2: 8 + 1: 8 19,-22: 0: 65535 20,-23: - 0: 4352 - 9: 49152 - 2: 136 + 0: 53504 + 1: 136 20,-22: - 0: 769 - 9: 52428 + 0: 53197 20,-21: - 0: 49425 - 9: 204 + 0: 49629 17,-15: 0: 65327 17,-14: - 0: 64783 - 1: 512 + 0: 65295 18,-15: 0: 65101 18,-14: @@ -17160,67 +17108,64 @@ entities: 0: 61166 20,-16: 0: 13104 - 2: 34952 + 1: 34952 20,-15: 0: 65520 20,-14: 0: 65535 21,-16: - 2: 17487 + 1: 17487 21,-15: 0: 65280 - 2: 14 + 1: 14 21,-14: 0: 65535 21,-17: - 2: 65390 + 1: 65390 22,-16: - 2: 3183 + 1: 3183 22,-14: 0: 3549 22,-17: - 2: 65405 + 1: 65405 22,-15: - 2: 2592 + 1: 2592 23,-16: - 2: 879 + 1: 879 23,-15: - 2: 50944 + 1: 50944 23,-14: 0: 273 - 2: 51336 + 1: 51336 23,-17: - 2: 65379 + 1: 65379 23,-13: - 2: 7 + 1: 7 24,-16: - 2: 2255 + 1: 2255 24,-15: - 2: 4096 + 1: 4096 24,-14: - 2: 4096 + 1: 4096 20,-24: - 2: 35938 + 1: 35938 20,-25: - 2: 12255 + 1: 12255 21,-24: - 2: 4647 + 1: 4647 21,-23: - 9: 12288 - 0: 35020 + 0: 47308 21,-22: - 9: 13107 - 0: 34944 + 0: 48051 21,-21: - 9: 51 - 0: 63624 + 0: 63675 21,-25: - 2: 24575 + 1: 24575 21,-20: 0: 47615 22,-24: 0: 4368 - 2: 32777 + 1: 32777 22,-23: 0: 47923 22,-22: @@ -17228,14 +17173,14 @@ entities: 22,-21: 0: 47581 22,-25: - 2: 40959 + 1: 40959 22,-20: 0: 29499 23,-24: - 2: 14299 + 1: 14299 23,-23: 0: 65280 - 2: 9 + 1: 9 23,-22: 0: 65535 23,-21: @@ -17243,28 +17188,28 @@ entities: 23,-20: 0: 7 23,-25: - 2: 44927 + 1: 44927 24,-23: - 2: 1 + 1: 1 24,-21: - 2: 61984 + 1: 61984 21,-19: 0: 30579 21,-18: - 2: 25680 + 1: 25680 0: 4096 22,-19: 0: 3 24,-20: - 2: 17 + 1: 17 24,-17: - 2: 65480 + 1: 65480 25,-21: - 2: 61440 + 1: 61440 -4,-26: - 2: 12288 + 1: 12288 -5,-26: - 2: 35360 + 1: 35360 -3,-25: 0: 256 -1,-25: @@ -17272,89 +17217,87 @@ entities: -16,20: 0: 128 -15,20: - 0: 16 - 3: 61440 + 0: 61456 -15,21: - 3: 142 + 0: 142 -14,21: - 3: 7 + 0: 7 -20,20: 0: 819 - 2: 34952 + 1: 34952 -21,20: - 0: 2184 - 3: 273 - 2: 8738 + 0: 2457 + 1: 8738 -20,21: - 2: 15 + 1: 15 -21,21: - 2: 126 + 1: 126 -20,19: - 2: 36832 + 1: 36832 -19,21: - 2: 1103 + 1: 1103 -19,20: 0: 3822 -18,21: - 2: 35 + 1: 35 -18,20: - 2: 8738 - 3: 1088 + 1: 8738 + 0: 1088 -18,19: - 2: 8960 - 3: 3 + 1: 8960 + 0: 3 -20,17: 0: 65535 -21,17: 0: 52428 - 8: 4369 + 2: 4369 -20,18: 0: 65535 -21,18: 0: 52428 - 8: 4369 + 2: 4369 -21,19: - 2: 11904 + 1: 11904 -19,17: 0: 65535 -19,18: 0: 32767 -19,19: - 2: 4080 + 1: 4080 -18,17: 0: 65262 -18,18: 0: 8738 -24,17: - 8: 65535 + 2: 65535 -25,17: - 8: 52975 + 2: 52975 -24,18: - 8: 52479 + 2: 52479 -25,18: - 8: 8 + 2: 8 -24,19: - 3: 4352 + 0: 4352 -24,20: - 3: 2 + 0: 2 -23,17: - 8: 65535 + 2: 65535 -23,18: - 8: 65535 + 2: 65535 -23,19: - 8: 2254 + 2: 2254 -22,17: - 8: 65535 + 2: 65535 -22,18: - 8: 65535 + 2: 65535 -22,19: - 8: 2047 + 2: 2047 -26,17: - 3: 768 + 0: 768 -25,19: - 3: 64 + 0: 64 -22,20: - 3: 3072 + 0: 3072 12,-28: 0: 65327 12,-29: @@ -17378,483 +17321,356 @@ entities: 13,-27: 0: 26340 14,-28: - 2: 3884 + 1: 3884 14,-27: 0: 48 - 2: 3276 + 1: 3276 14,-26: 0: 65280 14,-29: - 2: 18440 + 1: 18440 0: 17 15,-28: - 2: 4371 + 1: 4371 0: 34944 15,-27: - 2: 17 + 1: 17 0: 60620 15,-26: 0: 14206 15,-25: - 2: 632 + 1: 632 15,-29: - 2: 5939 + 1: 5939 16,-28: 0: 4913 - 2: 34944 + 1: 34944 16,-27: 0: 17 - 2: 9284 + 1: 9284 16,-26: - 2: 4386 + 1: 4386 8,-29: 0: 30583 8,-28: 0: 52964 7,-28: 0: 128 - 2: 34882 + 1: 34882 8,-27: - 2: 8465 + 1: 8465 0: 35020 8,-26: - 2: 17442 + 1: 17442 0: 8 9,-27: 0: 12561 - 2: 2252 + 1: 2252 9,-26: 0: 61299 8,-25: - 2: 8 + 1: 8 9,-28: - 2: 19534 + 1: 19534 9,-29: - 2: 20462 + 1: 20462 10,-28: - 2: 1825 + 1: 1825 10,-27: - 2: 273 + 1: 273 0: 224 10,-26: 0: 30464 10,-29: - 2: 4096 + 1: 4096 0: 2252 11,-29: 0: 65407 16,-29: 0: 65535 17,-28: - 2: 18 + 1: 18 17,-29: - 2: 58444 + 1: 58444 0: 17 16,-32: - 2: 17441 + 1: 17441 0: 4096 15,-32: 0: 61299 16,-31: 0: 13073 - 2: 34948 + 1: 34948 15,-31: 0: 34956 - 2: 4368 + 1: 4368 16,-30: 0: 65521 17,-30: 0: 4096 - 2: 17634 + 1: 17634 18,-30: - 2: 272 + 1: 272 18,-29: - 2: 4359 + 1: 4359 20,-27: - 2: 55108 + 1: 55108 20,-26: - 2: 8159 + 1: 8159 20,-28: - 2: 50252 + 1: 50252 21,-28: - 2: 32599 + 1: 32599 21,-27: - 2: 65527 + 1: 65527 21,-26: - 2: 40959 + 1: 40959 21,-29: - 2: 19456 + 1: 19456 22,-28: - 2: 57181 + 1: 57181 22,-27: - 2: 65533 + 1: 65533 22,-26: - 2: 16383 + 1: 16383 22,-29: - 2: 22272 + 1: 22272 23,-28: - 2: 30039 + 1: 30039 23,-27: - 2: 32085 + 1: 32085 23,-26: - 2: 8063 + 1: 8063 24,-27: - 2: 4352 + 1: 4352 24,-26: - 2: 4369 + 1: 4369 24,-25: - 2: 273 + 1: 273 12,-33: 0: 65522 12,-32: - 2: 64896 + 1: 64896 11,-32: - 2: 63616 + 1: 63616 12,-31: 0: 28672 - 2: 8 + 1: 8 12,-30: 0: 12287 11,-30: 0: 32764 13,-32: - 2: 63488 + 1: 63488 0: 8 13,-30: 0: 65393 13,-33: 0: 64304 - 2: 8 + 1: 8 13,-31: - 2: 202 + 1: 202 14,-32: 0: 207 - 2: 16384 + 1: 16384 14,-30: 0: 4096 - 2: 2124 + 1: 2124 14,-33: 0: 61696 - 2: 195 + 1: 195 14,-31: - 2: 44620 + 1: 44620 15,-30: - 2: 14097 + 1: 14097 15,-33: - 2: 34320 + 1: 34320 12,-35: - 2: 61440 + 1: 61440 12,-34: - 3: 35071 - 0: 8704 + 0: 43775 11,-35: - 2: 32768 + 1: 32768 11,-34: - 3: 52424 - 2: 12836 + 0: 52424 + 1: 12836 11,-33: 0: 65248 13,-34: - 2: 25121 - 3: 4368 + 1: 25121 + 0: 4368 8,-33: - 2: 32768 + 1: 32768 9,-33: - 2: 960 + 1: 960 0: 32768 9,-32: 0: 14334 10,-33: - 2: 30 + 1: 30 0: 64512 10,-32: 0: 31 - 2: 63488 + 1: 63488 8,-32: - 2: 4388 + 1: 4388 0: 51200 8,-31: - 2: 1 + 1: 1 0: 61132 7,-31: - 2: 51328 + 1: 51328 8,-30: 0: 30580 7,-30: 0: 51328 - 2: 4402 + 1: 4402 7,-29: 0: 35020 - 2: 12561 + 1: 12561 9,-31: 0: 1 - 2: 60488 + 1: 60488 9,-30: - 2: 61260 + 1: 61260 10,-31: - 2: 5017 + 1: 5017 10,-30: - 2: 17 + 1: 17 0: 51200 11,-31: - 2: 26 + 1: 26 6,-29: - 2: 50191 + 1: 50191 6,-30: - 2: 1216 + 1: 1216 -17,-22: - 2: 9924 + 1: 9924 -17,-24: - 2: 50368 + 1: 50368 -17,-23: - 2: 19524 + 1: 19524 -16,-24: - 2: 62704 + 1: 62704 -16,-23: - 2: 61408 + 1: 61408 -16,-22: - 2: 61182 + 1: 61182 -15,-24: - 2: 64242 + 1: 64242 -15,-25: - 2: 27648 + 1: 27648 -15,-23: - 2: 61156 + 1: 61156 -15,-22: - 2: 20206 + 1: 20206 -14,-24: - 2: 64249 + 1: 64249 -14,-25: - 2: 55040 + 1: 55040 -14,-23: - 2: 61156 + 1: 61156 -14,-22: - 2: 20206 + 1: 20206 -26,-1: - 2: 36040 + 1: 36040 -26,-2: - 2: 34944 + 1: 34944 -26,0: - 2: 52424 + 1: 52424 -26,3: - 2: 61064 + 1: 61064 -26,1: - 2: 52360 + 1: 52360 -26,4: - 2: 140 + 1: 140 -26,2: - 2: 34952 + 1: 34952 -25,4: - 2: 17 + 1: 17 6,21: - 2: 196 + 1: 196 7,21: - 2: 62964 + 1: 62964 8,21: - 2: 4592 + 1: 4592 9,21: - 2: 242 + 1: 242 10,21: - 2: 244 + 1: 244 11,21: - 2: 19 + 1: 19 25,-16: - 2: 1999 + 1: 1999 25,-17: - 2: 65479 + 1: 65479 26,-16: - 2: 42544 + 1: 42544 0: 8 26,-17: - 2: 12342 - 0: 51200 + 1: 12342 + 0: 34816 26,-15: - 2: 63 + 1: 63 27,-16: 0: 3839 27,-15: - 2: 20143 + 1: 20143 27,-17: 0: 32766 27,-14: - 2: 68 + 1: 68 28,-16: 0: 19 - 2: 44168 + 1: 44168 28,-15: - 2: 143 + 1: 143 26,-18: - 2: 44848 + 1: 44848 27,-18: - 2: 4014 + 1: 4014 27,-19: - 2: 17472 + 1: 17472 28,-18: - 2: 44928 + 1: 44928 28,-17: 0: 13072 - 2: 34956 + 1: 34956 29,-18: - 2: 272 + 1: 272 29,-17: - 2: 58112 + 1: 58112 29,-16: - 2: 3 + 1: 3 30,-17: - 2: 4096 + 1: 4096 29,-15: - 2: 17 + 1: 17 uniqueMixes: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Nitrogen: 6666.982 - volume: 2500 temperature: 235 moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 27.225372 + Nitrogen: 102.419266 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -17863,6 +17679,7 @@ entities: id: Emerald - type: NightLightning - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 50803 components: - type: MetaData @@ -18028,53 +17845,22 @@ entities: uniqueMixes: - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 temperature: 293.14975 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AcousticGuitarInstrument entities: - uid: 3 @@ -18098,6 +17884,8 @@ entities: - 32190 - 32598 - 913 + - type: Fixtures + fixtures: {} - uid: 9 components: - type: Transform @@ -18132,6 +17920,8 @@ entities: - 23229 - 23232 - 23233 + - type: Fixtures + fixtures: {} - uid: 10 components: - type: Transform @@ -18172,6 +17962,8 @@ entities: - 32216 - 32606 - 32217 + - type: Fixtures + fixtures: {} - uid: 11 components: - type: Transform @@ -18185,6 +17977,8 @@ entities: - 32462 - 32254 - 23472 + - type: Fixtures + fixtures: {} - uid: 12 components: - type: Transform @@ -18203,6 +17997,8 @@ entities: - 32706 - 32704 - 32703 + - type: Fixtures + fixtures: {} - uid: 13 components: - type: Transform @@ -18226,6 +18022,8 @@ entities: - 22934 - 22935 - 22974 + - type: Fixtures + fixtures: {} - uid: 14 components: - type: Transform @@ -18238,6 +18036,8 @@ entities: - 32418 - 32602 - 23208 + - type: Fixtures + fixtures: {} - uid: 15 components: - type: Transform @@ -18251,6 +18051,8 @@ entities: - 32234 - 1028 - 32434 + - type: Fixtures + fixtures: {} - uid: 16 components: - type: Transform @@ -18278,6 +18080,8 @@ entities: - 1012 - 32429 - 32239 + - type: Fixtures + fixtures: {} - uid: 17 components: - type: Transform @@ -18290,12 +18094,16 @@ entities: - 32438 - 967 - 32241 + - type: Fixtures + fixtures: {} - uid: 18 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19 components: - type: Transform @@ -18309,6 +18117,8 @@ entities: - 956 - 32250 - 32440 + - type: Fixtures + fixtures: {} - uid: 20 components: - type: Transform @@ -18326,6 +18136,8 @@ entities: - 960 - 32256 - 32446 + - type: Fixtures + fixtures: {} - uid: 21 components: - type: Transform @@ -18338,18 +18150,24 @@ entities: - 32436 - 966 - 23078 + - type: Fixtures + fixtures: {} - uid: 22 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24 components: - type: Transform @@ -18368,6 +18186,8 @@ entities: - 1013 - 32229 - 32433 + - type: Fixtures + fixtures: {} - uid: 25 components: - type: Transform @@ -18389,12 +18209,16 @@ entities: - 32352 - 32453 - 32226 + - type: Fixtures + fixtures: {} - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 27 components: - type: Transform @@ -18416,6 +18240,8 @@ entities: - 22951 - 22950 - 1005 + - type: Fixtures + fixtures: {} - uid: 28 components: - type: Transform @@ -18432,6 +18258,8 @@ entities: - 32214 - 850 - 32513 + - type: Fixtures + fixtures: {} - uid: 29 components: - type: Transform @@ -18445,6 +18273,8 @@ entities: - 32344 - 32465 - 833 + - type: Fixtures + fixtures: {} - uid: 30 components: - type: Transform @@ -18458,11 +18288,15 @@ entities: - 32202 - 911 - 32608 + - type: Fixtures + fixtures: {} - uid: 31 components: - type: Transform pos: 62.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 32 components: - type: Transform @@ -18494,6 +18328,8 @@ entities: - 989 - 32306 - 32309 + - type: Fixtures + fixtures: {} - uid: 33 components: - type: Transform @@ -18518,6 +18354,8 @@ entities: - 32625 - 985 - 32399 + - type: Fixtures + fixtures: {} - uid: 34 components: - type: Transform @@ -18552,12 +18390,16 @@ entities: - 23172 - 23173 - 23174 + - type: Fixtures + fixtures: {} - uid: 35 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36 components: - type: Transform @@ -18583,12 +18425,16 @@ entities: - 32270 - 32660 - 949 + - type: Fixtures + fixtures: {} - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 38 components: - type: Transform @@ -18602,12 +18448,16 @@ entities: - 32427 - 32264 - 815 + - type: Fixtures + fixtures: {} - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40 components: - type: Transform @@ -18621,6 +18471,8 @@ entities: - 32292 - 32670 - 931 + - type: Fixtures + fixtures: {} - uid: 41 components: - type: Transform @@ -18661,6 +18513,8 @@ entities: - 32288 - 23203 - 32683 + - type: Fixtures + fixtures: {} - uid: 42 components: - type: Transform @@ -18678,6 +18532,8 @@ entities: - 32675 - 934 - 32289 + - type: Fixtures + fixtures: {} - uid: 43 components: - type: Transform @@ -18690,6 +18546,8 @@ entities: - 933 - 32674 - 23198 + - type: Fixtures + fixtures: {} - uid: 44 components: - type: Transform @@ -18702,6 +18560,8 @@ entities: - 32293 - 939 - 32672 + - type: Fixtures + fixtures: {} - uid: 45 components: - type: Transform @@ -18724,6 +18584,8 @@ entities: - 23212 - 23221 - 23222 + - type: Fixtures + fixtures: {} - uid: 46 components: - type: Transform @@ -18736,11 +18598,15 @@ entities: - 942 - 32691 - 23227 + - type: Fixtures + fixtures: {} - uid: 47 components: - type: Transform pos: 43.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 48 components: - type: Transform @@ -18758,18 +18624,24 @@ entities: - 32299 - 952 - 32661 + - type: Fixtures + fixtures: {} - uid: 49 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 51 components: - type: Transform @@ -18790,6 +18662,8 @@ entities: - 32220 - 32620 - 23048 + - type: Fixtures + fixtures: {} - uid: 52 components: - type: Transform @@ -18804,6 +18678,8 @@ entities: - 32655 - 832 - 32419 + - type: Fixtures + fixtures: {} - uid: 53 components: - type: Transform @@ -18817,6 +18693,8 @@ entities: - 32548 - 857 - 22978 + - type: Fixtures + fixtures: {} - uid: 54 components: - type: Transform @@ -18830,6 +18708,8 @@ entities: - 32547 - 32147 - 834 + - type: Fixtures + fixtures: {} - uid: 55 components: - type: Transform @@ -18851,6 +18731,8 @@ entities: - 32150 - 32546 - 871 + - type: Fixtures + fixtures: {} - uid: 56 components: - type: Transform @@ -18863,12 +18745,16 @@ entities: - 870 - 32544 - 32152 + - type: Fixtures + fixtures: {} - uid: 57 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 58 components: - type: Transform @@ -18882,6 +18768,8 @@ entities: - 32194 - 32603 - 908 + - type: Fixtures + fixtures: {} - uid: 59 components: - type: Transform @@ -18896,6 +18784,8 @@ entities: - 32596 - 32411 - 918 + - type: Fixtures + fixtures: {} - uid: 60 components: - type: Transform @@ -18931,6 +18821,8 @@ entities: - 32412 - 915 - 32594 + - type: Fixtures + fixtures: {} - uid: 61 components: - type: Transform @@ -18944,6 +18836,8 @@ entities: - 32185 - 23293 - 23294 + - type: Fixtures + fixtures: {} - uid: 62 components: - type: Transform @@ -18972,6 +18866,8 @@ entities: - 32186 - 925 - 32586 + - type: Fixtures + fixtures: {} - uid: 63 components: - type: Transform @@ -18988,6 +18884,8 @@ entities: - 32596 - 32411 - 918 + - type: Fixtures + fixtures: {} - uid: 64 components: - type: Transform @@ -19002,6 +18900,8 @@ entities: - 32413 - 927 - 32595 + - type: Fixtures + fixtures: {} - uid: 65 components: - type: Transform @@ -19028,12 +18928,16 @@ entities: - 32196 - 32199 - 32658 + - type: Fixtures + fixtures: {} - uid: 66 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 67 components: - type: Transform @@ -19051,12 +18955,16 @@ entities: - 23305 - 23306 - 32156 + - type: Fixtures + fixtures: {} - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 69 components: - type: Transform @@ -19083,6 +18991,8 @@ entities: - 32162 - 881 - 32424 + - type: Fixtures + fixtures: {} - uid: 70 components: - type: Transform @@ -19095,12 +19005,16 @@ entities: - 32563 - 876 - 32165 + - type: Fixtures + fixtures: {} - uid: 71 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 72 components: - type: Transform @@ -19127,6 +19041,8 @@ entities: - 32166 - 886 - 32566 + - type: Fixtures + fixtures: {} - uid: 73 components: - type: Transform @@ -19142,6 +19058,8 @@ entities: - 32565 - 32164 - 878 + - type: Fixtures + fixtures: {} - uid: 74 components: - type: Transform @@ -19156,6 +19074,8 @@ entities: - 32569 - 23316 - 23315 + - type: Fixtures + fixtures: {} - uid: 75 components: - type: Transform @@ -19174,6 +19094,8 @@ entities: - 32171 - 32570 - 32169 + - type: Fixtures + fixtures: {} - uid: 76 components: - type: Transform @@ -19197,6 +19119,8 @@ entities: - 887 - 32176 - 890 + - type: Fixtures + fixtures: {} - uid: 77 components: - type: Transform @@ -19208,6 +19132,8 @@ entities: - 32583 - 891 - 23424 + - type: Fixtures + fixtures: {} - uid: 78 components: - type: Transform @@ -19228,6 +19154,8 @@ entities: - 32579 - 23324 - 23325 + - type: Fixtures + fixtures: {} - uid: 79 components: - type: Transform @@ -19237,6 +19165,8 @@ entities: devices: - 22992 - 1041 + - type: Fixtures + fixtures: {} - uid: 80 components: - type: Transform @@ -19255,12 +19185,16 @@ entities: - 32392 - 32393 - 995 + - type: Fixtures + fixtures: {} - uid: 81 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 82 components: - type: Transform @@ -19270,6 +19204,8 @@ entities: - type: DeviceList devices: - 810 + - type: Fixtures + fixtures: {} - uid: 83 components: - type: Transform @@ -19286,11 +19222,15 @@ entities: - 23054 - 23057 - 23053 + - type: Fixtures + fixtures: {} - uid: 84 components: - type: Transform pos: 13.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 85 components: - type: Transform @@ -19313,12 +19253,16 @@ entities: - 32373 - 32374 - 32371 + - type: Fixtures + fixtures: {} - uid: 86 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 87 components: - type: Transform @@ -19335,6 +19279,8 @@ entities: - 32501 - 32113 - 997 + - type: Fixtures + fixtures: {} - uid: 88 components: - type: Transform @@ -19350,6 +19296,8 @@ entities: - 830 - 32499 - 32500 + - type: Fixtures + fixtures: {} - uid: 89 components: - type: Transform @@ -19369,6 +19317,8 @@ entities: - 23353 - 23364 - 23460 + - type: Fixtures + fixtures: {} - uid: 90 components: - type: Transform @@ -19386,18 +19336,24 @@ entities: - 32494 - 32378 - 1000 + - type: Fixtures + fixtures: {} - uid: 91 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 92 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 93 components: - type: Transform @@ -19410,6 +19366,8 @@ entities: - 843 - 32355 - 23002 + - type: Fixtures + fixtures: {} - uid: 94 components: - type: Transform @@ -19446,6 +19404,8 @@ entities: - 838 - 32485 - 32092 + - type: Fixtures + fixtures: {} - uid: 95 components: - type: Transform @@ -19457,6 +19417,8 @@ entities: - 32490 - 32099 - 23365 + - type: Fixtures + fixtures: {} - uid: 96 components: - type: Transform @@ -19480,17 +19442,23 @@ entities: - 23372 - 23371 - 23370 + - type: Fixtures + fixtures: {} - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 98 components: - type: Transform pos: -9.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 99 components: - type: Transform @@ -19509,6 +19477,8 @@ entities: - 32381 - 32380 - 32540 + - type: Fixtures + fixtures: {} - uid: 100 components: - type: Transform @@ -19539,6 +19509,8 @@ entities: - 32518 - 859 - 32341 + - type: Fixtures + fixtures: {} - uid: 101 components: - type: Transform @@ -19564,6 +19536,8 @@ entities: - 32132 - 32539 - 32134 + - type: Fixtures + fixtures: {} - uid: 102 components: - type: Transform @@ -19577,6 +19551,8 @@ entities: - 862 - 32647 - 32338 + - type: Fixtures + fixtures: {} - uid: 103 components: - type: Transform @@ -19589,6 +19565,8 @@ entities: - 32648 - 32339 - 863 + - type: Fixtures + fixtures: {} - uid: 104 components: - type: Transform @@ -19610,6 +19588,8 @@ entities: - 1020 - 22996 - 22998 + - type: Fixtures + fixtures: {} - uid: 105 components: - type: Transform @@ -19620,6 +19600,8 @@ entities: - 32337 - 23043 - 868 + - type: Fixtures + fixtures: {} - uid: 106 components: - type: Transform @@ -19655,12 +19637,16 @@ entities: - 860 - 32125 - 32521 + - type: Fixtures + fixtures: {} - uid: 107 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 108 components: - type: Transform @@ -19675,6 +19661,8 @@ entities: - 827 - 32471 - 23433 + - type: Fixtures + fixtures: {} - uid: 109 components: - type: Transform @@ -19691,6 +19679,8 @@ entities: - 32468 - 23444 - 23445 + - type: Fixtures + fixtures: {} - uid: 110 components: - type: Transform @@ -19711,6 +19701,8 @@ entities: - 23429 - 23434 - 23435 + - type: Fixtures + fixtures: {} - uid: 111 components: - type: Transform @@ -19723,6 +19715,8 @@ entities: - 32482 - 32082 - 23442 + - type: Fixtures + fixtures: {} - uid: 112 components: - type: Transform @@ -19735,6 +19729,8 @@ entities: - 32073 - 32477 - 23437 + - type: Fixtures + fixtures: {} - uid: 113 components: - type: Transform @@ -19747,6 +19743,8 @@ entities: - 32091 - 32473 - 23428 + - type: Fixtures + fixtures: {} - uid: 114 components: - type: Transform @@ -19760,6 +19758,8 @@ entities: - 809 - 32470 - 32087 + - type: Fixtures + fixtures: {} - uid: 115 components: - type: Transform @@ -19771,6 +19771,8 @@ entities: - 23446 - 822 - 32417 + - type: Fixtures + fixtures: {} - uid: 116 components: - type: Transform @@ -19787,6 +19789,8 @@ entities: - 23459 - 23458 - 831 + - type: Fixtures + fixtures: {} - uid: 117 components: - type: Transform @@ -19799,6 +19803,8 @@ entities: - 32408 - 23457 - 23458 + - type: Fixtures + fixtures: {} - uid: 118 components: - type: Transform @@ -19814,6 +19820,8 @@ entities: - 32090 - 825 - 826 + - type: Fixtures + fixtures: {} - uid: 119 components: - type: Transform @@ -19827,6 +19835,8 @@ entities: - 23439 - 23438 - 32070 + - type: Fixtures + fixtures: {} - uid: 120 components: - type: Transform @@ -19841,6 +19851,8 @@ entities: - 32077 - 32480 - 32076 + - type: Fixtures + fixtures: {} - uid: 121 components: - type: Transform @@ -19858,6 +19870,8 @@ entities: - 23434 - 23439 - 23020 + - type: Fixtures + fixtures: {} - uid: 122 components: - type: Transform @@ -19873,6 +19887,8 @@ entities: - 23438 - 23436 - 23455 + - type: Fixtures + fixtures: {} - uid: 123 components: - type: Transform @@ -19890,6 +19906,8 @@ entities: - 23448 - 23428 - 23024 + - type: Fixtures + fixtures: {} - uid: 124 components: - type: Transform @@ -19913,6 +19931,8 @@ entities: - 23486 - 23485 - 23050 + - type: Fixtures + fixtures: {} - uid: 125 components: - type: Transform @@ -19942,6 +19962,8 @@ entities: - 851 - 32514 - 32094 + - type: Fixtures + fixtures: {} - uid: 126 components: - type: Transform @@ -19971,6 +19993,8 @@ entities: - 854 - 32640 - 22949 + - type: Fixtures + fixtures: {} - uid: 127 components: - type: Transform @@ -20011,11 +20035,15 @@ entities: - 23384 - 23385 - 23383 + - type: Fixtures + fixtures: {} - uid: 128 components: - type: Transform pos: 52.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 129 components: - type: Transform @@ -20031,6 +20059,8 @@ entities: - 32198 - 895 - 32659 + - type: Fixtures + fixtures: {} - uid: 130 components: - type: Transform @@ -20064,6 +20094,8 @@ entities: - 32578 - 32316 - 905 + - type: Fixtures + fixtures: {} - uid: 131 components: - type: Transform @@ -20092,6 +20124,8 @@ entities: - 898 - 32149 - 32553 + - type: Fixtures + fixtures: {} - uid: 132 components: - type: Transform @@ -20112,6 +20146,8 @@ entities: - 23263 - 23253 - 23252 + - type: Fixtures + fixtures: {} - uid: 133 components: - type: Transform @@ -20130,6 +20166,8 @@ entities: - 911 - 32608 - 23267 + - type: Fixtures + fixtures: {} - uid: 134 components: - type: Transform @@ -20145,6 +20183,8 @@ entities: - 924 - 32593 - 32187 + - type: Fixtures + fixtures: {} - uid: 135 components: - type: Transform @@ -20171,6 +20211,8 @@ entities: - 32407 - 853 - 32263 + - type: Fixtures + fixtures: {} - uid: 136 components: - type: Transform @@ -20185,6 +20227,8 @@ entities: - 32265 - 23228 - 23190 + - type: Fixtures + fixtures: {} - uid: 137 components: - type: Transform @@ -20217,6 +20261,8 @@ entities: - 32291 - 32673 - 23481 + - type: Fixtures + fixtures: {} - uid: 138 components: - type: Transform @@ -20238,6 +20284,8 @@ entities: - 32461 - 953 - 32252 + - type: Fixtures + fixtures: {} - uid: 139 components: - type: Transform @@ -20249,6 +20297,8 @@ entities: - 32460 - 955 - 32251 + - type: Fixtures + fixtures: {} - uid: 140 components: - type: Transform @@ -20270,6 +20320,8 @@ entities: - 32260 - 32445 - 32259 + - type: Fixtures + fixtures: {} - uid: 141 components: - type: Transform @@ -20289,6 +20341,8 @@ entities: - 32246 - 32442 - 963 + - type: Fixtures + fixtures: {} - uid: 142 components: - type: Transform @@ -20306,6 +20360,8 @@ entities: - 23059 - 32243 - 965 + - type: Fixtures + fixtures: {} - uid: 143 components: - type: Transform @@ -20336,6 +20392,8 @@ entities: - 23157 - 23156 - 23155 + - type: Fixtures + fixtures: {} - uid: 144 components: - type: Transform @@ -20354,6 +20412,8 @@ entities: - 32629 - 980 - 32345 + - type: Fixtures + fixtures: {} - uid: 145 components: - type: Transform @@ -20393,6 +20453,8 @@ entities: - 23168 - 22960 - 23285 + - type: Fixtures + fixtures: {} - uid: 146 components: - type: Transform @@ -20409,6 +20471,8 @@ entities: - 32635 - 23169 - 23170 + - type: Fixtures + fixtures: {} - uid: 147 components: - type: Transform @@ -20435,6 +20499,8 @@ entities: - 32497 - 828 - 32109 + - type: Fixtures + fixtures: {} - uid: 148 components: - type: Transform @@ -20457,20 +20523,8 @@ entities: - 32224 - 1030 - 32457 - - uid: 149 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 2 - - type: DeviceList - devices: - - 23344 - - 23345 - - 32421 - - 1031 - - 32715 - - 23347 - - 23349 + - type: Fixtures + fixtures: {} - uid: 150 components: - type: Transform @@ -20495,6 +20549,8 @@ entities: - 23086 - 23087 - 23085 + - type: Fixtures + fixtures: {} - uid: 151 components: - type: Transform @@ -20514,6 +20570,8 @@ entities: - 23111 - 23105 - 22941 + - type: Fixtures + fixtures: {} - uid: 152 components: - type: Transform @@ -20538,12 +20596,16 @@ entities: - 23136 - 23135 - 23049 + - type: Fixtures + fixtures: {} - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 154 components: - type: Transform @@ -20556,6 +20618,8 @@ entities: - 32535 - 867 - 32129 + - type: Fixtures + fixtures: {} - uid: 155 components: - type: Transform @@ -20569,6 +20633,8 @@ entities: - 944 - 32690 - 32296 + - type: Fixtures + fixtures: {} - uid: 156 components: - type: Transform @@ -20582,6 +20648,8 @@ entities: - 23209 - 23210 - 1032 + - type: Fixtures + fixtures: {} - uid: 157 components: - type: Transform @@ -20595,6 +20663,8 @@ entities: - 32599 - 32191 - 23277 + - type: Fixtures + fixtures: {} - uid: 158 components: - type: Transform @@ -20609,6 +20679,8 @@ entities: - 23280 - 23277 - 23045 + - type: Fixtures + fixtures: {} - uid: 159 components: - type: Transform @@ -20619,6 +20691,8 @@ entities: - 32156 - 32556 - 1034 + - type: Fixtures + fixtures: {} - uid: 160 components: - type: Transform @@ -20640,6 +20714,8 @@ entities: - 32451 - 32222 - 972 + - type: Fixtures + fixtures: {} - uid: 161 components: - type: Transform @@ -20655,6 +20731,8 @@ entities: - 23366 - 23368 - 23369 + - type: Fixtures + fixtures: {} - uid: 162 components: - type: Transform @@ -20666,6 +20744,8 @@ entities: - 1036 - 32104 - 32103 + - type: Fixtures + fixtures: {} - uid: 163 components: - type: Transform @@ -20679,11 +20759,15 @@ entities: - 23401 - 23007 - 32102 + - type: Fixtures + fixtures: {} - uid: 164 components: - type: Transform pos: 33.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 165 components: - type: Transform @@ -20703,6 +20787,8 @@ entities: - 23156 - 23157 - 23473 + - type: Fixtures + fixtures: {} - uid: 166 components: - type: Transform @@ -20722,6 +20808,8 @@ entities: - 973 - 32237 - 32621 + - type: Fixtures + fixtures: {} - uid: 167 components: - type: Transform @@ -20745,6 +20833,8 @@ entities: - 23083 - 23082 - 23075 + - type: Fixtures + fixtures: {} - uid: 168 components: - type: Transform @@ -20757,6 +20847,8 @@ entities: - 23160 - 23268 - 1037 + - type: Fixtures + fixtures: {} - uid: 169 components: - type: Transform @@ -20777,6 +20869,8 @@ entities: - 1038 - 1039 - 1040 + - type: Fixtures + fixtures: {} - uid: 170 components: - type: Transform @@ -20790,6 +20884,8 @@ entities: - 32420 - 1042 - 23487 + - type: Fixtures + fixtures: {} - uid: 171 components: - type: Transform @@ -20804,6 +20900,8 @@ entities: - 32712 - 23052 - 23487 + - type: Fixtures + fixtures: {} - uid: 172 components: - type: Transform @@ -20814,6 +20912,8 @@ entities: devices: - 23037 - 1044 + - type: Fixtures + fixtures: {} - proto: AirAlarmAssembly entities: - uid: 173 @@ -20821,6 +20921,8 @@ entities: - type: Transform pos: -59.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 174 @@ -22607,6 +22709,13 @@ entities: - type: Transform pos: 8.5,-85.5 parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 6602 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 401 @@ -22674,11 +22783,6 @@ entities: parent: 50803 - proto: AirlockExternalLocked entities: - - uid: 408 - components: - - type: Transform - pos: -38.5,-73.5 - parent: 2 - uid: 409 components: - type: Transform @@ -23217,13 +23321,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-78.5 parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 509 - components: - - type: Transform - pos: -38.5,-75.5 - parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 510 @@ -24373,22 +24470,8 @@ entities: - type: Transform pos: 62.5,-68.5 parent: 2 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-61.5 - parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-69.5 - parent: 2 - uid: 716 components: - type: Transform @@ -26694,14 +26777,6 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - uid: 1031 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - uid: 1032 components: - type: Transform @@ -26848,1109 +26923,1497 @@ entities: parent: 2 - proto: APCBasic entities: + - uid: 714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-73.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1055 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1056 components: - type: Transform pos: -67.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1059 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1060 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1061 components: - type: Transform pos: -54.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1062 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1066 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1067 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1070 components: - type: Transform pos: -42.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1071 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1072 components: - type: Transform pos: -51.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1073 components: - type: Transform pos: -44.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1074 components: - type: Transform pos: -37.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1076 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1077 components: - type: Transform pos: -34.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1079 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1080 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1081 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1082 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1083 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1084 components: - type: Transform pos: -2.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1085 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1087 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1088 components: - type: Transform pos: -6.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1089 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1090 components: - type: Transform pos: -24.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1093 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1094 components: - type: Transform pos: 10.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1095 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1096 components: - type: Transform pos: 31.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1097 components: - type: Transform pos: 17.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1098 components: - type: Transform pos: 17.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1099 components: - type: Transform pos: 15.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1104 components: - type: Transform pos: 31.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1106 components: - type: Transform pos: 46.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1107 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1108 components: - type: Transform pos: 60.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1110 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1111 components: - type: Transform pos: 46.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1113 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1119 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1120 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1121 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1122 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1123 components: - type: Transform pos: 79.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1124 components: - type: Transform pos: 43.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1125 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1126 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1127 components: - type: Transform pos: 31.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1128 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1131 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1132 components: - type: Transform pos: 39.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1134 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1135 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1137 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1138 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1139 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1140 components: - type: Transform pos: 61.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1141 components: - type: Transform pos: 68.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1142 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1143 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1144 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1146 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1147 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1148 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1150 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1152 components: - type: Transform pos: 88.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1153 components: - type: Transform pos: 86.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1155 components: - type: Transform pos: 57.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1156 components: - type: Transform pos: 76.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1158 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1159 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1162 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1163 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1164 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1165 components: - type: Transform pos: 53.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1166 components: - type: Transform pos: 44.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1167 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1168 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1169 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1170 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1171 components: - type: Transform pos: 25.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1172 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1173 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1174 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1175 components: - type: Transform pos: 17.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1176 components: - type: Transform pos: -5.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1177 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1178 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1179 components: - type: Transform pos: -16.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1180 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1181 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1182 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1184 components: - type: Transform pos: -16.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1185 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1186 components: - type: Transform pos: -6.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1187 components: - type: Transform pos: -3.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1188 components: - type: Transform pos: -5.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1189 components: - type: Transform pos: -19.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1190 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1191 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1192 components: - type: Transform pos: -13.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1193 components: - type: Transform pos: -0.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1194 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1195 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1196 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1197 components: - type: Transform pos: 30.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1198 components: - type: Transform pos: 6.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1199 components: - type: Transform pos: 7.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1200 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1201 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1202 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1203 components: - type: Transform pos: 41.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1204 components: - type: Transform pos: 46.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1206 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1207 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1208 components: - type: Transform pos: 54.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1209 components: - type: Transform pos: 13.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1210 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1212 components: - type: Transform pos: 44.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1214 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-117.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-113.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1216 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1217 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1219 components: - type: Transform pos: 71.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1222 components: - type: Transform pos: 61.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1223 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1224 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1225 components: - type: Transform pos: -1.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1227 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1228 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1229 components: - type: Transform pos: -23.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1230 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1231 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1232 components: - type: Transform pos: 50.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1233 components: - type: Transform pos: 69.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1234 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1235 components: - type: Transform pos: 38.5,60.5 parent: 2 - - uid: 1236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-66.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 1237 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-114.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1238 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1239 components: - type: Transform pos: -66.5,72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1240 components: - type: Transform pos: -57.5,72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1241 components: - type: Transform pos: 76.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1242 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1243 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1244 components: - type: Transform pos: -85.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 50809 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 50803 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 1245 @@ -31677,11 +32140,6 @@ entities: - type: Transform pos: -21.5,-85.5 parent: 2 - - uid: 1986 - components: - - type: Transform - pos: -38.5,-75.5 - parent: 2 - uid: 1987 components: - type: Transform @@ -31817,6 +32275,11 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-97.5 parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 - uid: 50810 components: - type: Transform @@ -35795,6 +36258,8 @@ entities: - type: Transform pos: 11.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 2793 @@ -39024,28 +39489,38 @@ entities: rot: 3.141592653589793 rad pos: 65.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3360 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3361 components: - type: Transform pos: 69.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3362 components: - type: Transform pos: 65.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3363 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BrokenBottle entities: - uid: 3364 @@ -55186,96 +55661,11 @@ entities: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 6602 - components: - - type: Transform - pos: -39.5,-66.5 - parent: 2 - - uid: 6603 - components: - - type: Transform - pos: -38.5,-66.5 - parent: 2 - - uid: 6604 - components: - - type: Transform - pos: -37.5,-66.5 - parent: 2 - - uid: 6605 - components: - - type: Transform - pos: -37.5,-65.5 - parent: 2 - - uid: 6606 - components: - - type: Transform - pos: -37.5,-64.5 - parent: 2 - - uid: 6607 - components: - - type: Transform - pos: -36.5,-64.5 - parent: 2 - - uid: 6608 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 2 - - uid: 6609 - components: - - type: Transform - pos: -34.5,-64.5 - parent: 2 - - uid: 6610 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 6611 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 2 - - uid: 6612 - components: - - type: Transform - pos: -33.5,-62.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - pos: -33.5,-65.5 - parent: 2 - - uid: 6614 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 6615 - components: - - type: Transform - pos: -37.5,-63.5 - parent: 2 - - uid: 6616 - components: - - type: Transform - pos: -37.5,-67.5 - parent: 2 - - uid: 6617 - components: - - type: Transform - pos: -37.5,-69.5 - parent: 2 - uid: 6618 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 6619 - components: - - type: Transform - pos: -37.5,-68.5 - parent: 2 - uid: 6620 components: - type: Transform @@ -55286,21 +55676,6 @@ entities: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 6622 - components: - - type: Transform - pos: -38.5,-74.5 - parent: 2 - - uid: 6623 - components: - - type: Transform - pos: -38.5,-75.5 - parent: 2 - - uid: 6624 - components: - - type: Transform - pos: -38.5,-73.5 - parent: 2 - uid: 6625 components: - type: Transform @@ -88410,6 +88785,16 @@ entities: parent: 1 - proto: CableMV entities: + - uid: 509 + components: + - type: Transform + pos: -38.5,-72.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -38.5,-73.5 + parent: 2 - uid: 13211 components: - type: Transform @@ -105570,141 +105955,6 @@ entities: - type: Transform pos: -16.5,31.5 parent: 2 - - uid: 16643 - components: - - type: Transform - pos: -37.5,-67.5 - parent: 2 - - uid: 16644 - components: - - type: Transform - pos: -39.5,-66.5 - parent: 2 - - uid: 16645 - components: - - type: Transform - pos: -38.5,-66.5 - parent: 2 - - uid: 16646 - components: - - type: Transform - pos: -37.5,-66.5 - parent: 2 - - uid: 16647 - components: - - type: Transform - pos: -37.5,-65.5 - parent: 2 - - uid: 16648 - components: - - type: Transform - pos: -37.5,-64.5 - parent: 2 - - uid: 16649 - components: - - type: Transform - pos: -36.5,-64.5 - parent: 2 - - uid: 16650 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 2 - - uid: 16651 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 16652 - components: - - type: Transform - pos: -34.5,-64.5 - parent: 2 - - uid: 16653 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 2 - - uid: 16654 - components: - - type: Transform - pos: -33.5,-62.5 - parent: 2 - - uid: 16655 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 2 - - uid: 16656 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 2 - - uid: 16657 - components: - - type: Transform - pos: -33.5,-58.5 - parent: 2 - - uid: 16658 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 2 - - uid: 16660 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - uid: 16661 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 16662 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - - uid: 16663 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 16664 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 16665 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 2 - - uid: 16666 - components: - - type: Transform - pos: -37.5,-68.5 - parent: 2 - - uid: 16667 - components: - - type: Transform - pos: -37.5,-69.5 - parent: 2 - - uid: 16668 - components: - - type: Transform - pos: -37.5,-70.5 - parent: 2 - - uid: 16669 - components: - - type: Transform - pos: -37.5,-71.5 - parent: 2 - uid: 16670 components: - type: Transform @@ -113973,52 +114223,12 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 - - uid: 18164 - components: - - type: Transform - pos: -35.5,-65.5 - parent: 2 - uid: 18165 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-64.5 parent: 2 - - uid: 18166 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - - uid: 18167 - components: - - type: Transform - pos: -34.5,-65.5 - parent: 2 - - uid: 18168 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 2 - - uid: 18169 - components: - - type: Transform - pos: -33.5,-65.5 - parent: 2 - - uid: 18170 - components: - - type: Transform - pos: -32.5,-65.5 - parent: 2 - - uid: 18171 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 2 - - uid: 18172 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - uid: 18173 components: - type: Transform @@ -118559,12 +118769,16 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18942 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClockworkGrilleBroken entities: - uid: 18943 @@ -119850,8 +120064,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 19180 @@ -120319,11 +120533,6 @@ entities: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 19302 - components: - - type: Transform - pos: -36.513924,-68.46983 - parent: 2 - uid: 19303 components: - type: Transform @@ -120935,6 +121144,13 @@ entities: - type: Transform pos: 14.5,-66.5 parent: 2 +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 6606 + components: + - type: Transform + pos: -32.480026,-55.81392 + parent: 2 - proto: ClothingHeadHatHoodBioVirology entities: - uid: 19421 @@ -121840,6 +122056,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 19235 @@ -121849,6 +122069,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19236 components: - type: Transform @@ -121856,6 +122080,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19237 components: - type: Transform @@ -121863,6 +122091,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19238 components: - type: Transform @@ -121870,6 +122102,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19239 components: - type: Transform @@ -121877,6 +122113,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19240 components: - type: Transform @@ -121884,6 +122124,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19260 components: - type: Transform @@ -121891,6 +122135,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19261 components: - type: Transform @@ -121898,6 +122146,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19262 components: - type: Transform @@ -121905,6 +122157,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19263 components: - type: Transform @@ -121912,6 +122168,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19264 components: - type: Transform @@ -121919,6 +122179,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19265 components: - type: Transform @@ -121926,6 +122190,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitChaplain entities: - uid: 19554 @@ -121933,6 +122201,10 @@ entities: - type: Transform pos: -6.5,3.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitLawyerBlack entities: - uid: 19555 @@ -121940,6 +122212,10 @@ entities: - type: Transform pos: 85.5,-15.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPostman entities: - uid: 51059 @@ -121947,6 +122223,10 @@ entities: - type: Transform pos: -43.43313,-49.988487 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 19241 @@ -121956,6 +122236,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19242 components: - type: Transform @@ -121963,6 +122247,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19243 components: - type: Transform @@ -121970,6 +122258,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19244 components: - type: Transform @@ -121977,6 +122269,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19245 components: - type: Transform @@ -121984,6 +122280,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19246 components: - type: Transform @@ -121991,6 +122291,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19266 components: - type: Transform @@ -121998,6 +122302,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19267 components: - type: Transform @@ -122005,6 +122313,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19268 components: - type: Transform @@ -122012,6 +122324,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19269 components: - type: Transform @@ -122019,6 +122335,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19270 components: - type: Transform @@ -122026,6 +122346,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19271 components: - type: Transform @@ -122033,6 +122357,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19543 components: - type: Transform @@ -122040,6 +122368,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19547 components: - type: Transform @@ -122047,26 +122379,46 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19556 components: - type: Transform pos: 67.47776,51.561073 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19557 components: - type: Transform pos: 81.5,57.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19558 components: - type: Transform pos: 80.5,57.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19559 components: - type: Transform pos: 73.5,73.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClusterBananaPeel entities: - uid: 19560 @@ -123437,20 +123789,6 @@ entities: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 19782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 2 -- proto: ComputerSalvageJobBoard - entities: - - uid: 50788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 50861 @@ -123471,14 +123809,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-41.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 19785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-65.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 19787 @@ -124014,18 +124344,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 34957 components: - type: Transform @@ -124135,21 +124455,6 @@ entities: - type: Transform pos: -51.5,-50.5 parent: 2 - - uid: 19889 - components: - - type: Transform - pos: -33.5,-65.5 - parent: 2 - - uid: 19890 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 2 - - uid: 19891 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - uid: 19892 components: - type: Transform @@ -124459,18 +124764,8 @@ entities: immutable: False temperature: 234.99808 moles: - - 2.1780298 - - 8.193542 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 2.1780298 + Nitrogen: 8.193542 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124494,18 +124789,8 @@ entities: immutable: False temperature: 234.99808 moles: - - 2.1780298 - - 8.193542 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 2.1780298 + Nitrogen: 8.193542 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124602,18 +124887,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124638,18 +124913,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124680,42 +124945,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 19974 - components: - - type: Transform - pos: -38.5,-68.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19976 - - 19977 - - 19975 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.147 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19978 components: - type: Transform @@ -124727,18 +124956,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124779,18 +124998,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - uid: 19989 components: - type: Transform @@ -124802,18 +125011,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124861,18 +125060,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -124913,8 +125102,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 20007 @@ -124949,8 +125138,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 20009 @@ -125520,18 +125709,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -126479,18 +126658,24 @@ entities: rot: 3.141592653589793 rad pos: 67.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20225 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20226 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeskBell entities: - uid: 20227 @@ -126627,6 +126812,12 @@ entities: parent: 2 - proto: DisposalBend entities: + - uid: 6610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-52.5 + parent: 2 - uid: 20238 components: - type: Transform @@ -126656,11 +126847,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-52.5 parent: 2 - - uid: 20243 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 2 - uid: 20244 components: - type: Transform @@ -127371,12 +127557,6 @@ entities: - type: Transform pos: -0.5,46.5 parent: 2 - - uid: 20375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-52.5 - parent: 2 - uid: 20376 components: - type: Transform @@ -128230,72 +128410,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,46.5 parent: 2 - - uid: 20524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-61.5 - parent: 2 - - uid: 20525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-60.5 - parent: 2 - - uid: 20526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-59.5 - parent: 2 - - uid: 20527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 20528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-57.5 - parent: 2 - - uid: 20529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-56.5 - parent: 2 - - uid: 20530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-55.5 - parent: 2 - - uid: 20531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-54.5 - parent: 2 - - uid: 20532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-53.5 - parent: 2 - - uid: 20533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-52.5 - parent: 2 - - uid: 20534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-52.5 - parent: 2 - uid: 20536 components: - type: Transform @@ -136256,12 +136370,6 @@ entities: rot: -1.5707963267948966 rad pos: 110.5,-64.5 parent: 2 - - uid: 21969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-62.5 - parent: 2 - uid: 21970 components: - type: Transform @@ -137482,11 +137590,6 @@ entities: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 22198 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 2 - uid: 22199 components: - type: Transform @@ -137621,8 +137724,8 @@ entities: pos: 52.5,-60.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 1079.6704454 - lastInjectorTime: 1079.6704454 + lastSubjectInjectTime: 420.0204171 + lastInjectorTime: 420.0204171 - type: DnaClient server: 39984 connectedToServer: True @@ -137633,8 +137736,8 @@ entities: pos: 52.5,-58.5 parent: 2 - type: DnaModifierConsole - lastSubjectInjectTime: 1079.6704454 - lastInjectorTime: 1079.6704454 + lastSubjectInjectTime: 420.0204171 + lastInjectorTime: 420.0204171 - type: DnaClient server: 39984 connectedToServer: True @@ -139172,12 +139275,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-54.5 parent: 2 - - uid: 22490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-66.5 - parent: 2 - uid: 22491 components: - type: Transform @@ -139728,348 +139825,470 @@ entities: - type: Transform pos: 54.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22589 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22590 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22591 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22592 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22593 components: - type: Transform pos: 4.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22594 components: - type: Transform pos: 20.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22595 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22596 components: - type: Transform pos: 22.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22597 components: - type: Transform pos: -11.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22598 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22599 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22600 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22601 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22602 components: - type: Transform pos: -41.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22603 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22604 components: - type: Transform pos: 33.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22605 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22606 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22607 components: - type: Transform pos: 32.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22608 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22609 components: - type: Transform pos: 53.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22610 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22611 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22612 components: - type: Transform pos: 67.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22613 components: - type: Transform pos: 56.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22614 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22616 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22617 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22618 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22619 components: - type: Transform pos: 53.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22620 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-108.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22621 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-113.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22622 components: - type: Transform pos: 41.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22623 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-98.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22624 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-116.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22625 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22626 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22627 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22628 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22629 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22630 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22631 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22632 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22633 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22634 components: - type: Transform pos: -5.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22635 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22636 components: - type: Transform pos: 7.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22637 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22638 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22639 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22640 components: - type: Transform pos: 64.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22641 components: - type: Transform pos: 72.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22642 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22643 components: - type: Transform pos: 11.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22644 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22645 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22646 components: - type: Transform pos: 17.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22647 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22648 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetOpen entities: - uid: 22649 @@ -140078,12 +140297,16 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22650 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 22651 @@ -140339,6 +140562,8 @@ entities: - 23057 - 23054 - 23053 + - type: Fixtures + fixtures: {} - uid: 22694 components: - type: Transform @@ -140349,6 +140574,8 @@ entities: devices: - 23260 - 23271 + - type: Fixtures + fixtures: {} - uid: 22695 components: - type: Transform @@ -140375,6 +140602,8 @@ entities: - 23275 - 23276 - 22982 + - type: Fixtures + fixtures: {} - uid: 22696 components: - type: Transform @@ -140386,6 +140615,8 @@ entities: - 23070 - 23071 - 23072 + - type: Fixtures + fixtures: {} - uid: 22697 components: - type: Transform @@ -140400,6 +140631,8 @@ entities: - 23143 - 23144 - 23145 + - type: Fixtures + fixtures: {} - uid: 22698 components: - type: Transform @@ -140410,6 +140643,8 @@ entities: devices: - 23427 - 22946 + - type: Fixtures + fixtures: {} - uid: 22699 components: - type: Transform @@ -140433,6 +140668,8 @@ entities: - 23116 - 23115 - 23114 + - type: Fixtures + fixtures: {} - uid: 22700 components: - type: Transform @@ -140443,6 +140680,8 @@ entities: devices: - 23277 - 23278 + - type: Fixtures + fixtures: {} - uid: 22701 components: - type: Transform @@ -140458,6 +140697,8 @@ entities: - 23249 - 23251 - 22984 + - type: Fixtures + fixtures: {} - uid: 22702 components: - type: Transform @@ -140476,6 +140717,8 @@ entities: - 23089 - 23091 - 23090 + - type: Fixtures + fixtures: {} - uid: 22703 components: - type: Transform @@ -140485,6 +140728,8 @@ entities: - type: DeviceList devices: - 23198 + - type: Fixtures + fixtures: {} - uid: 22704 components: - type: Transform @@ -140502,6 +140747,8 @@ entities: - 23254 - 23256 - 23255 + - type: Fixtures + fixtures: {} - uid: 22705 components: - type: Transform @@ -140517,6 +140764,8 @@ entities: - 23080 - 23081 - 23079 + - type: Fixtures + fixtures: {} - uid: 22706 components: - type: Transform @@ -140528,6 +140777,8 @@ entities: - 23277 - 23280 - 23045 + - type: Fixtures + fixtures: {} - uid: 22707 components: - type: Transform @@ -140543,6 +140794,8 @@ entities: - 23065 - 23069 - 23070 + - type: Fixtures + fixtures: {} - uid: 22708 components: - type: Transform @@ -140560,6 +140813,8 @@ entities: - 22934 - 22935 - 22974 + - type: Fixtures + fixtures: {} - uid: 22709 components: - type: Transform @@ -140571,12 +140826,16 @@ entities: - 23286 - 23272 - 23273 + - type: Fixtures + fixtures: {} - uid: 22710 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22711 components: - type: Transform @@ -140592,6 +140851,8 @@ entities: - 23078 - 22937 - 23077 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: Transform @@ -140602,6 +140863,8 @@ entities: - 23061 - 23060 - 23075 + - type: Fixtures + fixtures: {} - uid: 22713 components: - type: Transform @@ -140619,12 +140882,16 @@ entities: - 23086 - 23087 - 23085 + - type: Fixtures + fixtures: {} - uid: 22714 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22715 components: - type: Transform @@ -140638,6 +140905,8 @@ entities: - 23106 - 23105 - 23109 + - type: Fixtures + fixtures: {} - uid: 22716 components: - type: Transform @@ -140652,6 +140921,8 @@ entities: - 23104 - 23103 - 22940 + - type: Fixtures + fixtures: {} - uid: 22717 components: - type: Transform @@ -140662,6 +140933,8 @@ entities: devices: - 23098 - 23102 + - type: Fixtures + fixtures: {} - uid: 22718 components: - type: Transform @@ -140671,6 +140944,8 @@ entities: - type: DeviceList devices: - 23110 + - type: Fixtures + fixtures: {} - uid: 22719 components: - type: Transform @@ -140681,6 +140956,8 @@ entities: devices: - 23073 - 23069 + - type: Fixtures + fixtures: {} - uid: 22720 components: - type: Transform @@ -140690,6 +140967,8 @@ entities: - type: DeviceList devices: - 23058 + - type: Fixtures + fixtures: {} - uid: 22721 components: - type: Transform @@ -140699,6 +140978,8 @@ entities: - type: DeviceList devices: - 23078 + - type: Fixtures + fixtures: {} - uid: 22722 components: - type: Transform @@ -140709,6 +140990,8 @@ entities: devices: - 23098 - 23102 + - type: Fixtures + fixtures: {} - uid: 22723 components: - type: Transform @@ -140722,12 +141005,16 @@ entities: - 23106 - 23105 - 23109 + - type: Fixtures + fixtures: {} - uid: 22724 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22725 components: - type: Transform @@ -140744,6 +141031,8 @@ entities: - 23111 - 23113 - 23112 + - type: Fixtures + fixtures: {} - uid: 22726 components: - type: Transform @@ -140754,6 +141043,8 @@ entities: - 23116 - 23115 - 23114 + - type: Fixtures + fixtures: {} - uid: 22727 components: - type: Transform @@ -140774,6 +141065,8 @@ entities: - 23132 - 23130 - 23427 + - type: Fixtures + fixtures: {} - uid: 22728 components: - type: Transform @@ -140788,6 +141081,8 @@ entities: - 23117 - 22942 - 23125 + - type: Fixtures + fixtures: {} - uid: 22729 components: - type: Transform @@ -140798,6 +141093,8 @@ entities: devices: - 22945 - 23119 + - type: Fixtures + fixtures: {} - uid: 22730 components: - type: Transform @@ -140813,6 +141110,8 @@ entities: - 23143 - 23144 - 23145 + - type: Fixtures + fixtures: {} - uid: 22731 components: - type: Transform @@ -140839,12 +141138,16 @@ entities: - 23275 - 23276 - 22982 + - type: Fixtures + fixtures: {} - uid: 22732 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22733 components: - type: Transform @@ -140857,6 +141160,8 @@ entities: - 23154 - 23152 - 23158 + - type: Fixtures + fixtures: {} - uid: 22734 components: - type: Transform @@ -140866,6 +141171,8 @@ entities: devices: - 23267 - 23264 + - type: Fixtures + fixtures: {} - uid: 22735 components: - type: Transform @@ -140889,6 +141196,8 @@ entities: - 23470 - 23162 - 23161 + - type: Fixtures + fixtures: {} - uid: 22736 components: - type: Transform @@ -140907,6 +141216,8 @@ entities: - 23164 - 23163 - 22958 + - type: Fixtures + fixtures: {} - uid: 22737 components: - type: Transform @@ -140926,11 +141237,15 @@ entities: - 23168 - 22960 - 23285 + - type: Fixtures + fixtures: {} - uid: 22738 components: - type: Transform pos: 61.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22739 components: - type: Transform @@ -140945,6 +141260,8 @@ entities: - 23166 - 23170 - 23169 + - type: Fixtures + fixtures: {} - uid: 22740 components: - type: Transform @@ -140955,12 +141272,16 @@ entities: devices: - 23170 - 23169 + - type: Fixtures + fixtures: {} - uid: 22741 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22742 components: - type: Transform @@ -140978,6 +141299,8 @@ entities: - 23164 - 23163 - 22958 + - type: Fixtures + fixtures: {} - uid: 22743 components: - type: Transform @@ -140995,6 +141318,8 @@ entities: - 23219 - 23220 - 23175 + - type: Fixtures + fixtures: {} - uid: 22744 components: - type: Transform @@ -141014,6 +141339,8 @@ entities: - 23182 - 23184 - 23183 + - type: Fixtures + fixtures: {} - uid: 22745 components: - type: Transform @@ -141035,6 +141362,8 @@ entities: - 23192 - 23193 - 22964 + - type: Fixtures + fixtures: {} - uid: 22746 components: - type: Transform @@ -141045,6 +141374,8 @@ entities: devices: - 23462 - 23185 + - type: Fixtures + fixtures: {} - uid: 22747 components: - type: Transform @@ -141055,12 +141386,16 @@ entities: devices: - 23228 - 23190 + - type: Fixtures + fixtures: {} - uid: 22748 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22749 components: - type: Transform @@ -141079,6 +141414,8 @@ entities: - 23200 - 23207 - 23206 + - type: Fixtures + fixtures: {} - uid: 22750 components: - type: Transform @@ -141093,6 +141430,8 @@ entities: - 23201 - 23199 - 23197 + - type: Fixtures + fixtures: {} - uid: 22751 components: - type: Transform @@ -141107,11 +141446,15 @@ entities: - 23322 - 23425 - 23424 + - type: Fixtures + fixtures: {} - uid: 22752 components: - type: Transform pos: 78.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22753 components: - type: Transform @@ -141120,6 +141463,8 @@ entities: - type: DeviceList devices: - 23211 + - type: Fixtures + fixtures: {} - uid: 22754 components: - type: Transform @@ -141131,17 +141476,23 @@ entities: - 23227 - 23226 - 23225 + - type: Fixtures + fixtures: {} - uid: 22755 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22756 components: - type: Transform pos: 75.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22757 components: - type: Transform @@ -141150,18 +141501,24 @@ entities: - type: DeviceList devices: - 23227 + - type: Fixtures + fixtures: {} - uid: 22758 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22759 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22760 components: - type: Transform @@ -141179,6 +141536,8 @@ entities: - 22934 - 22935 - 22974 + - type: Fixtures + fixtures: {} - uid: 22761 components: - type: Transform @@ -141189,12 +141548,16 @@ entities: - 23186 - 23471 - 23181 + - type: Fixtures + fixtures: {} - uid: 22762 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22763 components: - type: Transform @@ -141205,6 +141568,8 @@ entities: devices: - 22965 - 22976 + - type: Fixtures + fixtures: {} - uid: 22764 components: - type: Transform @@ -141216,6 +141581,8 @@ entities: - 23035 - 23034 - 23036 + - type: Fixtures + fixtures: {} - uid: 22765 components: - type: Transform @@ -141233,6 +141600,8 @@ entities: - 23034 - 23035 - 23048 + - type: Fixtures + fixtures: {} - uid: 22766 components: - type: Transform @@ -141245,6 +141614,8 @@ entities: - 23150 - 23149 - 22953 + - type: Fixtures + fixtures: {} - uid: 22767 components: - type: Transform @@ -141254,6 +141625,8 @@ entities: - type: DeviceList devices: - 23159 + - type: Fixtures + fixtures: {} - uid: 22768 components: - type: Transform @@ -141265,15 +141638,8 @@ entities: - 23017 - 23426 - 23016 - - uid: 22769 - components: - - type: Transform - pos: -35.5,-61.5 - parent: 2 - - type: DeviceList - devices: - - 23349 - - 23347 + - type: Fixtures + fixtures: {} - uid: 22770 components: - type: Transform @@ -141284,6 +141650,8 @@ entities: devices: - 23233 - 23232 + - type: Fixtures + fixtures: {} - uid: 22771 components: - type: Transform @@ -141307,6 +141675,8 @@ entities: - 23464 - 23040 - 22949 + - type: Fixtures + fixtures: {} - uid: 22772 components: - type: Transform @@ -141320,6 +141690,8 @@ entities: - 23254 - 23256 - 23255 + - type: Fixtures + fixtures: {} - uid: 22773 components: - type: Transform @@ -141330,6 +141702,8 @@ entities: devices: - 23240 - 22978 + - type: Fixtures + fixtures: {} - uid: 22774 components: - type: Transform @@ -141340,6 +141714,8 @@ entities: devices: - 23241 - 22979 + - type: Fixtures + fixtures: {} - uid: 22775 components: - type: Transform @@ -141353,6 +141729,8 @@ entities: - 22980 - 23245 - 23243 + - type: Fixtures + fixtures: {} - uid: 22776 components: - type: Transform @@ -141363,6 +141741,8 @@ entities: devices: - 23244 - 23243 + - type: Fixtures + fixtures: {} - uid: 22777 components: - type: Transform @@ -141371,6 +141751,8 @@ entities: - type: DeviceList devices: - 23480 + - type: Fixtures + fixtures: {} - uid: 22778 components: - type: Transform @@ -141389,6 +141771,8 @@ entities: - 23299 - 23300 - 23031 + - type: Fixtures + fixtures: {} - uid: 22779 components: - type: Transform @@ -141409,6 +141793,8 @@ entities: - 23263 - 23268 - 23265 + - type: Fixtures + fixtures: {} - uid: 22780 components: - type: Transform @@ -141425,6 +141811,8 @@ entities: - 23254 - 23256 - 23255 + - type: Fixtures + fixtures: {} - uid: 22781 components: - type: Transform @@ -141451,18 +141839,24 @@ entities: - 23275 - 23276 - 22982 + - type: Fixtures + fixtures: {} - uid: 22782 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22783 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22784 components: - type: Transform @@ -141473,6 +141867,8 @@ entities: devices: - 23455 - 23023 + - type: Fixtures + fixtures: {} - uid: 22785 components: - type: Transform @@ -141485,6 +141881,8 @@ entities: - 23274 - 23454 - 23287 + - type: Fixtures + fixtures: {} - uid: 22786 components: - type: Transform @@ -141495,6 +141893,8 @@ entities: - 23046 - 23276 - 23275 + - type: Fixtures + fixtures: {} - uid: 22787 components: - type: Transform @@ -141510,6 +141910,8 @@ entities: - 23353 - 23364 - 23460 + - type: Fixtures + fixtures: {} - uid: 22788 components: - type: Transform @@ -141521,6 +141923,8 @@ entities: - 23129 - 23134 - 23133 + - type: Fixtures + fixtures: {} - uid: 22789 components: - type: Transform @@ -141541,6 +141945,8 @@ entities: - 23263 - 23268 - 23265 + - type: Fixtures + fixtures: {} - uid: 22790 components: - type: Transform @@ -141550,6 +141956,8 @@ entities: - type: DeviceList devices: - 23269 + - type: Fixtures + fixtures: {} - uid: 22791 components: - type: Transform @@ -141560,6 +141968,8 @@ entities: devices: - 23270 - 23269 + - type: Fixtures + fixtures: {} - uid: 22792 components: - type: Transform @@ -141589,6 +141999,8 @@ entities: - 23144 - 23145 - 22952 + - type: Fixtures + fixtures: {} - uid: 22793 components: - type: Transform @@ -141599,6 +142011,8 @@ entities: devices: - 23160 - 23268 + - type: Fixtures + fixtures: {} - uid: 22794 components: - type: Transform @@ -141612,6 +142026,8 @@ entities: - 23306 - 23305 - 23301 + - type: Fixtures + fixtures: {} - uid: 22795 components: - type: Transform @@ -141622,6 +142038,8 @@ entities: devices: - 23301 - 23302 + - type: Fixtures + fixtures: {} - uid: 22796 components: - type: Transform @@ -141635,6 +142053,8 @@ entities: - 23307 - 23314 - 22987 + - type: Fixtures + fixtures: {} - uid: 22797 components: - type: Transform @@ -141645,6 +142065,8 @@ entities: devices: - 22986 - 23309 + - type: Fixtures + fixtures: {} - uid: 22798 components: - type: Transform @@ -141655,6 +142077,8 @@ entities: devices: - 23310 - 23311 + - type: Fixtures + fixtures: {} - uid: 22799 components: - type: Transform @@ -141665,6 +142089,8 @@ entities: devices: - 23313 - 23312 + - type: Fixtures + fixtures: {} - uid: 22800 components: - type: Transform @@ -141674,12 +142100,16 @@ entities: devices: - 23315 - 23316 + - type: Fixtures + fixtures: {} - uid: 22801 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22802 components: - type: Transform @@ -141690,6 +142120,8 @@ entities: devices: - 23317 - 23318 + - type: Fixtures + fixtures: {} - uid: 22803 components: - type: Transform @@ -141700,6 +142132,8 @@ entities: devices: - 23319 - 23318 + - type: Fixtures + fixtures: {} - uid: 22804 components: - type: Transform @@ -141717,6 +142151,8 @@ entities: - 23056 - 23320 - 23310 + - type: Fixtures + fixtures: {} - uid: 22805 components: - type: Transform @@ -141726,12 +142162,16 @@ entities: - type: DeviceList devices: - 23425 + - type: Fixtures + fixtures: {} - uid: 22806 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22807 components: - type: Transform @@ -141742,16 +142182,22 @@ entities: devices: - 23324 - 23325 + - type: Fixtures + fixtures: {} - uid: 22808 components: - type: Transform pos: 89.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22809 components: - type: Transform pos: 32.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22810 components: - type: Transform @@ -141761,6 +142207,8 @@ entities: - type: DeviceList devices: - 23326 + - type: Fixtures + fixtures: {} - uid: 22811 components: - type: Transform @@ -141779,6 +142227,8 @@ entities: - 23300 - 23299 - 23298 + - type: Fixtures + fixtures: {} - uid: 22812 components: - type: Transform @@ -141799,6 +142249,8 @@ entities: - 23320 - 23309 - 23312 + - type: Fixtures + fixtures: {} - uid: 22813 components: - type: Transform @@ -141818,6 +142270,8 @@ entities: - 23337 - 23338 - 23339 + - type: Fixtures + fixtures: {} - uid: 22814 components: - type: Transform @@ -141830,27 +142284,37 @@ entities: - 23341 - 23342 - 23343 + - type: Fixtures + fixtures: {} - uid: 22815 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22816 components: - type: Transform pos: -22.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22817 components: - type: Transform pos: -14.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22818 components: - type: Transform pos: -15.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22819 components: - type: Transform @@ -141861,6 +142325,8 @@ entities: - 23351 - 23350 - 23027 + - type: Fixtures + fixtures: {} - uid: 22820 components: - type: Transform @@ -141875,12 +142341,16 @@ entities: - 23363 - 23000 - 22999 + - type: Fixtures + fixtures: {} - uid: 22821 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22822 components: - type: Transform @@ -141890,6 +142360,8 @@ entities: - type: DeviceList devices: - 23002 + - type: Fixtures + fixtures: {} - uid: 22823 components: - type: Transform @@ -141914,6 +142386,8 @@ entities: - 23373 - 23375 - 23374 + - type: Fixtures + fixtures: {} - uid: 22824 components: - type: Transform @@ -141938,29 +142412,39 @@ entities: - 23382 - 23380 - 23379 + - type: Fixtures + fixtures: {} - uid: 22825 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22826 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22827 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22828 components: - type: Transform pos: -13.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22829 components: - type: Transform @@ -141973,6 +142457,8 @@ entities: - 23367 - 23368 - 23369 + - type: Fixtures + fixtures: {} - uid: 22830 components: - type: Transform @@ -141983,6 +142469,8 @@ entities: devices: - 23401 - 23007 + - type: Fixtures + fixtures: {} - uid: 22831 components: - type: Transform @@ -142001,18 +142489,24 @@ entities: - 23371 - 23370 - 23039 + - type: Fixtures + fixtures: {} - uid: 22832 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22833 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22834 components: - type: Transform @@ -142026,6 +142520,8 @@ entities: - 23009 - 23402 - 23403 + - type: Fixtures + fixtures: {} - uid: 22835 components: - type: Transform @@ -142051,6 +142547,8 @@ entities: - 23421 - 23405 - 23406 + - type: Fixtures + fixtures: {} - uid: 22836 components: - type: Transform @@ -142064,12 +142562,16 @@ entities: - 23009 - 23402 - 23403 + - type: Fixtures + fixtures: {} - uid: 22837 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22838 components: - type: Transform @@ -142080,6 +142582,8 @@ entities: devices: - 23404 - 23009 + - type: Fixtures + fixtures: {} - uid: 22839 components: - type: Transform @@ -142096,6 +142600,8 @@ entities: - 23405 - 23406 - 23466 + - type: Fixtures + fixtures: {} - uid: 22840 components: - type: Transform @@ -142107,6 +142613,8 @@ entities: - 23010 - 23409 - 23410 + - type: Fixtures + fixtures: {} - uid: 22841 components: - type: Transform @@ -142131,6 +142639,8 @@ entities: - 23414 - 23012 - 23413 + - type: Fixtures + fixtures: {} - uid: 22842 components: - type: Transform @@ -142141,6 +142651,8 @@ entities: devices: - 23412 - 23028 + - type: Fixtures + fixtures: {} - uid: 22843 components: - type: Transform @@ -142151,12 +142663,16 @@ entities: devices: - 23411 - 23011 + - type: Fixtures + fixtures: {} - uid: 22844 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22845 components: - type: Transform @@ -142185,6 +142701,8 @@ entities: - 23475 - 23476 - 23328 + - type: Fixtures + fixtures: {} - uid: 22846 components: - type: Transform @@ -142194,6 +142712,8 @@ entities: devices: - 23044 - 23417 + - type: Fixtures + fixtures: {} - uid: 22847 components: - type: Transform @@ -142208,6 +142728,8 @@ entities: - 23013 - 23416 - 23415 + - type: Fixtures + fixtures: {} - uid: 22848 components: - type: Transform @@ -142221,6 +142743,8 @@ entities: - 23363 - 23000 - 22999 + - type: Fixtures + fixtures: {} - uid: 22849 components: - type: Transform @@ -142233,6 +142757,8 @@ entities: - 23135 - 23136 - 23018 + - type: Fixtures + fixtures: {} - uid: 22850 components: - type: Transform @@ -142256,6 +142782,8 @@ entities: - 23374 - 23375 - 23373 + - type: Fixtures + fixtures: {} - uid: 22851 components: - type: Transform @@ -142267,6 +142795,8 @@ entities: - 23432 - 23431 - 23433 + - type: Fixtures + fixtures: {} - uid: 22852 components: - type: Transform @@ -142282,6 +142812,8 @@ entities: - 23441 - 23442 - 23443 + - type: Fixtures + fixtures: {} - uid: 22853 components: - type: Transform @@ -142293,6 +142825,8 @@ entities: - 23020 - 23439 - 23033 + - type: Fixtures + fixtures: {} - uid: 22854 components: - type: Transform @@ -142308,6 +142842,8 @@ entities: - 23429 - 23434 - 23435 + - type: Fixtures + fixtures: {} - uid: 22855 components: - type: Transform @@ -142316,6 +142852,8 @@ entities: - type: DeviceList devices: - 23437 + - type: Fixtures + fixtures: {} - uid: 22856 components: - type: Transform @@ -142328,6 +142866,8 @@ entities: - 23436 - 23438 - 23455 + - type: Fixtures + fixtures: {} - uid: 22857 components: - type: Transform @@ -142337,6 +142877,8 @@ entities: - type: DeviceList devices: - 23428 + - type: Fixtures + fixtures: {} - uid: 22858 components: - type: Transform @@ -142350,6 +142892,8 @@ entities: - 23428 - 23448 - 23429 + - type: Fixtures + fixtures: {} - uid: 22859 components: - type: Transform @@ -142359,6 +142903,8 @@ entities: - type: DeviceList devices: - 23446 + - type: Fixtures + fixtures: {} - uid: 22860 components: - type: Transform @@ -142372,6 +142918,8 @@ entities: - 23432 - 23446 - 23025 + - type: Fixtures + fixtures: {} - uid: 22861 components: - type: Transform @@ -142382,11 +142930,15 @@ entities: devices: - 23457 - 23458 + - type: Fixtures + fixtures: {} - uid: 22862 components: - type: Transform pos: -79.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22863 components: - type: Transform @@ -142397,6 +142949,8 @@ entities: devices: - 23447 - 23022 + - type: Fixtures + fixtures: {} - uid: 22864 components: - type: Transform @@ -142407,6 +142961,8 @@ entities: devices: - 23439 - 23438 + - type: Fixtures + fixtures: {} - uid: 22865 components: - type: Transform @@ -142416,6 +142972,8 @@ entities: - type: DeviceList devices: - 23450 + - type: Fixtures + fixtures: {} - uid: 22866 components: - type: Transform @@ -142427,6 +142985,8 @@ entities: - 23337 - 23338 - 23339 + - type: Fixtures + fixtures: {} - uid: 22867 components: - type: Transform @@ -142440,6 +143000,8 @@ entities: - 23432 - 23459 - 23458 + - type: Fixtures + fixtures: {} - uid: 22868 components: - type: Transform @@ -142454,6 +143016,8 @@ entities: - 23130 - 23483 - 23484 + - type: Fixtures + fixtures: {} - uid: 22869 components: - type: Transform @@ -142465,6 +143029,8 @@ entities: - 23264 - 23266 - 23265 + - type: Fixtures + fixtures: {} - uid: 22870 components: - type: Transform @@ -142476,12 +143042,16 @@ entities: - 23286 - 23272 - 23273 + - type: Fixtures + fixtures: {} - uid: 22871 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22872 components: - type: Transform @@ -142492,6 +143062,8 @@ entities: devices: - 23195 - 23196 + - type: Fixtures + fixtures: {} - uid: 22873 components: - type: Transform @@ -142515,6 +143087,8 @@ entities: - 23191 - 23196 - 23481 + - type: Fixtures + fixtures: {} - uid: 22874 components: - type: Transform @@ -142524,6 +143098,8 @@ entities: - type: DeviceList devices: - 23171 + - type: Fixtures + fixtures: {} - uid: 22875 components: - type: Transform @@ -142535,6 +143111,8 @@ entities: - 23362 - 23363 - 23364 + - type: Fixtures + fixtures: {} - uid: 22876 components: - type: Transform @@ -142551,6 +143129,8 @@ entities: - 23096 - 23034 - 23035 + - type: Fixtures + fixtures: {} - uid: 22877 components: - type: Transform @@ -142566,6 +143146,8 @@ entities: - 23112 - 23113 - 23111 + - type: Fixtures + fixtures: {} - uid: 22878 components: - type: Transform @@ -142583,6 +143165,8 @@ entities: - 23385 - 23383 - 23042 + - type: Fixtures + fixtures: {} - uid: 22879 components: - type: Transform @@ -142601,6 +143185,8 @@ entities: - 23385 - 23383 - 23042 + - type: Fixtures + fixtures: {} - uid: 22880 components: - type: Transform @@ -142630,6 +143216,8 @@ entities: - 23144 - 23145 - 22952 + - type: Fixtures + fixtures: {} - uid: 22881 components: - type: Transform @@ -142659,6 +143247,8 @@ entities: - 23144 - 23145 - 22952 + - type: Fixtures + fixtures: {} - uid: 22882 components: - type: Transform @@ -142683,6 +143273,8 @@ entities: - 23116 - 23115 - 23114 + - type: Fixtures + fixtures: {} - uid: 22883 components: - type: Transform @@ -142695,6 +143287,8 @@ entities: - 23133 - 22951 - 23134 + - type: Fixtures + fixtures: {} - uid: 22884 components: - type: Transform @@ -142713,6 +143307,8 @@ entities: - 23372 - 23371 - 23370 + - type: Fixtures + fixtures: {} - uid: 22885 components: - type: Transform @@ -142731,6 +143327,8 @@ entities: - 23371 - 23370 - 23376 + - type: Fixtures + fixtures: {} - uid: 22886 components: - type: Transform @@ -142755,6 +143353,8 @@ entities: - 23373 - 23375 - 23374 + - type: Fixtures + fixtures: {} - uid: 22887 components: - type: Transform @@ -142778,6 +143378,8 @@ entities: - 23373 - 23375 - 23374 + - type: Fixtures + fixtures: {} - uid: 22888 components: - type: Transform @@ -142794,6 +143396,8 @@ entities: - 23460 - 23357 - 23358 + - type: Fixtures + fixtures: {} - uid: 22889 components: - type: Transform @@ -142804,6 +143408,8 @@ entities: devices: - 23455 - 23023 + - type: Fixtures + fixtures: {} - uid: 22890 components: - type: Transform @@ -142819,6 +143425,8 @@ entities: - 23429 - 23434 - 23435 + - type: Fixtures + fixtures: {} - uid: 22891 components: - type: Transform @@ -142831,6 +143439,8 @@ entities: - 23135 - 23136 - 23018 + - type: Fixtures + fixtures: {} - uid: 22892 components: - type: Transform @@ -142853,6 +143463,8 @@ entities: - 23126 - 23127 - 23128 + - type: Fixtures + fixtures: {} - uid: 22893 components: - type: Transform @@ -142868,6 +143480,8 @@ entities: - 23065 - 23069 - 23070 + - type: Fixtures + fixtures: {} - uid: 22894 components: - type: Transform @@ -142879,6 +143493,8 @@ entities: - 23070 - 23071 - 23072 + - type: Fixtures + fixtures: {} - uid: 22895 components: - type: Transform @@ -142889,6 +143505,8 @@ entities: - 23070 - 23071 - 23072 + - type: Fixtures + fixtures: {} - uid: 22896 components: - type: Transform @@ -142914,6 +143532,8 @@ entities: - 23275 - 23276 - 22982 + - type: Fixtures + fixtures: {} - uid: 22897 components: - type: Transform @@ -142924,6 +143544,8 @@ entities: devices: - 23280 - 23279 + - type: Fixtures + fixtures: {} - uid: 22898 components: - type: Transform @@ -142950,6 +143572,8 @@ entities: - 23453 - 23452 - 23451 + - type: Fixtures + fixtures: {} - uid: 22899 components: - type: Transform @@ -142976,6 +143600,8 @@ entities: - 23453 - 23452 - 23451 + - type: Fixtures + fixtures: {} - uid: 22900 components: - type: Transform @@ -142992,6 +143618,8 @@ entities: - 23405 - 23406 - 23466 + - type: Fixtures + fixtures: {} - uid: 22901 components: - type: Transform @@ -143006,6 +143634,8 @@ entities: - 23417 - 23408 - 23407 + - type: Fixtures + fixtures: {} - uid: 22902 components: - type: Transform @@ -143016,16 +143646,8 @@ entities: devices: - 23344 - 23345 - - uid: 22903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-69.5 - parent: 2 - - type: DeviceList - devices: - - 23349 - - 23347 + - type: Fixtures + fixtures: {} - uid: 22904 components: - type: Transform @@ -143034,11 +143656,10 @@ entities: parent: 2 - type: DeviceList devices: - - 23349 - - 23347 - 22998 - - 23348 - 22997 + - type: Fixtures + fixtures: {} - uid: 22905 components: - type: Transform @@ -143052,6 +143673,8 @@ entities: - 23432 - 23459 - 23458 + - type: Fixtures + fixtures: {} - uid: 22906 components: - type: Transform @@ -143067,6 +143690,8 @@ entities: - 23429 - 23434 - 23435 + - type: Fixtures + fixtures: {} - uid: 22907 components: - type: Transform @@ -143076,6 +143701,8 @@ entities: - type: DeviceList devices: - 23077 + - type: Fixtures + fixtures: {} - uid: 22908 components: - type: Transform @@ -143092,6 +143719,8 @@ entities: - 23478 - 23479 - 23477 + - type: Fixtures + fixtures: {} - uid: 22909 components: - type: Transform @@ -143114,6 +143743,8 @@ entities: - 23373 - 23448 - 23430 + - type: Fixtures + fixtures: {} - uid: 22910 components: - type: Transform @@ -143129,6 +143760,8 @@ entities: - 23065 - 23069 - 23070 + - type: Fixtures + fixtures: {} - uid: 22911 components: - type: Transform @@ -143151,6 +143784,8 @@ entities: - 23083 - 23082 - 23075 + - type: Fixtures + fixtures: {} - uid: 22912 components: - type: Transform @@ -143164,6 +143799,8 @@ entities: - 23363 - 23000 - 22999 + - type: Fixtures + fixtures: {} - uid: 22913 components: - type: Transform @@ -143187,6 +143824,8 @@ entities: - 23191 - 23196 - 23481 + - type: Fixtures + fixtures: {} - uid: 22914 components: - type: Transform @@ -143199,6 +143838,8 @@ entities: - 23254 - 23256 - 23255 + - type: Fixtures + fixtures: {} - uid: 22915 components: - type: Transform @@ -143211,6 +143852,8 @@ entities: - 23482 - 23486 - 23485 + - type: Fixtures + fixtures: {} - proto: FireAlarmAssembly entities: - uid: 22916 @@ -143218,6 +143861,8 @@ entities: - type: Transform pos: -59.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireAlarmElectronics entities: - uid: 22917 @@ -143234,12 +143879,16 @@ entities: rot: 3.141592653589793 rad pos: -5.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22919 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 22920 @@ -147833,7 +148482,6 @@ entities: deviceLists: - 22841 - 22845 - - 149 - 22902 - 106 - uid: 23345 @@ -147846,7 +148494,6 @@ entities: deviceLists: - 22841 - 22845 - - 149 - 22902 - 106 - uid: 23346 @@ -147855,36 +148502,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-78.5 parent: 2 - - uid: 23347 - components: - - type: Transform - pos: -37.5,-69.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - 22903 - - 22769 - - 22904 - - uid: 23348 - components: - - type: Transform - pos: -38.5,-73.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22904 - - uid: 23349 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - 22903 - - 22769 - - 22904 - uid: 23350 components: - type: Transform @@ -149611,6 +150228,11 @@ entities: parent: 2 - proto: Floodlight entities: + - uid: 6604 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 - uid: 23512 components: - type: Transform @@ -152473,40 +153095,54 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24041 components: - type: Transform pos: 76.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24042 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24043 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24044 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24045 components: - type: Transform pos: 71.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24046 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GasAnalyzer entities: - uid: 19149 @@ -153050,6 +153686,14 @@ entities: parent: 2 - proto: GasPipeBend entities: + - uid: 6607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 24132 components: - type: Transform @@ -159930,22 +160574,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 25031 components: - type: Transform @@ -160807,6 +161435,14 @@ entities: color: '#FF0000FF' - proto: GasPipeStraight entities: + - uid: 1031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 25152 components: - type: Transform @@ -205599,85 +206235,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30939 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30940 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30941 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30942 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30943 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30944 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30945 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30946 - components: - - type: Transform - pos: -33.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30947 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 30948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 30949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 30950 components: - type: Transform @@ -211412,21 +211969,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 31714 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 31716 components: - type: Transform @@ -217456,17 +217998,6 @@ entities: - 170 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 32422 components: - type: Transform @@ -220452,17 +220983,6 @@ entities: - 167 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 32716 components: - type: Transform @@ -221522,15 +222042,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: GoldOre1 - entities: - - uid: 19975 - components: - - type: Transform - parent: 19974 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GoldRing entities: - uid: 19964 @@ -230299,36 +230810,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-58.5 parent: 2 - - uid: 34602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-64.5 - parent: 2 - - uid: 34603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-65.5 - parent: 2 - - uid: 34604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 2 - - uid: 34605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-64.5 - parent: 2 - - uid: 34606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-65.5 - parent: 2 - uid: 34607 components: - type: Transform @@ -232433,18 +232914,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -232484,18 +232955,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -232658,13 +233119,6 @@ entities: - type: Transform pos: -61.5,-23.5 parent: 2 -- proto: HandHeldMassScanner - entities: - - uid: 35052 - components: - - type: Transform - pos: -32.375946,-64.32356 - parent: 2 - proto: HandheldSlimeAnalyzer entities: - uid: 35053 @@ -234441,167 +234895,225 @@ entities: rot: 3.141592653589793 rad pos: 15.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35332 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35333 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35334 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35335 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35336 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35337 components: - type: Transform pos: -11.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35338 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35339 components: - type: Transform pos: -3.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35340 components: - type: Transform pos: -8.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35341 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35342 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35343 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35344 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35345 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35346 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35347 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35348 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35349 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35350 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35351 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35352 components: - type: Transform pos: 7.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35353 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35354 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35355 components: - type: Transform pos: 18.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35356 components: - type: Transform pos: -40.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35357 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35358 components: - type: Transform pos: 3.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35359 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-115.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 35360 @@ -234610,640 +235122,866 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35361 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35362 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35363 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35364 components: - type: Transform pos: -4.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35365 components: - type: Transform pos: -13.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35366 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35367 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35368 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35369 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35370 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35371 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35372 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35373 components: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35374 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35375 components: - type: Transform pos: -20.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35376 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35377 components: - type: Transform pos: -24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35378 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35379 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35380 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35381 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35382 components: - type: Transform pos: 0.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35383 components: - type: Transform pos: -3.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35384 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35385 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35386 components: - type: Transform pos: -2.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35387 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35388 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35389 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35390 components: - type: Transform pos: -31.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35391 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35392 components: - type: Transform pos: -27.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35393 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35394 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35395 components: - type: Transform pos: -21.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35396 components: - type: Transform pos: -11.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35397 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35398 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35399 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35400 components: - type: Transform pos: 9.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35401 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35402 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35403 components: - type: Transform pos: 11.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35404 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35405 components: - type: Transform pos: 11.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35406 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35407 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35408 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35409 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35410 components: - type: Transform pos: -19.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35411 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35412 components: - type: Transform pos: 29.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35413 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35414 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35415 components: - type: Transform pos: 44.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35416 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35417 components: - type: Transform pos: 28.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35418 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35419 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35420 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35421 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35422 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35423 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35424 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35425 components: - type: Transform pos: -9.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35426 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35427 components: - type: Transform pos: 13.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35428 components: - type: Transform pos: 9.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35429 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35430 components: - type: Transform pos: 90.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35431 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35432 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35433 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35434 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35435 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35436 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35437 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35438 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35439 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35440 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35441 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35442 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35443 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35444 components: - type: Transform pos: 31.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35445 components: - type: Transform pos: 26.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35446 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35447 components: - type: Transform pos: -17.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35448 components: - type: Transform pos: -13.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35449 components: - type: Transform pos: -19.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35450 components: - type: Transform pos: 13.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35451 components: - type: Transform pos: 18.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35452 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35453 components: - type: Transform pos: -8.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35454 components: - type: Transform pos: -17.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35455 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35456 components: - type: Transform pos: 67.5,80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35457 components: - type: Transform pos: 77.5,80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35458 components: - type: Transform pos: -16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35459 components: - type: Transform pos: 56.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35460 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35461 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35462 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35463 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35464 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35465 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35466 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35467 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35468 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35469 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35470 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35471 components: - type: Transform pos: 50.5,-116.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35472 components: - type: Transform pos: 32.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 35473 @@ -235252,197 +235990,265 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35474 components: - type: Transform pos: -46.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35475 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35476 components: - type: Transform pos: -51.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35477 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35478 components: - type: Transform pos: -54.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35479 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35480 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35481 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35482 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35483 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35484 components: - type: Transform pos: -63.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35485 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35486 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35487 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35488 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35489 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35490 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35491 components: - type: Transform pos: -79.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35492 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35493 components: - type: Transform pos: -69.5,72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35494 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35495 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35496 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35497 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35498 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35499 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35500 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35501 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35502 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35503 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35504 components: - type: Transform pos: -38.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35505 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35506 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-114.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 35507 @@ -235451,186 +236257,250 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35508 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35509 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35510 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35511 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35512 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35513 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35514 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35515 components: - type: Transform pos: 38.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35516 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35517 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35518 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35519 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35520 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35521 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35522 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35523 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35524 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35525 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35526 components: - type: Transform pos: 62.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35527 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35528 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35529 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35530 components: - type: Transform pos: 54.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35531 components: - type: Transform pos: 66.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35532 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35533 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35534 components: - type: Transform pos: 37.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35535 components: - type: Transform pos: 48.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35536 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35537 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35538 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-115.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 35539 @@ -235639,195 +236509,263 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35540 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35541 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35542 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35543 components: - type: Transform pos: 49.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35544 components: - type: Transform pos: 55.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35545 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35546 components: - type: Transform pos: 61.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35547 components: - type: Transform pos: 52.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35548 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35549 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35550 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35551 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35552 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35553 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35554 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35555 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35556 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35557 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35558 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35559 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35560 components: - type: Transform pos: 84.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35561 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35562 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35563 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35564 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35565 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35566 components: - type: Transform pos: 69.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35567 components: - type: Transform pos: 70.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35568 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35569 components: - type: Transform pos: 80.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35570 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35571 components: - type: Transform pos: 71.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35572 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-115.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 35573 @@ -235836,226 +236774,306 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35574 components: - type: Transform pos: 59.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35575 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35576 components: - type: Transform pos: 52.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35577 components: - type: Transform pos: 53.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35578 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35579 components: - type: Transform pos: 61.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35580 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35581 components: - type: Transform pos: 69.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35582 components: - type: Transform pos: 64.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35583 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35584 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35585 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35586 components: - type: Transform pos: 76.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35587 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35588 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35589 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35590 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35591 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35592 components: - type: Transform pos: 79.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35593 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35594 components: - type: Transform pos: 78.5,61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35595 components: - type: Transform pos: 66.5,61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35596 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35597 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35598 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35599 components: - type: Transform pos: 43.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35600 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35601 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35602 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35603 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35604 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35605 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35606 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35607 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35608 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35609 components: - type: Transform pos: 67.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35610 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35611 components: - type: Transform pos: 53.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35612 components: - type: Transform pos: 48.5,-116.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 35613 @@ -236064,178 +237082,240 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35614 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35615 components: - type: Transform pos: -10.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35616 components: - type: Transform pos: -17.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35617 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35618 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35619 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35620 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35621 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35622 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35623 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35624 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35625 components: - type: Transform pos: -0.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35626 components: - type: Transform pos: -6.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35627 components: - type: Transform pos: -10.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35628 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35629 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35630 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35631 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35632 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35633 components: - type: Transform pos: 15.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35634 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35635 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35636 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35637 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35638 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35639 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35640 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35641 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35642 components: - type: Transform pos: -10.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35643 components: - type: Transform pos: -3.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 35644 @@ -236244,76 +237324,102 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35645 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35646 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35647 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35648 components: - type: Transform pos: -41.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35649 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35650 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35651 components: - type: Transform pos: -52.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35652 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35653 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35654 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35655 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35656 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-116.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: InvisibleCrate entities: - uid: 22220 @@ -237001,6 +238107,14 @@ entities: - type: Transform pos: 29.33138,-66.614 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 6605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-60.5 + parent: 2 - proto: LeavesCannabis entities: - uid: 35756 @@ -237077,11 +238191,6 @@ entities: parent: 2 - proto: LiquidOxygenCanister entities: - - uid: 21914 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 2 - uid: 35768 components: - type: Transform @@ -237105,6 +238214,8 @@ entities: 3071: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonAtmospherics entities: - uid: 35771 @@ -237112,6 +238223,8 @@ entities: - type: Transform pos: -72.5,79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35772 components: - type: MetaData @@ -237125,11 +238238,15 @@ entities: 3065: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 35773 components: - type: Transform pos: -78.5,79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 35774 components: - type: MetaData @@ -237143,6 +238260,8 @@ entities: 3064: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 35775 components: - type: Transform @@ -237157,6 +238276,8 @@ entities: 3082: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChemistry entities: - uid: 35776 @@ -237191,6 +238312,8 @@ entities: 40459: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 35777 @@ -237216,6 +238339,8 @@ entities: 40461: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 50945 components: - type: Transform @@ -237230,6 +238355,8 @@ entities: 701: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 50946 components: - type: Transform @@ -237244,6 +238371,8 @@ entities: 702: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 35778 @@ -237261,6 +238390,8 @@ entities: 37452: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 35779 components: - type: MetaData @@ -237273,6 +238404,8 @@ entities: 40517: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 19525 @@ -237286,18 +238419,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -237321,18 +238444,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -237356,18 +238469,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -237412,18 +238515,8 @@ entities: immutable: False temperature: 293.147 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 35780 components: - type: Transform @@ -237439,8 +238532,8 @@ entities: pos: 13.5,-11.5 parent: 2 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Lock locked: False - type: Fixtures @@ -237550,18 +238643,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -237948,8 +239031,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 35842 @@ -237981,8 +239064,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - uid: 35843 @@ -238037,18 +239120,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -238074,18 +239147,8 @@ entities: immutable: False temperature: 293.1465 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -238183,18 +239246,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -238348,18 +239401,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 35866 components: - type: Transform @@ -238405,18 +239448,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -238485,18 +239518,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -240440,6 +241463,18 @@ entities: - type: Transform pos: 61.5,-9.5 parent: 2 +- proto: Medkit + entities: + - uid: 1986 + components: + - type: Transform + pos: -36.980026,-53.423294 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -32.45659,-56.47017 + parent: 2 - proto: MedkitBruteFilled entities: - uid: 36222 @@ -240780,66 +241815,92 @@ entities: - type: Transform pos: 22.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36278 components: - type: Transform pos: 20.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36279 components: - type: Transform pos: 18.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36280 components: - type: Transform pos: 89.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36281 components: - type: Transform pos: 53.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36282 components: - type: Transform pos: 54.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36283 components: - type: Transform pos: 55.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36284 components: - type: Transform pos: 91.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36285 components: - type: Transform pos: 90.5,71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36286 components: - type: Transform pos: -31.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36287 components: - type: Transform pos: -29.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36288 components: - type: Transform pos: -30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36289 components: - type: Transform pos: 74.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MMI entities: - uid: 36292 @@ -241559,18 +242620,24 @@ entities: - type: Transform pos: -58.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36404 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36405 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 36406 @@ -241676,37 +242743,6 @@ entities: - type: Transform pos: 61.5,77.5 parent: 2 -- proto: OreBox - entities: - - uid: 36423 - components: - - type: Transform - pos: -37.5,-63.5 - parent: 2 - - uid: 36424 - components: - - type: Transform - pos: -38.5,-63.5 - parent: 2 - - uid: 36425 - components: - - type: Transform - pos: -36.5,-63.5 - parent: 2 -- proto: OreProcessor - entities: - - uid: 51012 - components: - - type: Transform - pos: -35.5,-62.5 - parent: 2 - - type: TechnologyDatabase - supportedDisciplines: - - Industrial - - Arsenal - - Experimental - - CivilianServices - - Biochemical - proto: OrganArachnidStomach entities: - uid: 36426 @@ -241967,6 +243003,8 @@ entities: - type: Transform pos: -11.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 36454 @@ -243391,11 +244429,6 @@ entities: - type: Transform pos: -37.383232,-53.37126 parent: 2 - - uid: 36710 - components: - - type: Transform - pos: -36.19626,-68.35481 - parent: 2 - uid: 36711 components: - type: Transform @@ -243957,6 +244990,8 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBlessThisSpess entities: - uid: 36804 @@ -243965,11 +245000,15 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36805 components: - type: Transform pos: 57.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 36806 @@ -243978,6 +245017,8 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 36807 @@ -243985,11 +245026,15 @@ entities: - type: Transform pos: -18.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36808 components: - type: Transform pos: -21.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 36809 @@ -243997,11 +245042,15 @@ entities: - type: Transform pos: -19.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36810 components: - type: Transform pos: -17.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 36811 @@ -244009,6 +245058,8 @@ entities: - type: Transform pos: -5.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 36812 @@ -244016,40 +245067,54 @@ entities: - type: Transform pos: 2.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36813 components: - type: Transform pos: -3.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36814 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36815 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36816 components: - type: Transform pos: 37.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36817 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36818 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 36819 @@ -244058,11 +245123,15 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36820 components: - type: Transform pos: 12.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitYesERP entities: - uid: 36821 @@ -244071,24 +245140,32 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36822 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36823 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 36824 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PotatoSeeds entities: - uid: 36825 @@ -248048,12 +249125,6 @@ entities: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 37532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 2 - uid: 37533 components: - type: Transform @@ -249916,14 +250987,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-72.5 parent: 2 - - uid: 37853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-74.5 - parent: 2 - - type: PointLight - offset: 0,-0.25 - uid: 37854 components: - type: Transform @@ -250362,11 +251425,6 @@ entities: rot: 3.141592653589793 rad pos: 89.5,-33.5 parent: 2 - - uid: 37930 - components: - - type: Transform - pos: -36.5,-68.5 - parent: 2 - uid: 37931 components: - type: Transform @@ -260620,12 +261678,6 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,-22.5 parent: 2 - - uid: 39873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-65.5 - parent: 2 - uid: 39874 components: - type: Transform @@ -260658,24 +261710,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 - - uid: 39880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-64.5 - parent: 2 - - uid: 39881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-65.5 - parent: 2 - - uid: 39882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-64.5 - parent: 2 - uid: 39883 components: - type: Transform @@ -260769,11 +261803,6 @@ entities: rot: 3.141592653589793 rad pos: -76.5,76.5 parent: 2 - - uid: 39899 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - uid: 39900 components: - type: Transform @@ -261222,7 +262251,7 @@ entities: pos: 55.5,-68.5 parent: 2 - type: DnaServer - serverId: 194 + serverId: 199 - proto: Retractor entities: - uid: 20082 @@ -261279,13 +262308,6 @@ entities: - type: Transform pos: 78.668144,40.63742 parent: 2 -- proto: RipleyChassis - entities: - - uid: 39989 - components: - - type: Transform - pos: -21.5,-65.5 - parent: 2 - proto: RobocopCircuitBoard entities: - uid: 39990 @@ -261400,20 +262422,6 @@ entities: - type: Transform pos: -58.621666,-47.490448 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 40008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-66.5 - parent: 2 - - type: ContainerContainer - containers: - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - proto: SalvageMaterialCrateSpawner entities: - uid: 40009 @@ -261944,16 +262952,6 @@ entities: - type: Transform pos: 28.5,-61.5 parent: 2 - - uid: 40113 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 2 - - uid: 40114 - components: - - type: Transform - pos: -34.5,-65.5 - parent: 2 - uid: 40115 components: - type: Transform @@ -262057,1074 +263055,1464 @@ entities: - type: Transform pos: 44.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40134 components: - type: Transform pos: 42.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40135 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40136 components: - type: Transform pos: 52.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40137 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40138 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40139 components: - type: Transform pos: -57.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40140 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40141 components: - type: Transform pos: -62.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40142 components: - type: Transform pos: 15.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40143 components: - type: Transform pos: 16.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40144 components: - type: Transform pos: 18.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40145 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40146 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40147 components: - type: Transform pos: -2.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40148 components: - type: Transform pos: 3.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40149 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40150 components: - type: Transform pos: 10.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40151 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40152 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40153 components: - type: Transform pos: -23.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40154 components: - type: Transform pos: -11.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40155 components: - type: Transform pos: -22.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40156 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40157 components: - type: Transform pos: -12.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40158 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40159 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40160 components: - type: Transform pos: 16.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40161 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40162 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40163 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40164 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40165 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40166 components: - type: Transform pos: -3.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40167 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40168 components: - type: Transform pos: 7.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40169 components: - type: Transform pos: -10.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40170 components: - type: Transform pos: -26.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40171 components: - type: Transform pos: -32.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40172 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40173 components: - type: Transform pos: -42.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40174 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40175 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40176 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40177 components: - type: Transform pos: -59.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40178 components: - type: Transform pos: -55.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40179 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40180 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40181 components: - type: Transform pos: -39.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40182 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40183 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40184 components: - type: Transform pos: 8.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40185 components: - type: Transform pos: 9.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40186 components: - type: Transform pos: 14.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40187 components: - type: Transform pos: 7.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40188 components: - type: Transform pos: 16.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40189 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40190 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40191 components: - type: Transform pos: -18.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40192 components: - type: Transform pos: -30.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40193 components: - type: Transform pos: 12.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40194 components: - type: Transform pos: 4.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40195 components: - type: Transform pos: -0.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40196 components: - type: Transform pos: 23.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40197 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40198 components: - type: Transform pos: 56.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40199 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40200 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40201 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40202 components: - type: Transform pos: 83.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40203 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40204 components: - type: Transform pos: 65.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40205 components: - type: Transform pos: 58.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40206 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40207 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40208 components: - type: Transform pos: 74.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40209 components: - type: Transform pos: 69.5,69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40210 components: - type: Transform pos: 75.5,69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40211 components: - type: Transform pos: 82.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40212 components: - type: Transform pos: 62.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40213 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40214 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40215 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40216 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40217 components: - type: Transform pos: 82.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40218 components: - type: Transform pos: 46.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40219 components: - type: Transform pos: 29.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40220 components: - type: Transform pos: 33.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40221 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40222 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40223 components: - type: Transform pos: -39.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40224 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40225 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40226 components: - type: Transform pos: -61.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40227 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40228 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40229 components: - type: Transform pos: -42.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40230 components: - type: Transform pos: -44.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40231 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40232 components: - type: Transform pos: 40.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40233 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40234 components: - type: Transform pos: 30.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40235 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40236 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40237 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40238 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40239 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40240 components: - type: Transform pos: 32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40241 components: - type: Transform pos: 41.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40242 components: - type: Transform pos: 44.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40243 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40244 components: - type: Transform pos: 51.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40245 components: - type: Transform pos: 45.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40246 components: - type: Transform pos: 43.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40247 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40248 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40249 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40250 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-129.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40251 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40252 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40253 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40254 components: - type: Transform pos: 66.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40255 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40256 components: - type: Transform pos: 16.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40257 components: - type: Transform pos: 9.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40258 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40259 components: - type: Transform pos: 57.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40260 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40261 components: - type: Transform pos: -20.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40262 components: - type: Transform pos: 90.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40263 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40264 components: - type: Transform pos: 81.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40265 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40266 components: - type: Transform pos: 86.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40267 components: - type: Transform pos: 78.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40268 components: - type: Transform pos: 83.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40269 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40270 components: - type: Transform pos: 68.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40271 components: - type: Transform pos: 52.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40272 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40273 components: - type: Transform pos: 51.5,-107.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40274 components: - type: Transform pos: 47.5,-107.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40275 components: - type: Transform pos: 43.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40276 components: - type: Transform pos: 55.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40277 components: - type: Transform pos: 38.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40278 components: - type: Transform pos: 60.5,-124.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40279 components: - type: Transform pos: 45.5,-127.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40280 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-129.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40281 components: - type: Transform pos: 68.5,-113.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40282 components: - type: Transform pos: -11.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40283 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40284 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40285 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40286 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40287 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40288 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40289 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40290 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40291 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40292 components: - type: Transform pos: 14.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40293 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40294 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40295 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40296 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40297 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40298 components: - type: Transform pos: 9.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40299 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40300 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40301 components: - type: Transform pos: 4.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40302 components: - type: Transform pos: 10.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40303 components: - type: Transform pos: -12.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40304 components: - type: Transform pos: -17.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40305 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40306 components: - type: Transform pos: 36.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40307 components: - type: Transform pos: 45.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40308 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40309 components: - type: Transform pos: 65.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40310 components: - type: Transform pos: 58.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40311 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40312 components: - type: Transform pos: 54.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40313 components: - type: Transform pos: 70.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40314 components: - type: Transform pos: 14.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40315 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40316 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40317 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40318 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40319 components: - type: Transform pos: -72.5,75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40320 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40321 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40322 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40323 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40324 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40325 components: - type: Transform pos: 48.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40326 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40327 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 40328 @@ -263921,13 +265309,6 @@ entities: - type: Transform pos: 16.5,-10.5 parent: 2 -- proto: Shovel - entities: - - uid: 40431 - components: - - type: Transform - pos: -36.63111,-68.39952 - parent: 2 - proto: ShowcaseRobot entities: - uid: 40432 @@ -264608,11 +265989,15 @@ entities: - type: Transform pos: 48.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40525 components: - type: Transform pos: 50.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 40526 @@ -264620,6 +266005,8 @@ entities: - type: Transform pos: 43.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 40527 @@ -264633,6 +266020,8 @@ entities: 3087: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40528 components: - type: Transform @@ -264644,6 +266033,8 @@ entities: 3088: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40529 components: - type: Transform @@ -264655,6 +266046,8 @@ entities: 3086: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40530 components: - type: Transform @@ -264665,6 +266058,8 @@ entities: 3085: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40531 components: - type: Transform @@ -264675,6 +266070,8 @@ entities: 3084: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40532 components: - type: Transform @@ -264685,6 +266082,8 @@ entities: 3083: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40533 components: - type: Transform @@ -264729,6 +266128,8 @@ entities: 40480: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 40534 @@ -264745,6 +266146,8 @@ entities: 40435: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40535 components: - type: Transform @@ -264761,6 +266164,8 @@ entities: 3063: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40536 components: - type: Transform @@ -264778,6 +266183,8 @@ entities: 3066: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40537 components: - type: Transform @@ -264819,6 +266226,8 @@ entities: 40443: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40538 components: - type: Transform @@ -264829,6 +266238,8 @@ entities: 40436: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40539 components: - type: Transform @@ -264843,6 +266254,8 @@ entities: 3070: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40540 components: - type: Transform @@ -264856,6 +266269,8 @@ entities: 3073: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40541 components: - type: Transform @@ -264866,6 +266281,8 @@ entities: 40437: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40542 components: - type: Transform @@ -264892,6 +266309,8 @@ entities: 790: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40543 components: - type: Transform @@ -264909,6 +266328,8 @@ entities: 40438: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40544 components: - type: Transform @@ -264922,6 +266343,8 @@ entities: 3075: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40545 components: - type: Transform @@ -264932,6 +266355,8 @@ entities: 40441: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40546 components: - type: Transform @@ -264958,6 +266383,8 @@ entities: 40520: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40547 components: - type: Transform @@ -264968,6 +266395,8 @@ entities: 208: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40548 components: - type: Transform @@ -264978,6 +266407,8 @@ entities: 209: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40549 components: - type: Transform @@ -264989,6 +266420,8 @@ entities: 210: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40550 components: - type: Transform @@ -265000,6 +266433,8 @@ entities: 207: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40551 components: - type: Transform @@ -265016,6 +266451,8 @@ entities: 40470: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40552 components: - type: Transform @@ -265033,6 +266470,8 @@ entities: 3081: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40553 components: - type: Transform @@ -265067,6 +266506,8 @@ entities: 40491: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40554 components: - type: Transform @@ -265093,6 +266534,8 @@ entities: 40499: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40555 components: - type: Transform @@ -265122,6 +266565,8 @@ entities: 40506: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40556 components: - type: Transform @@ -265160,6 +266605,8 @@ entities: 40516: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 40557 components: - type: Transform @@ -265171,6 +266618,8 @@ entities: 218: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40558 components: - type: Transform @@ -265182,6 +266631,8 @@ entities: 219: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40559 components: - type: Transform @@ -265193,6 +266644,8 @@ entities: 220: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40560 components: - type: Transform @@ -265204,6 +266657,8 @@ entities: 226: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40561 components: - type: Transform @@ -265214,6 +266669,8 @@ entities: 227: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40562 components: - type: Transform @@ -265225,6 +266682,8 @@ entities: 216: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 40563 components: - type: Transform @@ -265241,6 +266700,8 @@ entities: 3058: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalControlledValve entities: - uid: 40564 @@ -265366,6 +266827,8 @@ entities: - type: Transform pos: 58.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 40580 @@ -265373,6 +266836,8 @@ entities: - type: Transform pos: -37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 40581 @@ -265380,6 +266845,8 @@ entities: - type: Transform pos: 4.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBarbershop entities: - uid: 40582 @@ -265387,6 +266854,8 @@ entities: - type: Transform pos: -0.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 40583 @@ -265394,11 +266863,15 @@ entities: - type: Transform pos: 72.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40584 components: - type: Transform pos: 70.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 40585 @@ -265406,11 +266879,15 @@ entities: - type: Transform pos: 65.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40586 components: - type: Transform pos: 72.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 40587 @@ -265419,6 +266896,8 @@ entities: rot: 3.141592653589793 rad pos: 80.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 40588 @@ -265426,6 +266905,8 @@ entities: - type: Transform pos: -41.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 40589 @@ -265433,6 +266914,8 @@ entities: - type: Transform pos: -61.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 40590 @@ -265440,11 +266923,15 @@ entities: - type: Transform pos: -22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40591 components: - type: Transform pos: -14.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 40592 @@ -265453,12 +266940,16 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40593 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 40594 @@ -265466,6 +266957,8 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenics entities: - uid: 40595 @@ -265473,11 +266966,15 @@ entities: - type: Transform pos: 41.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40596 components: - type: Transform pos: 45.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 40597 @@ -265486,24 +266983,32 @@ entities: rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40598 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40599 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40600 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBrig entities: - uid: 40601 @@ -265512,12 +267017,16 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40602 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 40603 @@ -265526,18 +267035,24 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40604 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40605 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 40606 @@ -265546,18 +267061,24 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40607 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40608 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 40609 @@ -265566,16 +267087,22 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40610 components: - type: Transform pos: -33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40611 components: - type: Transform pos: 26.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 40612 @@ -265584,23 +267111,31 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40613 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40614 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40615 components: - type: Transform pos: 26.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 40616 @@ -265608,29 +267143,39 @@ entities: - type: Transform pos: -37.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40617 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40618 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40619 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40620 components: - type: Transform pos: 26.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 40621 @@ -265639,30 +267184,40 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40622 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40623 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40624 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40625 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 40626 @@ -265671,17 +267226,23 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40627 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40628 components: - type: Transform pos: -37.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 40629 @@ -265689,6 +267250,8 @@ entities: - type: Transform pos: -63.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 40630 @@ -265696,6 +267259,8 @@ entities: - type: Transform pos: -48.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 40631 @@ -265703,6 +267268,8 @@ entities: - type: Transform pos: -56.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 40632 @@ -265710,6 +267277,8 @@ entities: - type: Transform pos: 9.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 40633 @@ -265718,24 +267287,32 @@ entities: rot: -1.5707963267948966 rad pos: -71.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40634 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40635 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40636 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 40637 @@ -265743,11 +267320,15 @@ entities: - type: Transform pos: -79.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40638 components: - type: Transform pos: -77.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 40639 @@ -265755,6 +267336,8 @@ entities: - type: Transform pos: 0.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 40640 @@ -265762,6 +267345,8 @@ entities: - type: Transform pos: 84.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 40641 @@ -265769,6 +267354,8 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 40642 @@ -265776,6 +267363,8 @@ entities: - type: Transform pos: 70.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 40643 @@ -265783,21 +267372,29 @@ entities: - type: Transform pos: 57.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40644 components: - type: Transform pos: 61.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40645 components: - type: Transform pos: 57.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40646 components: - type: Transform pos: 61.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 40647 @@ -265805,11 +267402,15 @@ entities: - type: Transform pos: 4.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40648 components: - type: Transform pos: 14.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 40649 @@ -265817,6 +267418,8 @@ entities: - type: Transform pos: -60.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 40650 @@ -265824,35 +267427,47 @@ entities: - type: Transform pos: 26.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40651 components: - type: Transform pos: 26.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40652 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40653 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40654 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40655 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 40656 @@ -265860,6 +267475,8 @@ entities: - type: Transform pos: 56.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 40657 @@ -265867,27 +267484,37 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40658 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40659 components: - type: Transform pos: 55.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40660 components: - type: Transform pos: 63.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40661 components: - type: Transform pos: 31.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 40662 @@ -265895,11 +267522,15 @@ entities: - type: Transform pos: 64.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40663 components: - type: Transform pos: 64.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 40664 @@ -265907,6 +267538,8 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiation entities: - uid: 40665 @@ -265915,71 +267548,95 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40666 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40667 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40668 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40669 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40670 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40671 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40672 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40673 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40674 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40675 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40676 components: - type: Transform pos: -52.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 40677 @@ -265988,6 +267645,8 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,79.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 40678 @@ -265996,6 +267655,8 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,79.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 40679 @@ -266003,11 +267664,15 @@ entities: - type: Transform pos: 50.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40680 components: - type: Transform pos: -31.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 40681 @@ -266015,6 +267680,8 @@ entities: - type: Transform pos: -35.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 40682 @@ -266023,18 +267690,24 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40683 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40684 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 40685 @@ -266043,34 +267716,46 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40686 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40687 components: - type: Transform pos: -50.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40688 components: - type: Transform pos: -52.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40689 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40690 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 40691 @@ -266078,16 +267763,22 @@ entities: - type: Transform pos: 17.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40692 components: - type: Transform pos: 15.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40693 components: - type: Transform pos: -85.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 40694 @@ -266095,12 +267786,16 @@ entities: - type: Transform pos: 22.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40695 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 40696 @@ -266108,6 +267803,8 @@ entities: - type: Transform pos: 62.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: - uid: 40697 @@ -266115,21 +267812,29 @@ entities: - type: Transform pos: 61.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40698 components: - type: Transform pos: 70.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40699 components: - type: Transform pos: 74.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40700 components: - type: Transform pos: -54.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 40701 @@ -266137,35 +267842,47 @@ entities: - type: Transform pos: 13.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40702 components: - type: Transform pos: 19.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40703 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40704 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40705 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40706 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 40707 @@ -266174,6 +267891,8 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 40708 @@ -266181,11 +267900,15 @@ entities: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 40709 components: - type: Transform pos: 56.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 40710 @@ -266193,6 +267916,8 @@ entities: - type: Transform pos: 48.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToxins entities: - uid: 40711 @@ -266200,6 +267925,8 @@ entities: - type: Transform pos: 76.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 40712 @@ -266207,6 +267934,8 @@ entities: - type: Transform pos: 70.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 40713 @@ -266214,15 +267943,8 @@ entities: - type: Transform pos: 65.5,-75.5 parent: 2 -- proto: SilverOre1 - entities: - - uid: 19976 - components: - - type: Transform - parent: 19974 - - type: Physics - canCollide: False - - type: InsideEntityStorage + - type: Fixtures + fixtures: {} - proto: SilverRing entities: - uid: 19969 @@ -268540,28 +270262,6 @@ entities: - type: Transform pos: -0.5,-45.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 41139 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - uid: 41140 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 2 - - uid: 41141 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 2 - - uid: 41142 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - proto: SpawnPointBrigmedic entities: - uid: 41143 @@ -269394,48 +271094,6 @@ entities: - type: Transform pos: 58.5,-62.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 41294 - components: - - type: Transform - pos: -36.5,-54.5 - parent: 2 - - uid: 41295 - components: - - type: Transform - pos: -35.5,-54.5 - parent: 2 - - uid: 41296 - components: - - type: Transform - pos: -35.5,-52.5 - parent: 2 - - uid: 41297 - components: - - type: Transform - pos: -30.5,-52.5 - parent: 2 - - uid: 41298 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 2 - - uid: 41299 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 2 - - uid: 41300 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 41301 - components: - - type: Transform - pos: -37.5,-67.5 - parent: 2 - proto: SpawnPointScientist entities: - uid: 41302 @@ -269892,6 +271550,50 @@ entities: - type: Transform pos: 2.5,-65.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 1236 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -29.5,-52.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 715 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 41361 @@ -270060,6 +271762,38 @@ entities: - type: Transform pos: 83.5,21.5 parent: 2 +- proto: SpawnPointWardenHelper + entities: + - uid: 149 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 69.5,49.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 80.5,30.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 - proto: SpawnVehicleATV entities: - uid: 43014 @@ -270379,653 +272113,883 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41437 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41438 components: - type: Transform pos: 73.5,68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41439 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41440 components: - type: Transform pos: -4.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41441 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41442 components: - type: Transform pos: -6.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41443 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41444 components: - type: Transform pos: 18.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41445 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41446 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41447 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41448 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41449 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41450 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41451 components: - type: Transform pos: 8.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41452 components: - type: Transform pos: 12.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41453 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41454 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41455 components: - type: Transform pos: -19.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41456 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41457 components: - type: Transform pos: 14.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41458 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41459 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41460 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41461 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41462 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41463 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41464 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41465 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41466 components: - type: Transform pos: 55.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41467 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41468 components: - type: Transform pos: 74.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41469 components: - type: Transform pos: 70.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41470 components: - type: Transform pos: 52.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41471 components: - type: Transform pos: 68.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41472 components: - type: Transform pos: 80.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41473 components: - type: Transform pos: 64.5,73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41474 components: - type: Transform pos: 51.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41475 components: - type: Transform pos: -37.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41476 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41477 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41478 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41479 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41480 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41481 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41482 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41483 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41484 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41485 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41486 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41487 components: - type: Transform pos: 26.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41488 components: - type: Transform pos: 40.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41489 components: - type: Transform pos: 53.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41490 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41491 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41492 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41493 components: - type: Transform pos: 68.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41494 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41495 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41496 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41497 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41498 components: - type: Transform pos: 68.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41499 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41500 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41501 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41502 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41503 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41504 components: - type: Transform pos: -23.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41505 components: - type: Transform pos: -10.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41506 components: - type: Transform pos: 11.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41507 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41508 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41509 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41510 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41511 components: - type: Transform pos: 46.5,-127.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41512 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-116.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41513 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-114.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41514 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41515 components: - type: Transform pos: -10.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41516 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41517 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41518 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41519 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41520 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41521 components: - type: Transform pos: -27.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41522 components: - type: Transform pos: 13.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41523 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41524 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41525 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41526 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41527 components: - type: Transform pos: -11.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41528 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41529 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41530 components: - type: Transform pos: 5.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41531 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41532 components: - type: Transform pos: -25.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41533 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41534 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41535 components: - type: Transform pos: -8.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41536 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41537 components: - type: Transform pos: -19.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41538 components: - type: Transform pos: 68.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41539 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41540 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41541 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41542 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41543 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41544 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41545 components: - type: Transform pos: -54.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41546 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41547 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41548 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41549 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 41550 components: - type: Transform pos: 30.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationRecordsComputerCircuitboard entities: - uid: 41551 @@ -271054,17 +273018,6 @@ entities: - type: Transform pos: 33.5,-56.5 parent: 2 -- proto: SteelOre1 - entities: - - uid: 19977 - components: - - type: Transform - parent: 19974 - - type: Physics - canCollide: False - - type: Stack - count: 10 - - type: InsideEntityStorage - proto: Stool entities: - uid: 41555 @@ -271828,18 +273781,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: SuitStorageBase entities: - uid: 19460 @@ -271853,18 +273796,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -275357,27 +277290,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утилизаторы - - uid: 42032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторы - - uid: 42033 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторы хранилище - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 42034 @@ -277574,12 +279486,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-57.5 parent: 2 - - uid: 42409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-64.5 - parent: 2 - uid: 42410 components: - type: Transform @@ -284891,6 +286797,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19214 components: - type: Transform @@ -284898,6 +286808,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRedWithTop entities: - uid: 19215 @@ -284907,6 +286821,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 19216 components: - type: Transform @@ -284914,6 +286832,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 43637 @@ -285499,6 +287421,53 @@ entities: - type: Transform pos: -37.5,-57.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSec entities: - uid: 43735 @@ -285563,6 +287532,11 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 6619 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 - uid: 43745 components: - type: Transform @@ -285672,162 +287646,218 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43764 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43765 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43766 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43767 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43768 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43769 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43770 components: - type: Transform pos: 82.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43771 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43772 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43773 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43774 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43775 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43776 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43777 components: - type: Transform pos: 63.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43778 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43779 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43780 components: - type: Transform pos: -8.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43781 components: - type: Transform pos: 63.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43782 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43783 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43784 components: - type: Transform pos: 38.5,67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43785 components: - type: Transform pos: -16.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43786 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43787 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43788 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43789 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43790 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineYouTool entities: - uid: 43791 @@ -285864,34 +287894,46 @@ entities: - type: Transform pos: -5.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43796 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43797 components: - type: Transform pos: 57.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43798 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43799 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 43800 components: - type: Transform pos: -1.5,63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 43801 @@ -285900,6 +287942,8 @@ entities: rot: 3.141592653589793 rad pos: 66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevisionFrame entities: - uid: 43802 @@ -285907,8 +287951,26 @@ entities: - type: Transform pos: -3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-69.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -38.5,-73.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: -39.5,-73.5 + parent: 2 - uid: 43803 components: - type: Transform @@ -300418,12 +302480,6 @@ entities: rot: 1.5707963267948966 rad pos: -75.5,7.5 parent: 2 - - uid: 46664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-74.5 - parent: 2 - uid: 46665 components: - type: Transform @@ -300436,12 +302492,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,64.5 parent: 2 - - uid: 46667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-74.5 - parent: 2 - uid: 46668 components: - type: Transform @@ -300493,12 +302543,6 @@ entities: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 46677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-67.5 - parent: 2 - uid: 46678 components: - type: Transform @@ -302633,12 +304677,6 @@ entities: - type: Transform pos: -42.5,-69.5 parent: 2 - - uid: 47104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-75.5 - parent: 2 - uid: 47105 components: - type: Transform @@ -303233,12 +305271,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-70.5 parent: 2 - - uid: 47223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-75.5 - parent: 2 - uid: 47224 components: - type: Transform @@ -303250,12 +305282,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-72.5 parent: 2 - - uid: 47226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-62.5 - parent: 2 - uid: 47227 components: - type: Transform @@ -303589,24 +305615,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-73.5 parent: 2 - - uid: 47292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-73.5 - parent: 2 - uid: 47293 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-70.5 parent: 2 - - uid: 47294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-68.5 - parent: 2 - uid: 47295 components: - type: Transform @@ -304029,96 +306043,18 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-61.5 parent: 2 - - uid: 47368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-62.5 - parent: 2 - - uid: 47369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-62.5 - parent: 2 - uid: 47370 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-61.5 parent: 2 - - uid: 47371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-67.5 - parent: 2 - - uid: 47372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-62.5 - parent: 2 - - uid: 47373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 2 - - uid: 47374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-66.5 - parent: 2 - - uid: 47375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 2 - - uid: 47376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-62.5 - parent: 2 - - uid: 47377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 2 - - uid: 47378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-63.5 - parent: 2 - uid: 47379 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-73.5 parent: 2 - - uid: 47380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-66.5 - parent: 2 - - uid: 47381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-68.5 - parent: 2 - - uid: 47382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-67.5 - parent: 2 - uid: 47383 components: - type: Transform @@ -317934,6 +319870,8 @@ entities: - type: Transform pos: -42.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 50062 @@ -317941,6 +319879,8 @@ entities: - type: Transform pos: -46.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 50063 @@ -317948,6 +319888,8 @@ entities: - type: Transform pos: -34.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 50064 @@ -317955,6 +319897,8 @@ entities: - type: Transform pos: -50.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 50065 @@ -317962,6 +319906,8 @@ entities: - type: Transform pos: -38.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 50066 @@ -317969,6 +319915,8 @@ entities: - type: Transform pos: -32.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 50067 @@ -317976,57 +319924,8 @@ entities: - type: Transform pos: -32.5,11.5 parent: 2 -- proto: WarpPointBombing - entities: - - uid: 50068 - components: - - type: Transform - pos: -62.5,-41.5 - parent: 2 - - type: WarpPoint - location: стык карго - - uid: 50069 - components: - - type: Transform - pos: 21.5,52.5 - parent: 2 - - type: WarpPoint - location: каюта капитана - - uid: 50070 - components: - - type: Transform - pos: 48.5,50.5 - parent: 2 - - type: WarpPoint - location: каюта гсб - - uid: 50071 - components: - - type: Transform - pos: 42.5,-36.5 - parent: 2 - - type: WarpPoint - location: загрузка ии - - uid: 50072 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - type: WarpPoint - location: каюта гв - - uid: 50073 - components: - - type: Transform - pos: 59.5,-63.5 - parent: 2 - - type: WarpPoint - location: каюта нра - - uid: 50074 - components: - - type: Transform - pos: -13.5,57.5 - parent: 2 - - type: WarpPoint - location: каюта гп + - type: Fixtures + fixtures: {} - proto: WashingMachine entities: - uid: 22680 diff --git a/Resources/Maps/_Wega/wegaishimura.yml b/Resources/Maps/_Wega/wegaishimura.yml index 296560ac6b5..e3a2c6ca300 100644 --- a/Resources/Maps/_Wega/wegaishimura.yml +++ b/Resources/Maps/_Wega/wegaishimura.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 268.0.0 - forkId: wega - forkVersion: 951e65183889b98eb49c2585cc09ffbbf19a18c1 - time: 01/08/2026 00:23:43 - entityCount: 30666 + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 03/01/2026 11:47:16 + entityCount: 30560 maps: - 1 grids: @@ -59,7 +59,6 @@ tilemap: 50: FloorGrassLight 51: FloorGrayConcrete 52: FloorGrayConcreteMono - 12: FloorGrayConcreteOutsideMono 53: FloorGrayConcreteSmooth 54: FloorGreenCircuit 56: FloorHull @@ -151,7 +150,7 @@ entities: version: 7 0,0: ind: 0,0 - tiles: WwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAAWAAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABrAAAAAAAAFgAAAAAAAGsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAawAAAAAAABYAAAAAAABrAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAB8AAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAhAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHcAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAIQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACYAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAACEAAAAAAAAeAAAAAAAAHgAAAAAAAGoAAAAAAABqAAAAAAAAHgAAAAAAAB4AAAAAAAB8AAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAhAAAAAAAAHgAAAAAAACEAAAAAAABqAAAAAAAAagAAAAAAACEAAAAAAAAhAAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAGYAAAAAAAB8AAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAACIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB3AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAGYAAAAAAABuAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABuAAAAAAAAdwAAAAAAAG4AAAAAAAByAAAAAAAAcgAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAbgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAbgAAAAAAAHcAAAAAAABuAAAAAAAAcgAAAAAAAHIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAbgAAAAAAAHIAAAAAAAByAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABmAAAAAAAAZgAAAAAAAHcAAAAAAAB8AAAAAAAAdwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAA== + tiles: WwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGsAAAAAAAAWAAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABrAAAAAAAAFgAAAAAAAGsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAawAAAAAAABYAAAAAAABrAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAB8AAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAhAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHcAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAIQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACYAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAACEAAAAAAAAeAAAAAAAAHgAAAAAAAGoAAAAAAABqAAAAAAAAHgAAAAAAAB4AAAAAAAB8AAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAhAAAAAAAAHgAAAAAAACEAAAAAAABqAAAAAAAAagAAAAAAACEAAAAAAAAhAAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAGYAAAAAAAB8AAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAACIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB3AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAGYAAAAAAABuAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABuAAAAAAAAdwAAAAAAAG4AAAAAAAByAAAAAAAAcgAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAbgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAbgAAAAAAAHcAAAAAAABuAAAAAAAAcgAAAAAAAHIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAbgAAAAAAAHIAAAAAAAByAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHcAAAAAAAB8AAAAAAAAdwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAA== version: 7 0,-1: ind: 0,-1 @@ -171,7 +170,7 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAABOAAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAE4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAABOAAAAAAAAYAAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAAAeAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAeAAAAAAAAHgAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAAAAHgAAAAAAAB4AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACEAAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAZgAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA== + tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAABOAAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAE4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAACIAAAAAAAAdAAAAAAAAfAAAAAAAAE4AAAAAAABOAAAAAAAATgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAAAeAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAeAAAAAAAAHgAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAIQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAAAAHgAAAAAAAB4AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACEAAAAAAAAdAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAZgAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA== version: 7 0,-2: ind: 0,-2 @@ -207,7 +206,7 @@ entities: version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAFwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAfAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAFwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAABqAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAfAAAAAAAAA== version: 7 -2,0: ind: -2,0 @@ -223,7 +222,7 @@ entities: version: 7 -4,-1: ind: -4,-1 - tiles: MwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAB8AAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB8AAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAB4AAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAeAAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAZgAAAAAAAE8AAAAAAABmAAAAAAAAfAAAAAAAAGYAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAgAAAAAAAFsAAAAAAAB8AAAAAAAAeAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAIAAAAAAABbAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAgAAAAAAAAIAAAAAAABbAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + tiles: MwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAMwAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAB8AAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAQAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAMwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAB4AAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAeAAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAZgAAAAAAAE8AAAAAAABmAAAAAAAAfAAAAAAAAGYAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAAB8AAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAADMAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAAgAAAAAAAFsAAAAAAAB8AAAAAAAAeAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAAIAAAAAAABbAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAgAAAAAAAAIAAAAAAABbAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== version: 7 -5,0: ind: -5,0 @@ -275,7 +274,7 @@ entities: version: 7 3,0: ind: 3,0 - tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHwAAAAAAAAkAAAAAAAAIgAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAAFsAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAIgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACoAAAAAAABbAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIgAAAAAAACEAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAIgAAAAAAACYAAAAAAAAiAAAAAAAAJgAAAAAAACYAAAAAAAAqAAAAAAAAWwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACEAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACYAAAAAAAAqAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAhAAAAAAAAIQAAAAAAACIAAAAAAAAhAAAAAAAAIQAAAAAAACIAAAAAAAAmAAAAAAAAAgAAAAAAACoAAAAAAAAhAAAAAAAAIgAAAAAAACoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAAkAAAAAAAAIgAAAAAAACEAAAAAAAAmAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAJgAAAAAAACoAAAAAAAAmAAAAAAAAIQAAAAAAACYAAAAAAAAqAAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAJAAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAAAIQAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAhAAAAAAAAIgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAAAJgAAAAAAACoAAAAAAAAhAAAAAAAAJgAAAAAAACEAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACEAAAAAAAAiAAAAAAAAIQAAAAAAACYAAAAAAAA5AAAAAAAAIQAAAAAAACIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAmAAAAAAAAJAAAAAAAACYAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAgAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAACEAAAAAAABqAAAAAAAAagAAAAAAAHIAAAAAAAByAAAAAAAAcgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAiAAAAAAAAfAAAAAAAAGoAAAAAAAByAAAAAAAAcgAAAAAAAHIAAAAAAAByAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAewAAAAAAAHwAAAAAAAAtAAAAAAAAIQAAAAAAAHwAAAAAAABqAAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAcgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHwAAAAAAAAkAAAAAAAAIgAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAAFsAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAIgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACoAAAAAAABbAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAIgAAAAAAACEAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAIgAAAAAAACYAAAAAAAAiAAAAAAAAJgAAAAAAACYAAAAAAAAqAAAAAAAAWwAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACEAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACYAAAAAAAAqAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAhAAAAAAAAIQAAAAAAACIAAAAAAAAhAAAAAAAAIQAAAAAAACIAAAAAAAAmAAAAAAAAAgAAAAAAACoAAAAAAAAhAAAAAAAAIgAAAAAAACoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAAkAAAAAAAAIgAAAAAAACEAAAAAAAAmAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAJgAAAAAAACoAAAAAAAAmAAAAAAAAIQAAAAAAACYAAAAAAAAqAAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAJAAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAAAIQAAAAAAACYAAAAAAAAmAAAAAAAAKgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAhAAAAAAAAIgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAAAJgAAAAAAACoAAAAAAAAhAAAAAAAAJgAAAAAAACEAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACYAAAAAAAAhAAAAAAAAJgAAAAAAACEAAAAAAAAiAAAAAAAAIQAAAAAAACYAAAAAAAA5AAAAAAAAIQAAAAAAACIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAJgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAmAAAAAAAAJAAAAAAAACYAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAgAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAiAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAACIAAAAAAAAhAAAAAAAAIQAAAAAAAHIAAAAAAAByAAAAAAAAcgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAiAAAAAAAAIQAAAAAAACIAAAAAAAByAAAAAAAAcgAAAAAAAHIAAAAAAAByAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB8AAAAAAAAewAAAAAAAHwAAAAAAAAtAAAAAAAAIQAAAAAAACIAAAAAAAAiAAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAcgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAfAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,1: ind: 3,1 @@ -335,7 +334,7 @@ entities: version: 7 0,1: ind: 0,1 - tiles: bgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAPQAAAAAAAD0AAAAAAABuAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABMAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAAAsAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAGYAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAABmAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAG4AAAAAAABuAAAAAAAAeAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB8AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAADoAAAAAAAA6AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAVgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFYAAAAAAAB8AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHwAAAAAAABhAAAAAAAAYQAAAAAAAHIAAAAAAABvAAAAAAAAbwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABWAAAAAAAAfAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAB8AAAAAAAAYQAAAAAAAGEAAAAAAAB8AAAAAAAAbwAAAAAAAG8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAZgAAAAAAAHwAAAAAAAByAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAfAAAAAAAAA== + tiles: bgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAPQAAAAAAAD0AAAAAAABuAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABMAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAB8AAAAAAAAbgAAAAAAAG4AAAAAAAAsAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAGYAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAfAAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAABmAAAAAAAAbgAAAAAAAG4AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAG4AAAAAAABuAAAAAAAAeAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHwAAAAAAABuAAAAAAAAbgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB3AAAAAAAAdwAAAAAAAHcAAAAAAAB8AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAADoAAAAAAAA6AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAOgAAAAAAADoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAVgAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFYAAAAAAAB8AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHwAAAAAAABhAAAAAAAAYQAAAAAAAHIAAAAAAABvAAAAAAAAbwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABWAAAAAAAAfAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAB8AAAAAAAAYQAAAAAAAGEAAAAAAAB8AAAAAAAAbwAAAAAAAG8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAZgAAAAAAAHwAAAAAAAByAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHIAAAAAAAByAAAAAAAAfAAAAAAAAA== version: 7 1,1: ind: 1,1 @@ -347,7 +346,7 @@ entities: version: 7 2,1: ind: 2,1 - tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAVgAAAAAAAHwAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAIgAAAAAAACIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIgAAAAAAACEAAAAAAAAhAAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAGsAAAAAAAAhAAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfAAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAIQAAAAAAACEAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAHwAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAA5AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAfAAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfAAAAAAAACMAAAAAAAAjAAAAAAAAfAAAAAAAAHwAAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAAQAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB8AAAAAAAAewAAAAAAABAAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAKQAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAewAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAVgAAAAAAAHwAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAIgAAAAAAACIAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIgAAAAAAACEAAAAAAAAhAAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAagAAAAAAAHwAAAAAAABqAAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAGsAAAAAAAAhAAAAAAAAIQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfAAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAIQAAAAAAACEAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAHwAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAA5AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB8AAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAfAAAAAAAADUAAAAAAAA1AAAAAAAANQAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB8AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfAAAAAAAACMAAAAAAAAjAAAAAAAAfAAAAAAAAHwAAAAAAAA1AAAAAAAANQAAAAAAADUAAAAAAAAQAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB8AAAAAAAAewAAAAAAABAAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAGoAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAKQAAAAAAAHwAAAAAAAB8AAAAAAAAagAAAAAAAHwAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAAAAAB8AAAAAAAAagAAAAAAAGoAAAAAAAB8AAAAAAAAewAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAfAAAAAAAAHwAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHwAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 @@ -379,7 +378,7 @@ entities: version: 7 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAHwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAHwAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAB8AAAAAAAAFwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAHwAAAAAAAAXAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAfAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAB8AAAAAAAAFwAAAAAAAA== version: 7 -9,-1: ind: -9,-1 @@ -614,11 +613,7 @@ entities: 335: 14,-1 336: 10,-3 337: 10,-2 - 707: -65,36 708: -65,35 - 709: -65,34 - 710: -65,33 - 711: -65,32 712: -63,33 713: -63,34 714: -63,35 @@ -630,8 +625,6 @@ entities: 720: -68,42 721: -68,43 722: -68,44 - 723: -63,45 - 724: -62,45 725: -61,45 743: -87,35 744: -87,34 @@ -639,8 +632,6 @@ entities: 746: -87,32 1033: 14,-4 1034: 15,-4 - 6690: 43,-7 - 6691: 40,-8 6692: 44,-9 6693: 45,-9 7035: -9,-3 @@ -653,11 +644,25 @@ entities: 7042: -7,-5 7043: -8,-5 7044: -9,-5 - 7072: 42,-8 7093: -18,12 7924: 54,3 7925: 54,4 7926: 54,5 + 7953: -62,45 + 7954: -63,45 + 7984: -62,43 + 7985: -63,43 + 7986: -64,43 + 7987: -65,34 + 7988: -65,33 + 7989: -65,32 + 7990: -65,36 + 7991: -58,28 + 7992: -59,28 + 7993: -60,28 + 8641: 40,-8 + 8642: 42,-8 + 8643: 43,-7 - node: cleanable: True color: '#FFFFFFFF' @@ -666,15 +671,6 @@ entities: 1180: 17,-3 1181: 18,-3 1182: 19,-3 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: Bot - decals: - 802: -64,43 - 803: -63,43 - 804: -62,43 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -909,7 +905,6 @@ entities: id: BoxGreyscale decals: 4069: 27,7 - 6745: 42,-10 6748: 48,-9 6749: 45,-10 - node: @@ -1157,12 +1152,10 @@ entities: 2445: 39,-23 2462: 40,-21 2463: 40,-19 - 2481: 40,-14 5880: 35,-30 5967: 3,3 5968: 2,9 6730: 49,-5 - 6742: 42,-10 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw @@ -1211,7 +1204,6 @@ entities: 2446: 36,-23 2460: 39,-21 2464: 40,-19 - 2480: 40,-14 5882: 35,-28 5889: 34,-13 5964: 2,11 @@ -1298,8 +1290,6 @@ entities: 6703: 49,-8 6704: 49,-9 6723: 45,-6 - 7073: 42,-9 - 7074: 42,-8 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN @@ -1453,16 +1443,13 @@ entities: 6724: 39,-7 6725: 46,-5 6726: 49,-5 - 6732: 41,-10 6733: 43,-10 6734: 44,-10 6735: 45,-10 6736: 46,-10 6737: 47,-10 6738: 48,-10 - 6739: 43,-7 6740: 44,-7 - 6741: 42,-10 6743: 47,-5 6744: 48,-5 - node: @@ -1516,7 +1503,6 @@ entities: 5948: 0,9 5949: 2,10 5950: 3,4 - 6695: 40,-8 6696: 40,-9 6697: 39,-5 6698: 39,-4 @@ -1540,13 +1526,29 @@ entities: decals: 6860: 62,9 6861: 49,11 - 6862: 48,15 6902: 59,15 + 8048: 50,15 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: 1525: 21,23 + - node: + color: '#9C2020FF' + id: BrickTileWhiteCornerNe + decals: + 8649: 40,-14 + 8672: 43,-12 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerNe + decals: + 8132: -55,-6 + 8187: -59,-5 + 8216: -70,-10 + 8229: -70,-6 + 8237: -70,-16 + 8353: -59,1 - node: cleanable: True color: '#EFB34195' @@ -1591,6 +1593,15 @@ entities: id: BrickTileWhiteCornerNw decals: 1524: 16,23 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerNw + decals: + 8090: -57,-6 + 8182: -68,-5 + 8217: -72,-10 + 8238: -75,-16 + 8354: -68,1 - node: cleanable: True color: '#EFB34195' @@ -1631,6 +1642,7 @@ entities: decals: 6896: 59,11 6918: 48,17 + 8049: 50,13 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1641,6 +1653,21 @@ entities: id: BrickTileWhiteCornerSe decals: 6095: -10,6 + - node: + color: '#9C2020FF' + id: BrickTileWhiteCornerSe + decals: + 8673: 43,-13 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerSe + decals: + 8134: -55,-10 + 8155: -59,-18 + 8219: -70,-14 + 8231: -70,-8 + 8315: -59,-3 + 8335: -70,-4 - node: cleanable: True color: '#EFB34195' @@ -1686,6 +1713,21 @@ entities: id: BrickTileWhiteCornerSw decals: 1527: 16,21 + - node: + color: '#9C2020FF' + id: BrickTileWhiteCornerSw + decals: + 8674: 42,-13 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerSw + decals: + 8133: -57,-10 + 8162: -68,-18 + 8218: -72,-14 + 8230: -71,-8 + 8308: -57,-4 + 8322: -68,-3 - node: cleanable: True color: '#EFB34195' @@ -1745,7 +1787,6 @@ entities: 6089: -20,3 6823: 24,3 6825: 31,3 - 6877: 48,13 6879: 48,11 6881: 49,9 6887: 52,9 @@ -1762,6 +1803,14 @@ entities: 4029: -12,4 4037: -10,3 6099: -7,3 + - node: + color: '#9C2020FF' + id: BrickTileWhiteInnerNe + decals: + 8622: 39,-14 + 8650: 40,-15 + 8677: 42,-12 + 8678: 42,-10 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNe @@ -1772,6 +1821,23 @@ entities: 3937: -40,-12 3938: -18,-12 7007: -6,-12 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNe + decals: + 8145: -56,-6 + 8183: -60,-5 + 8184: -67,-5 + 8194: -59,-7 + 8227: -70,-11 + 8234: -71,-6 + 8235: -70,-7 + 8243: -74,-16 + 8244: -71,-16 + 8328: -63,-5 + 8370: -59,0 + 8371: -70,0 + 8592: -59,-12 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNe @@ -1841,7 +1907,6 @@ entities: 6863: 52,3 6886: 52,9 6909: 47,7 - 6911: 49,13 6933: 42,3 6935: 46,3 - node: @@ -1849,6 +1914,11 @@ entities: id: BrickTileWhiteInnerNw decals: 6098: -7,3 + - node: + color: '#9C2020FF' + id: BrickTileWhiteInnerNw + decals: + 8680: 41,-12 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNw @@ -1859,6 +1929,22 @@ entities: 3924: -21,-11 3939: -2,-12 7006: -6,-12 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNw + decals: + 8142: -57,-7 + 8144: -56,-6 + 8185: -67,-5 + 8186: -60,-5 + 8210: -68,-11 + 8211: -68,-7 + 8226: -72,-11 + 8241: -74,-16 + 8242: -71,-16 + 8327: -64,-5 + 8369: -57,0 + 8372: -68,0 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNw @@ -1934,6 +2020,14 @@ entities: 6919: 47,17 6940: 42,5 6972: 47,1 + 8051: 48,13 + - node: + color: '#9C2020FF' + id: BrickTileWhiteInnerSe + decals: + 8647: 39,-12 + 8651: 40,-15 + 8679: 42,-10 - node: color: '#9FED58FF' id: BrickTileWhiteInnerSe @@ -1948,6 +2042,25 @@ entities: id: BrickTileWhiteInnerSe decals: 7935: -24,13 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSe + decals: + 8158: -63,-18 + 8188: -59,-7 + 8202: -60,-18 + 8224: -71,-14 + 8225: -70,-11 + 8236: -70,-7 + 8310: -56,-4 + 8313: -59,-2 + 8316: -60,-3 + 8325: -67,-3 + 8326: -63,-3 + 8333: -70,-2 + 8338: -71,-4 + 8373: -70,3 + 8596: -59,-15 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe @@ -2019,10 +2132,15 @@ entities: decals: 6849: 60,1 6864: 52,8 - 6912: 49,13 6916: 46,18 6920: 47,17 6941: 42,5 + - node: + color: '#9C2020FF' + id: BrickTileWhiteInnerSw + decals: + 8676: 42,-12 + 8682: 41,-10 - node: color: '#9FED58FF' id: BrickTileWhiteInnerSw @@ -2038,6 +2156,25 @@ entities: decals: 7936: -24,13 7937: -22,13 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSw + decals: + 8141: -57,-7 + 8157: -61,-18 + 8195: -64,-18 + 8209: -68,-11 + 8212: -68,-7 + 8222: -72,-11 + 8223: -71,-14 + 8311: -56,-4 + 8312: -57,-2 + 8317: -60,-3 + 8323: -67,-3 + 8324: -64,-3 + 8331: -68,-2 + 8337: -71,-4 + 8368: -57,3 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw @@ -2147,8 +2284,6 @@ entities: 6079: -23,5 6080: -17,4 6081: -20,4 - 6876: 48,14 - 6878: 48,12 6880: 49,10 6897: 59,12 6903: 59,14 @@ -2156,6 +2291,7 @@ entities: 6914: 47,16 6922: 61,-1 6938: 42,4 + 8052: 48,12 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -2172,6 +2308,14 @@ entities: 4038: -10,4 6094: -12,5 6096: -7,4 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineE + decals: + 8619: 39,-13 + 8635: 42,-8 + 8670: 42,-9 + 8671: 42,-11 - node: color: '#9FED58FF' id: BrickTileWhiteLineE @@ -2211,6 +2355,33 @@ entities: decals: 7931: -24,12 7932: -24,11 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineE + decals: + 8136: -55,-9 + 8137: -55,-8 + 8138: -55,-7 + 8146: -59,-8 + 8147: -59,-6 + 8148: -59,-10 + 8149: -59,-11 + 8152: -59,-16 + 8153: -59,-17 + 8193: -59,-9 + 8199: -60,-21 + 8200: -60,-20 + 8201: -60,-19 + 8203: -63,-19 + 8204: -63,-20 + 8205: -63,-21 + 8220: -70,-13 + 8221: -70,-12 + 8245: -70,-17 + 8329: -63,-4 + 8334: -70,-3 + 8339: -70,2 + 8340: -70,1 - node: color: '#D381C9FF' id: BrickTileWhiteLineE @@ -2472,6 +2643,8 @@ entities: 6931: 44,3 6932: 45,3 6956: 48,3 + 8046: 48,15 + 8047: 49,15 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -2514,6 +2687,12 @@ entities: 6673: -3,3 6674: -2,3 6675: -1,3 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineN + decals: + 8646: 39,-12 + 8654: 40,-12 - node: color: '#9FED58FF' id: BrickTileWhiteLineN @@ -2557,6 +2736,29 @@ entities: 7005: -7,-12 7619: -8,-1 7620: -7,-1 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineN + decals: + 8174: -66,-5 + 8175: -65,-5 + 8178: -62,-5 + 8179: -61,-5 + 8228: -71,-10 + 8239: -73,-16 + 8240: -72,-16 + 8343: -58,0 + 8344: -69,0 + 8345: -66,1 + 8346: -67,1 + 8347: -65,1 + 8348: -63,1 + 8349: -64,1 + 8350: -62,1 + 8351: -61,1 + 8352: -60,1 + 8589: -57,-12 + 8593: -58,-12 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -2783,6 +2985,7 @@ entities: 6895: 58,11 6926: 51,1 6962: 48,1 + 8050: 49,13 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -2811,6 +3014,13 @@ entities: id: BrickTileWhiteLineS decals: 6091: 0,5 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineS + decals: + 8636: 43,-7 + 8658: 40,-12 + 8675: 41,-12 - node: color: '#9FED58FF' id: BrickTileWhiteLineS @@ -2848,6 +3058,38 @@ entities: 3900: -38,2 7010: -5,-10 7011: -4,-10 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineS + decals: + 8135: -56,-10 + 8156: -62,-18 + 8159: -65,-18 + 8160: -66,-18 + 8161: -67,-18 + 8307: -55,-4 + 8314: -58,-2 + 8318: -61,-3 + 8319: -62,-3 + 8320: -65,-3 + 8321: -66,-3 + 8332: -69,-2 + 8336: -72,-4 + 8355: -69,3 + 8356: -68,3 + 8357: -67,3 + 8358: -66,3 + 8359: -58,3 + 8360: -58,3 + 8361: -60,3 + 8362: -64,3 + 8363: -65,3 + 8364: -63,3 + 8365: -62,3 + 8366: -61,3 + 8367: -59,3 + 8594: -57,-15 + 8595: -58,-15 - node: color: '#D381C9FF' id: BrickTileWhiteLineS @@ -3073,7 +3315,6 @@ entities: 6869: 47,9 6870: 47,10 6871: 47,11 - 6872: 47,12 6873: 47,13 6874: 47,14 6875: 47,15 @@ -3082,6 +3323,7 @@ entities: 6913: 47,16 6923: 60,-1 6939: 42,4 + 8045: 47,12 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -3096,6 +3338,12 @@ entities: decals: 4030: -13,5 6097: -7,4 + - node: + color: '#9C2020FF' + id: BrickTileWhiteLineW + decals: + 8634: 40,-8 + 8681: 41,-11 - node: color: '#9FED58FF' id: BrickTileWhiteLineW @@ -3134,6 +3382,36 @@ entities: decals: 7933: -24,12 7934: -24,11 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineW + decals: + 8139: -57,-8 + 8163: -68,-17 + 8164: -68,-16 + 8165: -68,-15 + 8166: -68,-14 + 8167: -68,-13 + 8168: -68,-12 + 8169: -68,-10 + 8170: -68,-9 + 8172: -68,-6 + 8196: -64,-19 + 8197: -64,-20 + 8198: -64,-21 + 8206: -61,-19 + 8207: -61,-20 + 8208: -61,-21 + 8213: -57,-9 + 8214: -72,-12 + 8215: -72,-13 + 8232: -71,-7 + 8233: -71,-6 + 8306: -68,-8 + 8309: -57,-3 + 8330: -64,-4 + 8341: -57,2 + 8342: -57,1 - node: color: '#D381C9FF' id: BrickTileWhiteLineW @@ -3361,9 +3639,14 @@ entities: id: ConcreteTrimCornerNe decals: 2058: 28,-1 - 2083: 40,-12 2105: 38,-9 7542: 8,-5 + - node: + color: '#BC863FFF' + id: ConcreteTrimCornerNe + decals: + 8251: -55,-12 + 8291: -47,-10 - node: color: '#9C2020FF' id: ConcreteTrimCornerNw @@ -3372,6 +3655,12 @@ entities: 2038: 17,-5 2057: 25,-1 2097: 34,-6 + - node: + color: '#BC863FFF' + id: ConcreteTrimCornerNw + decals: + 8269: -53,-10 + 8278: -49,-16 - node: color: '#9C2020FF' id: ConcreteTrimCornerSe @@ -3380,6 +3669,13 @@ entities: 2060: 28,-7 2079: 34,-15 7539: 8,-3 + - node: + color: '#BC863FFF' + id: ConcreteTrimCornerSe + decals: + 8248: -55,-15 + 8249: -51,-18 + 8292: -47,-11 - node: color: '#9C2020FF' id: ConcreteTrimCornerSw @@ -3387,6 +3683,12 @@ entities: 2040: 17,-7 2059: 25,-7 2078: 30,-15 + - node: + color: '#BC863FFF' + id: ConcreteTrimCornerSw + decals: + 8258: -53,-18 + 8276: -49,-18 - node: color: '#9C2020FF' id: ConcreteTrimInnerNe @@ -3395,59 +3697,17 @@ entities: 2110: 37,-9 2111: 38,-12 - node: - color: '#A46106FF' + color: '#BC863FFF' id: ConcreteTrimInnerNe decals: - 3153: -71,-16 - 3154: -74,-16 - 3164: -71,-6 - 3165: -70,-7 - 3166: -63,-5 - 3167: -59,-7 - 3168: -56,-6 - 3169: -59,-9 - 3170: -55,-10 - 3171: -48,-13 - 3179: -55,-14 - 3180: -55,-17 - 3189: -70,-11 - 3278: -70,0 - 3279: -59,0 + 8287: -55,-14 + 8297: -48,-13 - node: color: '#D381C9FF' id: ConcreteTrimInnerNe decals: - 3304: -57,-13 - 3305: -56,-13 - 3306: -55,-13 - 3307: -52,-10 - 3308: -51,-10 - 3309: -50,-10 - 3310: -49,-10 - 3311: -48,-10 - 3312: -47,-10 - 3313: -53,-10 - 3314: -49,-16 3360: -48,-19 - 3361: -48,-17 - 3362: -48,-16 - 3363: -48,-14 - 3364: -48,-12 - 3365: -47,-11 - 3366: -55,-14 - 3367: -55,-15 - 3368: -55,-16 - 3369: -55,-17 - 3370: -55,-18 - 3378: -51,-18 - 3379: -51,-17 - 3380: -51,-16 - 3381: -51,-15 - 3382: -47,-18 - 3383: -48,-15 3389: -48,-19 - 3393: -47,-18 - 3394: -48,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe @@ -3460,56 +3720,18 @@ entities: 2071: 25,-2 2112: 34,-9 - node: - color: '#A46106FF' + color: '#BC863FFF' id: ConcreteTrimInnerNw decals: - 3152: -71,-16 - 3155: -74,-16 - 3156: -68,-7 - 3157: -57,-7 - 3158: -57,-9 - 3159: -53,-14 - 3160: -53,-17 - 3161: -48,-16 - 3162: -56,-6 - 3163: -64,-5 - 3188: -68,-11 - 3192: -72,-11 - 3276: -57,0 - 3277: -68,0 + 8283: -53,-17 + 8284: -53,-14 + 8299: -48,-16 - node: color: '#D381C9FF' id: ConcreteTrimInnerNw decals: - 3282: -53,-10 - 3283: -52,-10 - 3284: -51,-10 - 3285: -50,-10 - 3286: -49,-10 - 3287: -48,-10 - 3288: -47,-10 - 3289: -49,-16 - 3290: -53,-12 - 3291: -53,-13 - 3292: -53,-14 - 3293: -48,-16 - 3294: -53,-15 - 3295: -53,-16 - 3296: -53,-17 - 3297: -53,-18 - 3298: -57,-18 - 3299: -57,-17 - 3300: -57,-16 - 3301: -57,-15 - 3302: -57,-14 - 3303: -57,-13 - 3357: -49,-18 - 3358: -49,-17 3359: -48,-19 - 3371: -56,-13 - 3372: -55,-13 3388: -48,-19 - 3395: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw @@ -3521,59 +3743,18 @@ entities: decals: 2074: 23,-3 - node: - color: '#A46106FF' + color: '#BC863FFF' id: ConcreteTrimInnerSe decals: - 3151: -71,-14 - 3172: -48,-13 - 3177: -55,-14 - 3178: -55,-17 - 3181: -59,-9 - 3184: -59,-7 - 3185: -70,-7 - 3190: -70,-11 - 3193: -63,-18 - 3195: -60,-18 - 3229: -56,-4 - 3232: -59,-2 - 3233: -60,-3 - 3236: -63,-3 - 3237: -67,-3 - 3240: -70,-2 - 3243: -70,-4 - 3244: -71,-4 - 3281: -70,3 + 8281: -51,-14 + 8286: -55,-14 + 8293: -48,-11 + 8296: -48,-13 - node: color: '#D381C9FF' id: ConcreteTrimInnerSe decals: - 3335: -55,-19 - 3336: -55,-18 - 3337: -55,-17 - 3338: -55,-16 - 3339: -55,-15 - 3340: -55,-14 - 3341: -55,-13 - 3342: -51,-14 - 3343: -50,-14 - 3344: -49,-14 - 3345: -48,-14 - 3346: -48,-16 - 3347: -48,-17 - 3348: -48,-13 - 3349: -48,-12 - 3350: -47,-11 - 3351: -47,-10 - 3352: -51,-15 - 3353: -51,-16 - 3354: -51,-17 - 3355: -51,-18 - 3356: -47,-18 - 3376: -52,-18 - 3377: -53,-18 - 3384: -48,-15 3387: -48,-19 - 3390: -48,-18 - node: color: '#9C2020FF' id: ConcreteTrimInnerSw @@ -3581,58 +3762,18 @@ entities: 2073: 25,-3 2082: 30,-11 - node: - color: '#A46106FF' + color: '#BC863FFF' id: ConcreteTrimInnerSw decals: - 3150: -71,-14 - 3173: -48,-14 - 3174: -48,-18 - 3175: -53,-17 - 3176: -53,-14 - 3182: -57,-9 - 3183: -57,-7 - 3186: -68,-7 - 3187: -68,-11 - 3191: -72,-11 - 3194: -61,-18 - 3196: -64,-18 - 3228: -56,-4 - 3230: -57,-2 - 3234: -60,-3 - 3235: -64,-3 - 3238: -67,-3 - 3245: -71,-4 - 3280: -57,3 + 8282: -53,-17 + 8285: -53,-14 + 8298: -48,-14 + 8300: -48,-18 - node: color: '#D381C9FF' id: ConcreteTrimInnerSw decals: - 3315: -53,-12 - 3316: -53,-13 - 3317: -53,-14 - 3318: -53,-15 - 3319: -53,-16 - 3320: -53,-17 - 3321: -53,-18 - 3322: -52,-18 - 3323: -51,-18 - 3324: -49,-18 - 3325: -48,-18 - 3326: -49,-17 - 3327: -49,-16 - 3328: -57,-18 - 3329: -57,-17 - 3330: -57,-16 - 3331: -57,-15 - 3332: -57,-14 - 3333: -57,-13 - 3334: -57,-19 - 3373: -50,-14 - 3374: -49,-14 - 3375: -48,-14 - 3385: -48,-15 3386: -48,-19 - 3391: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw @@ -3655,8 +3796,6 @@ entities: 2090: 40,-18 2091: 40,-17 2092: 40,-16 - 2093: 40,-15 - 2094: 40,-13 2106: 38,-10 2107: 38,-11 2108: 37,-8 @@ -3664,62 +3803,25 @@ entities: color: '#A46106FF' id: ConcreteTrimLineE decals: - 3008: -59,-8 - 3009: -59,-18 - 3010: -59,-17 - 3011: -59,-15 - 3012: -59,-16 - 3013: -59,-14 - 3014: -59,-6 - 3015: -59,-5 - 3016: -70,-14 - 3017: -70,-13 - 3018: -70,-12 - 3019: -70,-10 - 3020: -55,-6 - 3021: -47,-10 - 3022: -47,-11 - 3023: -48,-12 - 3024: -48,-14 - 3025: -48,-16 - 3026: -48,-17 - 3027: -47,-18 3028: -48,-19 - 3029: -55,-18 - 3030: -55,-16 - 3031: -55,-15 - 3032: -55,-13 - 3033: -51,-18 - 3034: -51,-17 - 3035: -51,-16 - 3036: -51,-15 - 3044: -55,-19 3057: -56,-5 - 3060: -71,-5 - 3069: -59,-13 - 3070: -59,-12 - 3071: -59,-11 - 3072: -59,-10 - 3073: -70,-6 - 3074: -70,-8 - 3137: -55,-7 - 3138: -55,-8 - 3139: -55,-9 3148: -71,-15 - 3197: -63,-19 - 3198: -63,-20 - 3199: -63,-21 3200: -63,-22 - 3201: -60,-20 - 3202: -60,-21 3203: -60,-22 3204: -60,-19 - 3231: -59,-3 - 3241: -70,-3 - 3242: -70,-4 - 3258: -70,1 - 3259: -70,2 - 3275: -59,1 + - node: + color: '#BC863FFF' + id: ConcreteTrimLineE + decals: + 8250: -55,-13 + 8270: -51,-17 + 8271: -51,-16 + 8272: -51,-15 + 8279: -48,-16 + 8280: -48,-17 + 8294: -48,-12 + 8295: -48,-14 + 8301: -48,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE @@ -3740,7 +3842,6 @@ entities: 2056: 24,-2 2069: 26,-1 2070: 27,-1 - 2095: 39,-12 2096: 35,-6 2098: 32,-9 2099: 31,-9 @@ -3755,53 +3856,21 @@ entities: color: '#A46106FF' id: ConcreteTrimLineN decals: - 3086: -70,-6 - 3087: -66,-5 - 3088: -68,-5 - 3089: -65,-5 - 3090: -62,-5 - 3091: -61,-5 - 3092: -59,-5 - 3093: -57,-6 - 3094: -55,-6 - 3095: -53,-10 - 3096: -51,-10 - 3097: -52,-10 - 3098: -50,-10 - 3099: -49,-10 - 3100: -48,-10 - 3101: -47,-10 - 3102: -49,-16 - 3103: -54,-17 - 3104: -54,-14 - 3105: -57,-13 - 3106: -56,-13 - 3107: -55,-13 - 3108: -70,-10 - 3109: -71,-10 - 3110: -72,-10 - 3111: -70,-16 - 3112: -72,-16 - 3113: -73,-16 - 3114: -75,-16 3116: -69,-7 3141: -54,-10 3142: -58,-7 - 3145: -58,-9 3146: -69,-11 - 3246: -59,1 - 3247: -60,1 - 3248: -61,1 - 3249: -62,1 - 3250: -63,1 - 3251: -64,1 - 3252: -65,1 - 3253: -66,1 - 3254: -67,1 - 3255: -68,1 - 3257: -69,0 - 3274: -58,0 - 3392: -47,-18 + - node: + color: '#BC863FFF' + id: ConcreteTrimLineN + decals: + 8252: -56,-12 + 8264: -52,-10 + 8265: -51,-10 + 8266: -50,-10 + 8267: -49,-10 + 8268: -48,-10 + 8303: -54,-14 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN @@ -3829,53 +3898,18 @@ entities: id: ConcreteTrimLineS decals: 3115: -69,-7 - 3117: -70,-8 - 3118: -71,-8 - 3119: -70,-14 - 3120: -72,-14 - 3121: -68,-18 - 3122: -67,-18 - 3123: -66,-18 - 3124: -65,-18 - 3125: -62,-18 - 3126: -59,-18 - 3127: -53,-18 - 3128: -52,-18 - 3129: -51,-18 - 3130: -49,-18 - 3131: -47,-18 - 3132: -49,-14 - 3133: -50,-14 - 3134: -55,-11 - 3135: -56,-11 - 3136: -57,-11 3140: -54,-11 3143: -58,-7 - 3144: -58,-9 3147: -69,-11 - 3213: -72,-4 - 3214: -70,-4 - 3216: -59,-3 - 3217: -61,-3 - 3218: -62,-3 - 3219: -65,-3 - 3220: -66,-3 - 3221: -68,-3 - 3225: -58,-2 - 3226: -55,-4 - 3227: -57,-4 - 3260: -69,3 - 3261: -68,3 - 3262: -67,3 - 3263: -66,3 - 3264: -65,3 - 3265: -64,3 - 3266: -63,3 - 3267: -62,3 - 3268: -60,3 - 3269: -61,3 - 3270: -59,3 - 3271: -58,3 + - node: + color: '#BC863FFF' + id: ConcreteTrimLineS + decals: + 8256: -56,-15 + 8257: -52,-18 + 8273: -49,-14 + 8274: -50,-14 + 8302: -54,-14 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS @@ -3906,61 +3940,21 @@ entities: color: '#A46106FF' id: ConcreteTrimLineW decals: - 3037: -57,-13 - 3038: -57,-14 - 3039: -57,-15 - 3040: -57,-16 - 3041: -57,-18 - 3042: -57,-17 - 3043: -57,-19 - 3045: -49,-18 - 3046: -49,-17 - 3047: -49,-16 - 3048: -53,-18 - 3049: -53,-16 - 3050: -53,-15 - 3051: -53,-12 - 3052: -53,-13 - 3053: -57,-11 - 3054: -57,-10 - 3055: -57,-8 - 3056: -57,-6 3058: -56,-5 - 3059: -71,-5 - 3061: -68,-18 - 3062: -68,-17 - 3063: -68,-16 - 3064: -68,-15 - 3065: -68,-14 - 3066: -68,-13 - 3067: -68,-12 - 3068: -68,-10 - 3075: -71,-6 - 3076: -71,-7 - 3077: -71,-8 - 3078: -68,-6 - 3079: -68,-5 - 3080: -68,-9 - 3081: -68,-8 - 3082: -72,-10 - 3083: -72,-12 - 3084: -72,-13 - 3085: -72,-14 3149: -71,-15 3205: -64,-19 - 3206: -64,-20 - 3207: -64,-21 3208: -64,-22 - 3209: -61,-19 - 3210: -61,-20 - 3211: -61,-21 3212: -61,-22 - 3222: -68,-3 - 3223: -57,-4 - 3224: -57,-3 - 3256: -68,1 - 3272: -57,2 - 3273: -57,1 + - node: + color: '#BC863FFF' + id: ConcreteTrimLineW + decals: + 8259: -53,-16 + 8260: -53,-15 + 8261: -53,-13 + 8262: -53,-12 + 8263: -53,-11 + 8277: -49,-17 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW @@ -3969,6 +3963,11 @@ entities: 1866: 50,-25 1867: 50,-28 1868: 50,-29 + - node: + color: '#BC863FFF' + id: Delivery + decals: + 8599: -55,-16 - node: color: '#D4D4D4FF' id: Delivery @@ -4061,6 +4060,7 @@ entities: 7913: -112,41 7914: -112,43 7915: -114,43 + 8304: -47,-18 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4586,6 +4586,120 @@ entities: 7755: -52,15 7756: -51,15 7757: -49,15 + 8403: -68,-15 + 8404: -67,-15 + 8405: -68,-13 + 8406: -68,-11 + 8407: -68,-12 + 8408: -68,-11 + 8409: -68,-9 + 8410: -68,-7 + 8411: -68,-5 + 8412: -66,-5 + 8413: -64,-5 + 8414: -62,-5 + 8415: -61,-5 + 8416: -59,-5 + 8417: -59,-6 + 8418: -59,-9 + 8419: -59,-9 + 8423: -59,-18 + 8424: -61,-18 + 8425: -61,-17 + 8426: -64,-18 + 8427: -63,-18 + 8428: -66,-17 + 8429: -68,-18 + 8430: -68,-18 + 8431: -68,-16 + 8432: -70,-13 + 8433: -71,-14 + 8434: -72,-14 + 8435: -72,-14 + 8436: -72,-11 + 8437: -72,-10 + 8438: -70,-10 + 8439: -70,-8 + 8440: -71,-8 + 8441: -71,-6 + 8442: -70,-3 + 8443: -70,-4 + 8444: -72,-4 + 8445: -70,0 + 8446: -67,-1 + 8447: -69,-2 + 8448: -66,-3 + 8449: -67,-3 + 8450: -63,-3 + 8451: -60,-3 + 8452: -59,-3 + 8453: -56,-4 + 8454: -57,-4 + 8455: -56,-2 + 8456: -60,3 + 8457: -62,3 + 8458: -63,3 + 8459: -65,3 + 8460: -65,3 + 8461: -69,3 + 8462: -71,2 + 8463: -72,1 + 8464: -70,-1 + 8465: -69,-1 + 8466: -63,-1 + 8467: -64,0 + 8468: -66,1 + 8469: -68,1 + 8506: -56,-12 + 8509: -56,-15 + 8510: -53,-18 + 8511: -52,-18 + 8512: -52,-17 + 8513: -53,-16 + 8514: -53,-15 + 8515: -53,-15 + 8516: -51,-13 + 8517: -51,-12 + 8518: -52,-11 + 8519: -53,-11 + 8520: -52,-14 + 8521: -51,-14 + 8522: -49,-14 + 8523: -48,-14 + 8524: -48,-17 + 8525: -49,-18 + 8526: -49,-18 + 8527: -48,-18 + 8562: -54,-14 + 8563: -54,-14 + 8564: -55,-18 + 8565: -55,-18 + 8566: -55,-17 + 8567: -56,-17 + 8568: -56,-17 + 8569: -56,-17 + 8570: -56,-18 + 8571: -57,-18 + 8572: -57,-17 + 8600: -57,-12 + 8601: -58,-12 + 8602: -59,-15 + 8603: -57,-15 + 8604: -58,-15 + 8605: -55,-14 + 8606: -55,-15 + 8607: -59,-13 + 8608: -59,-12 + 8609: -58,-14 + 8610: -57,-14 + 8662: 40,-12 + 8663: 40,-14 + 8683: 42,-13 + 8684: 41,-12 + 8685: 43,-13 + 8686: 43,-13 + 8687: 41,-11 + 8688: 42,-10 - node: color: '#00AC887F' id: DirtHeavy @@ -4686,24 +4800,14 @@ entities: 209: -62,0 210: -61,-2 211: -63,0 - 212: -70,-3 - 213: -71,-4 - 214: -70,-4 215: -71,2 - 216: -67,3 217: -68,4 218: -66,5 219: -63,4 - 220: -59,3 221: -50,3 222: -52,4 223: -56,2 - 224: -57,0 225: -56,-2 - 226: -56,-4 - 227: -57,-4 - 228: -57,-2 - 229: -59,-2 230: -60,0 402: -111,3 429: -50,21 @@ -4912,10 +5016,7 @@ entities: 5117: -55,-3 5118: -56,-1 5119: -57,-1 - 5120: -57,-2 5121: -63,0 - 5122: -65,1 - 5123: -63,-3 5124: -65,-2 5125: -67,-2 5126: -66,0 @@ -4934,56 +5035,25 @@ entities: 5139: -66,-17 5140: -64,-15 5141: -61,-16 - 5142: -61,-18 5143: -65,-16 - 5144: -68,-15 - 5145: -68,-13 5146: -71,-11 5147: -71,-13 5148: -71,-13 - 5149: -70,-11 - 5150: -70,-13 - 5151: -71,-14 - 5152: -55,-17 - 5153: -53,-14 - 5154: -50,-14 5155: -49,-13 5156: -51,-13 5157: -52,-12 - 5158: -51,-14 - 5159: -49,-14 5160: -52,-15 5161: -52,-17 - 5162: -53,-16 5163: -52,-13 - 5164: -53,-11 - 5165: -49,-14 5166: -50,-11 5167: -50,-11 5168: -50,-11 - 5169: -48,-11 - 5170: -49,-10 5171: -49,-12 - 5172: -48,-12 5173: -48,-19 - 5174: -48,-17 - 5175: -49,-17 - 5176: -49,-16 - 5177: -48,-18 - 5178: -48,-18 - 5179: -52,-14 - 5180: -53,-13 5181: -56,-9 - 5182: -57,-8 - 5183: -56,-10 - 5184: -55,-11 - 5185: -55,-7 - 5186: -56,-7 5187: -56,-9 - 5188: -56,-10 5189: -61,-8 5190: -60,-8 - 5191: -59,-7 5192: -46,5 5193: -48,5 5194: -51,5 @@ -5310,7 +5380,6 @@ entities: 5545: 21,-7 5546: 24,-7 5547: 43,-15 - 5548: 43,-13 5549: 44,-15 5550: 43,-16 5551: 49,-15 @@ -5323,7 +5392,6 @@ entities: 5558: 51,-14 5559: 48,-12 5560: 45,-12 - 5561: 43,-12 5562: 42,-15 5563: 42,-16 5564: 43,-16 @@ -5440,6 +5508,46 @@ entities: 7763: -47,14 7764: -47,14 7779: -65,15 + 8470: -60,1 + 8471: -60,1 + 8499: -56,-15 + 8500: -56,-15 + 8528: -51,-16 + 8529: -51,-16 + 8530: -53,-15 + 8531: -53,-14 + 8532: -53,-14 + 8533: -53,-13 + 8534: -50,-12 + 8535: -53,-11 + 8536: -52,-10 + 8537: -49,-10 + 8538: -48,-10 + 8539: -52,-18 + 8540: -53,-18 + 8541: -51,-18 + 8542: -48,-17 + 8543: -49,-18 + 8544: -49,-18 + 8576: -57,-18 + 8577: -57,-18 + 8578: -57,-18 + 8579: -57,-17 + 8580: -55,-17 + 8581: -55,-18 + 8582: -52,-16 + 8583: -53,-17 + 8664: 40,-12 + 8665: 39,-13 + 8689: 42,-12 + 8690: 42,-12 + 8691: 42,-13 + 8692: 43,-12 + 8693: 41,-12 + 8694: 42,-11 + 8695: 42,-10 + 8696: 41,-9 + 8697: 41,-10 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5683,6 +5791,18 @@ entities: 7776: -64,15 7777: -65,16 7778: -65,16 + 8472: -67,3 + 8473: -68,1 + 8474: -68,1 + 8545: -52,-13 + 8546: -50,-12 + 8547: -50,-12 + 8548: -52,-16 + 8549: -52,-17 + 8550: -53,-12 + 8611: -58,-13 + 8612: -57,-13 + 8613: -57,-13 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5752,7 +5872,6 @@ entities: 583: -61,35 585: -61,30 586: -66,26 - 589: -65,34 591: -60,40 595: -61,44 597: -57,34 @@ -5824,15 +5943,12 @@ entities: 236: -51,3 237: -53,4 238: -57,4 - 239: -64,3 - 240: -65,3 241: -69,4 242: -72,4 243: -77,3 244: -78,3 245: -76,4 246: -72,4 - 247: -70,1 248: -71,-3 249: -68,-1 250: -66,-2 @@ -5845,12 +5961,8 @@ entities: 257: -61,-1 258: -60,0 259: -63,0 - 260: -64,3 261: -65,5 262: -64,5 - 263: -70,3 - 264: -70,3 - 265: -69,3 266: -70,4 267: -71,3 268: -74,4 @@ -5867,7 +5979,6 @@ entities: 279: -56,4 280: -58,4 281: -57,4 - 282: -57,3 283: -55,3 284: -54,5 285: -53,5 @@ -6245,6 +6356,49 @@ entities: 7748: -58,15 7749: -59,14 7751: -60,12 + 8475: -65,1 + 8476: -65,1 + 8477: -62,1 + 8478: -62,1 + 8479: -65,-3 + 8480: -63,-3 + 8481: -70,-7 + 8482: -70,-4 + 8483: -70,-4 + 8484: -69,0 + 8485: -56,-4 + 8486: -56,-7 + 8487: -56,-7 + 8488: -55,-7 + 8489: -55,-7 + 8490: -55,-7 + 8491: -55,-10 + 8492: -59,-7 + 8493: -60,-5 + 8494: -63,-5 + 8495: -55,-15 + 8496: -56,-15 + 8551: -49,-18 + 8552: -49,-18 + 8553: -49,-14 + 8554: -50,-14 + 8555: -50,-14 + 8556: -50,-14 + 8557: -54,-14 + 8558: -54,-14 + 8559: -53,-14 + 8573: -56,-18 + 8574: -56,-18 + 8575: -57,-17 + 8614: -59,-13 + 8615: -58,-13 + 8616: -58,-15 + 8617: -58,-15 + 8618: -57,-15 + 8698: 40,-12 + 8699: 42,-12 + 8700: 41,-11 + 8701: 41,-11 - node: cleanable: True zIndex: 431 @@ -6276,7 +6430,6 @@ entities: 850: -67,34 851: -63,39 852: -65,41 - 853: -62,43 854: -64,39 855: -63,41 - node: @@ -6580,8 +6733,6 @@ entities: 6794: 45,-3 6795: 42,-3 6796: 40,-3 - 6797: 42,-10 - 6798: 41,-8 7217: -9,-32 7245: -18,-33 7268: -16,-31 @@ -6620,6 +6771,14 @@ entities: 7726: -55,13 7750: -58,13 7753: -59,13 + 8501: -56,-13 + 8502: -55,-12 + 8503: -55,-12 + 8584: -53,-12 + 8585: -53,-12 + 8586: -47,-18 + 8587: -47,-18 + 8588: -55,-10 - node: cleanable: True zIndex: 431 @@ -6784,9 +6943,6 @@ entities: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 48: -64,-4 - 49: -63,-4 - 50: -67,-4 51: -60,-4 - node: color: '#FFFFFFFF' @@ -7140,7 +7296,6 @@ entities: 309: 12,-1 310: 13,-1 311: 14,-1 - 1720: 44,-12 1721: 45,-12 1722: 46,-12 1723: 47,-12 @@ -7149,7 +7304,6 @@ entities: 1726: 50,-12 1727: 51,-12 1728: 52,-12 - 2032: 43,-12 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -7239,11 +7393,6 @@ entities: 6029: -4,7 6031: -4,6 6032: -4,5 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 47: -53,-15 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -7260,7 +7409,6 @@ entities: 1739: 42,-16 1740: 42,-15 1741: 42,-14 - 2031: 42,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -7325,7 +7473,6 @@ entities: id: LoadingArea decals: 33: -64,-17 - 5785: -89,45 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -7348,6 +7495,7 @@ entities: id: LoadingArea decals: 25: -2,-34 + 7994: -89,45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -7397,7 +7545,6 @@ entities: id: MiniTileDarkCornerNw decals: 1807: 45,-14 - 2029: 43,-13 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe @@ -7431,6 +7578,11 @@ entities: id: MiniTileDarkInnerSw decals: 1337: -6,13 + - node: + color: '#D4D4D496' + id: MiniTileDarkLineE + decals: + 7980: -61,42 - node: color: '#E6E6E6FF' id: MiniTileDarkLineE @@ -7497,11 +7649,6 @@ entities: 4469: -49,4 4479: -54,4 4488: -59,4 - 4499: -57,0 - 4500: -57,1 - 4501: -57,2 - 4502: -57,-3 - 4503: -57,-2 4514: -62,-1 4528: -72,-1 4532: -72,-3 @@ -7547,7 +7694,6 @@ entities: 4716: -67,27 4723: -61,44 4724: -61,43 - 4725: -61,42 4726: -61,41 4733: -62,39 4734: -62,38 @@ -7591,6 +7737,32 @@ entities: 6557: 35,2 6567: 42,2 7621: -54,15 + 7965: -61,42 + 7995: -86,21 + 7996: -86,22 + 7997: -86,23 + 7998: -86,24 + 7999: -86,26 + 8000: -86,27 + 8001: -86,28 + 8002: -86,29 + 8003: -86,31 + 8004: -86,32 + 8005: -86,33 + 8006: -86,34 + 8007: -86,36 + 8008: -86,37 + 8009: -86,38 + 8010: -86,39 + 8011: -86,41 + 8012: -86,42 + 8013: -86,43 + 8014: -86,44 + 8377: -57,0 + 8378: -57,1 + 8379: -57,2 + 8400: -57,-3 + 8401: -57,-2 - node: cleanable: True zIndex: 431 @@ -7624,6 +7796,13 @@ entities: decals: 1327: 0,13 1328: 1,13 + - node: + color: '#D4D4D496' + id: MiniTileDarkLineN + decals: + 7981: -62,43 + 7982: -63,43 + 7983: -64,43 - node: color: '#E6E6E6FF' id: MiniTileDarkLineN @@ -7733,30 +7912,14 @@ entities: 4473: -52,3 4474: -53,3 4480: -55,3 - 4481: -57,3 4485: -56,3 - 4486: -58,3 4497: -56,-1 - 4504: -56,-4 - 4505: -58,-2 - 4506: -59,-2 4507: -60,-2 4508: -61,-2 4516: -63,-2 4517: -64,-2 4518: -65,-2 - 4527: -70,-2 4529: -71,-2 - 4531: -71,-4 - 4535: -60,3 - 4536: -61,3 - 4537: -62,3 - 4538: -63,3 - 4549: -68,3 - 4550: -67,3 - 4551: -65,3 - 4552: -66,3 - 4558: -70,3 4559: -71,3 4560: -72,3 4561: -73,3 @@ -7801,9 +7964,6 @@ entities: 4760: -58,28 4761: -60,28 4762: -59,28 - 4763: -62,43 - 4764: -63,43 - 4765: -64,43 4773: -66,-2 4778: -82,12 4785: -57,20 @@ -7819,7 +7979,6 @@ entities: 1788: 47,-13 1789: 46,-13 1790: 45,-13 - 1791: 44,-13 1816: 46,-14 1817: 47,-14 1818: 48,-14 @@ -7837,6 +7996,30 @@ entities: 7781: -69,-2 7782: -68,-2 7783: -71,0 + 7966: -62,43 + 7967: -63,43 + 7968: -64,43 + 8015: -85,20 + 8016: -85,25 + 8017: -85,30 + 8018: -85,35 + 8019: -85,40 + 8380: -57,3 + 8381: -58,3 + 8382: -60,3 + 8383: -61,3 + 8384: -62,3 + 8385: -63,3 + 8386: -65,3 + 8387: -66,3 + 8388: -67,3 + 8389: -68,3 + 8390: -70,3 + 8391: -70,-2 + 8397: -58,-2 + 8398: -59,-2 + 8399: -56,-4 + 8402: -71,-4 - node: cleanable: True zIndex: 431 @@ -7962,16 +8145,11 @@ entities: 4487: -58,5 4493: -56,3 4498: -56,-1 - 4509: -58,0 - 4510: -59,0 4511: -60,0 4512: -61,0 4519: -63,0 4520: -64,0 4521: -65,0 - 4522: -68,0 - 4523: -69,0 - 4524: -70,0 4533: -71,-2 4534: -71,5 4539: -60,5 @@ -8011,7 +8189,6 @@ entities: 4676: -60,26 4677: -59,26 4678: -62,26 - 4679: -66,45 4699: -66,40 4700: -66,35 4713: -66,30 @@ -8024,8 +8201,6 @@ entities: 4755: -59,30 4756: -58,30 4757: -57,30 - 4768: -63,45 - 4769: -62,45 4770: -64,45 4774: -66,0 4775: -81,10 @@ -8073,6 +8248,19 @@ entities: 7780: -71,0 7784: -66,5 7785: -67,5 + 7947: -66,45 + 7948: -62,45 + 7949: -63,45 + 8020: -85,45 + 8021: -85,40 + 8022: -85,35 + 8023: -85,30 + 8024: -85,25 + 8392: -70,0 + 8393: -69,0 + 8394: -68,0 + 8395: -59,0 + 8396: -58,0 - node: cleanable: True zIndex: 431 @@ -8084,6 +8272,16 @@ entities: 943: -85,35 944: -85,40 945: -85,45 + - node: + color: '#D4D4D428' + id: MiniTileDarkLineW + decals: + 7973: -65,32 + 7974: -65,33 + 7975: -65,34 + 7976: -65,36 + 7977: -65,37 + 7978: -65,38 - node: color: '#E6E6E6FF' id: MiniTileDarkLineW @@ -8156,13 +8354,10 @@ entities: 4496: -55,-2 4513: -57,-1 4515: -62,-1 - 4530: -70,-3 4543: -59,4 4546: -64,4 4553: -69,4 4564: -74,4 - 4573: -70,2 - 4574: -70,1 4579: -67,9 4587: -63,9 4603: -91,-2 @@ -8191,10 +8386,6 @@ entities: 4694: -65,38 4695: -65,37 4696: -65,37 - 4697: -65,36 - 4701: -65,34 - 4702: -65,33 - 4703: -65,32 4704: -65,31 4710: -65,29 4711: -65,28 @@ -8244,6 +8435,33 @@ entities: 6549: 47,2 6566: 40,2 7626: -62,15 + 7969: -65,36 + 7970: -65,32 + 7971: -65,33 + 7972: -65,34 + 8025: -84,21 + 8026: -84,22 + 8027: -84,23 + 8028: -84,24 + 8029: -84,26 + 8030: -84,27 + 8031: -84,28 + 8032: -84,29 + 8033: -84,31 + 8034: -84,32 + 8035: -84,33 + 8036: -84,34 + 8037: -84,36 + 8038: -84,37 + 8039: -84,38 + 8040: -84,39 + 8041: -84,41 + 8042: -84,42 + 8043: -84,43 + 8044: -84,44 + 8374: -70,1 + 8375: -70,2 + 8376: -70,-3 - node: cleanable: True zIndex: 431 @@ -8592,6 +8810,11 @@ entities: id: MiniTileSteelLineE decals: 1390: -4,12 + - node: + color: '#D4D4D428' + id: MiniTileSteelLineE + decals: + 7979: -61,42 - node: color: '#52B4E9D8' id: MiniTileSteelLineN @@ -9374,6 +9597,12 @@ entities: 5996: -18,14 5997: -18,13 5998: -18,13 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 8648: 39.263233,-12.000237 - node: color: '#FFFFFFFF' id: StandClear @@ -9404,7 +9633,6 @@ entities: decals: 318: 10,-1 319: 10,-1 - 2030: 42,-12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -9633,15 +9861,6 @@ entities: 7799: -112,40 7800: -113,40 7801: -114,40 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnLineS - decals: - 799: -67,45 - 800: -66,45 - 801: -65,45 - node: color: '#FFFFFFFF' id: WarnLineS @@ -9678,6 +9897,9 @@ entities: 4050: -88,45 5751: -17,-19 7833: -121,44 + 7944: -65,45 + 7945: -66,45 + 7946: -67,45 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -9826,7 +10048,6 @@ entities: 39: -73,-17 40: -72,-17 41: -71,-17 - 42: -70,-17 1933: 48,-25 1935: 47,-25 3396: -119,-13 @@ -10466,8 +10687,7 @@ entities: 3,-2: 0: 4095 3,-5: - 0: 37119 - 2: 16384 + 0: 53503 4,-4: 0: 56768 4,-3: @@ -10513,21 +10733,18 @@ entities: 8,2: 0: 61815 8,3: - 0: 7628 - 2: 2 + 0: 7630 4,-2: - 3: 224 - 0: 60928 + 0: 61152 4,-5: 0: 58034 5,-3: 0: 65524 5,-2: - 3: 16 - 0: 65504 + 0: 65520 5,-5: 0: 62976 - 4: 130 + 2: 130 5,-4: 0: 26208 5,-1: @@ -10538,7 +10755,7 @@ entities: 0: 65522 6,-5: 0: 61440 - 4: 49 + 2: 49 6,-2: 0: 61164 7,-4: @@ -10563,22 +10780,22 @@ entities: 0: 65520 9,1: 0: 817 - 4: 32768 + 2: 32768 9,2: 0: 12339 - 4: 32896 + 2: 32896 9,3: 0: 61235 - 4: 8 + 2: 8 9,-1: 0: 7099 10,0: 0: 65521 10,3: - 4: 15 + 2: 15 0: 65280 10,1: - 4: 16 + 2: 16 1: 57344 0: 64 10,2: @@ -10586,13 +10803,13 @@ entities: 11,0: 0: 65522 11,1: - 4: 8208 + 2: 8208 0: 34944 11,3: - 4: 3 + 2: 3 0: 64392 11,2: - 4: 8224 + 2: 8224 0: 34952 12,0: 0: 61936 @@ -10601,12 +10818,12 @@ entities: 12,2: 0: 46079 12,3: - 0: 23921 + 0: 32625 11,4: 0: 57304 8,-5: 0: 63496 - 4: 34 + 2: 34 9,-4: 0: 64764 9,-3: @@ -10624,11 +10841,14 @@ entities: 10,-1: 0: 4095 10,-5: - 0: 53745 + 0: 4593 + 3: 49152 11,-4: - 0: 65535 + 0: 57343 + 4: 8192 11,-3: - 0: 65295 + 0: 65293 + 4: 2 11,-2: 0: 62392 11,-1: @@ -10662,88 +10882,86 @@ entities: 1,-6: 0: 56796 1,-9: - 4: 27135 + 2: 27135 2,-8: - 4: 59807 + 2: 59807 2,-6: 0: 4368 - 4: 19592 + 2: 19592 2,-9: - 4: 7952 + 2: 7952 2,-7: - 4: 44680 + 2: 44680 3,-8: - 4: 62178 + 2: 62178 3,-7: - 4: 13026 + 2: 13026 3,-6: 0: 3968 - 4: 2 + 2: 2 3,-9: - 4: 58338 + 2: 58338 4,-8: - 4: 47288 + 2: 47288 4,-7: - 4: 64184 + 2: 64184 4,-6: 0: 9008 - 4: 32776 + 2: 32776 0,-12: 0: 30464 - 4: 136 + 2: 136 -1,-12: 0: 34816 - 5: 8736 - 4: 8 + 2: 8 0,-11: 0: 30471 -1,-11: 0: 65288 - 5: 2 0,-10: 0: 119 - 4: 43008 + 2: 43008 -1,-10: 0: 58623 0,-9: - 4: 2606 + 2: 2606 -1,-9: 0: 20207 0,-13: - 4: 64240 + 2: 64240 1,-12: - 4: 43770 + 2: 43770 1,-11: - 4: 43770 + 2: 43770 1,-10: - 4: 43770 + 2: 43770 1,-13: - 4: 47344 + 2: 47344 2,-12: - 4: 61440 + 2: 61440 2,-11: - 4: 61440 + 2: 61440 2,-10: - 4: 61680 + 2: 61680 3,-12: - 4: 61440 + 2: 61440 3,-11: - 4: 62194 + 2: 62194 3,-10: - 4: 62194 + 2: 62194 4,-12: - 4: 61440 + 2: 61440 4,-11: - 4: 47290 + 2: 47290 4,-10: - 4: 47288 + 2: 47288 4,-9: - 4: 47288 + 2: 47288 -4,-8: 0: 35835 -4,-9: 0: 48008 - 4: 33 + 2: 33 -5,-8: 0: 4095 -4,-7: @@ -10761,8 +10979,7 @@ entities: -3,-7: 0: 1821 -3,-6: - 0: 52477 - 2: 256 + 0: 52733 -3,-9: 0: 53623 -2,-8: @@ -10775,29 +10992,29 @@ entities: 0: 61440 1: 255 -8,-8: - 4: 30719 + 2: 30719 -8,-9: - 4: 61440 + 2: 61440 -8,-7: - 4: 30591 + 2: 30591 -8,-6: - 4: 62847 + 2: 62847 -9,-6: - 4: 62960 + 2: 62960 -8,-5: - 4: 13 + 2: 13 0: 65280 -9,-5: 0: 65280 - 4: 1 + 2: 1 -8,-4: 0: 65295 -7,-8: - 4: 4607 + 2: 4607 -7,-5: 0: 65518 -7,-9: - 4: 62574 + 2: 62574 -7,-7: 0: 61070 -7,-6: @@ -10805,21 +11022,21 @@ entities: -7,-4: 0: 65295 -6,-8: - 4: 305 + 2: 305 0: 2184 -6,-7: 0: 3979 -6,-5: 0: 65262 -6,-9: - 4: 24494 + 2: 24494 -6,-6: 0: 57574 -6,-4: 0: 65326 -5,-9: 0: 60928 - 4: 1 + 2: 17 -9,-4: 0: 65392 -8,-3: @@ -10849,9 +11066,9 @@ entities: -6,-1: 0: 65535 5,-6: - 4: 61713 + 2: 61713 6,-6: - 4: 4096 + 2: 4096 -4,-12: 0: 63739 -4,-13: @@ -10859,14 +11076,14 @@ entities: 1: 136 -4,-11: 0: 251 - 4: 28672 + 2: 28672 -5,-11: - 4: 8017 + 2: 8017 -4,-10: - 4: 5189 + 2: 5189 0: 32768 -5,-10: - 4: 62847 + 2: 62847 -3,-12: 0: 30583 -3,-11: @@ -10878,21 +11095,21 @@ entities: 1: 119 -2,-12: 0: 65280 - 4: 4 + 2: 4 -2,-11: 0: 65295 -2,-10: 0: 255 1: 61440 -2,-13: - 4: 65012 + 2: 65012 -1,-13: - 4: 64243 + 2: 64243 -12,-4: 0: 64989 -12,-5: 0: 39696 - 4: 15 + 2: 15 -13,-4: 0: 65339 -12,-3: @@ -10919,7 +11136,7 @@ entities: 0: 64973 -11,-5: 0: 65280 - 4: 7 + 2: 7 -11,0: 0: 64733 -10,-4: @@ -10932,22 +11149,22 @@ entities: 0: 56661 -10,-5: 0: 65280 - 4: 1 + 2: 1 -10,0: 0: 64797 -9,0: 0: 65287 -12,-6: - 4: 65520 + 2: 65520 -13,-6: - 4: 65408 + 2: 65408 -13,-5: - 4: 15 + 2: 15 0: 47872 -11,-6: - 4: 63472 + 2: 63472 -10,-6: - 4: 62960 + 2: 62960 -8,1: 0: 29567 -9,1: @@ -10979,7 +11196,7 @@ entities: -6,2: 0: 20667 -6,3: - 0: 2036 + 0: 2037 -6,4: 0: 3007 -5,4: @@ -11081,23 +11298,23 @@ entities: -17,-1: 0: 65520 -15,-4: - 0: 48059 + 0: 48115 -15,-3: - 0: 64435 + 0: 47935 -15,-2: 0: 15355 -15,-5: 0: 47873 - 4: 12 + 2: 12 -14,-4: - 0: 48059 + 0: 49080 -14,-3: - 0: 16376 + 0: 15243 -14,-2: 0: 37819 -14,-5: - 0: 47872 - 4: 15 + 0: 64256 + 2: 15 -20,0: 0: 59647 -20,-1: @@ -11135,7 +11352,7 @@ entities: -18,1: 0: 53503 -18,2: - 0: 4093 + 0: 3583 -18,3: 0: 65535 -18,-1: @@ -11148,7 +11365,7 @@ entities: 0: 65523 -20,-5: 0: 15295 - 4: 32768 + 2: 32768 -21,-4: 0: 65535 -20,-3: @@ -11169,19 +11386,19 @@ entities: 0: 12282 -19,-5: 0: 60928 - 4: 10 + 2: 10 -18,-4: 0: 30503 -18,-3: 0: 2039 -18,-5: 0: 30464 - 4: 8 + 2: 8 -18,-2: 0: 9958 -17,-5: 0: 65280 - 4: 4 + 2: 4 -8,5: 0: 30463 -9,5: @@ -11204,7 +11421,7 @@ entities: 0: 28791 -7,8: 0: 119 - 4: 57344 + 2: 57344 -6,5: 0: 65535 -6,6: @@ -11217,45 +11434,45 @@ entities: 0: 56831 -5,6: 0: 4365 - 4: 52224 + 2: 52224 -5,7: 0: 4369 - 4: 34952 + 2: 34952 -5,8: 0: 1 - 4: 63976 + 2: 63976 -4,5: 0: 62395 -4,6: 0: 15 - 4: 3840 + 2: 3840 -4,7: - 4: 8944 + 2: 8944 -12,5: 0: 57599 -13,5: 0: 255 - 4: 40960 + 2: 40960 -12,6: 0: 238 - 4: 256 + 2: 256 -13,6: - 4: 51854 + 2: 51854 -12,7: - 4: 61440 + 2: 61440 -13,7: - 4: 35976 + 2: 35976 0: 4369 -11,5: 0: 43775 -11,6: 0: 34875 - 4: 12288 + 2: 12288 -11,7: - 4: 4371 + 2: 4371 0: 34952 -11,8: - 4: 10003 + 2: 10003 0: 136 -10,5: 0: 61183 @@ -11265,10 +11482,10 @@ entities: 0: 53759 -10,8: 0: 221 - 4: 4096 + 2: 4096 -9,8: 0: 238 - 4: 20480 + 2: 20480 -16,5: 0: 4095 -17,5: @@ -11301,21 +11518,21 @@ entities: 0: 64917 -13,8: 0: 4353 - 4: 35016 + 2: 35016 -21,4: 0: 65263 -20,5: 0: 239 -21,5: 0: 4607 - 4: 16384 + 2: 16384 -19,5: 0: 255 -18,5: 0: 255 - 4: 16384 + 2: 16384 -18,7: - 4: 8224 + 2: 8224 0: 3584 -17,8: 0: 65535 @@ -11375,7 +11592,7 @@ entities: 0: 221 -25,7: 0: 2272 - 4: 36864 + 2: 36864 -23,5: 0: 57230 -23,6: @@ -11396,11 +11613,11 @@ entities: 0: 4369 -21,7: 0: 7953 - 4: 32896 + 2: 32896 -21,8: 0: 4369 -18,9: - 4: 514 + 2: 514 0: 224 -17,9: 0: 65535 @@ -11409,19 +11626,19 @@ entities: -17,11: 0: 43775 -18,11: - 4: 2048 + 2: 2048 -17,12: 0: 170 - 4: 16 + 2: 16 -16,9: 0: 65534 -16,10: 0: 63726 -16,11: 0: 255 - 4: 16384 + 2: 16384 -16,12: - 4: 244 + 2: 244 -15,9: 0: 48029 -15,10: @@ -11430,7 +11647,7 @@ entities: 0: 43775 -15,12: 0: 170 - 4: 16 + 2: 16 -14,9: 0: 45981 -14,10: @@ -11441,20 +11658,20 @@ entities: 0: 15 -13,9: 0: 12305 - 4: 33804 + 2: 33804 -13,10: 0: 12339 -13,11: 0: 12339 -13,12: 0: 3 - 4: 192 + 2: 192 -12,9: - 4: 22001 + 2: 22001 -12,12: - 4: 245 + 2: 245 12,4: - 4: 12 + 2: 12 0: 4368 13,0: 0: 32766 @@ -11466,7 +11683,7 @@ entities: 0: 64463 13,-1: 0: 8191 - 4: 57344 + 2: 57344 14,0: 0: 65523 14,1: @@ -11476,7 +11693,7 @@ entities: 14,3: 0: 65535 14,-1: - 4: 12288 + 2: 12288 0: 20479 15,0: 0: 65535 @@ -11486,96 +11703,96 @@ entities: 0: 57471 15,3: 0: 254 - 4: 8704 + 2: 8704 15,-1: 0: 16383 15,4: - 4: 1119 + 2: 1119 0: 32 16,2: 0: 13184 - 4: 68 + 2: 68 16,3: 0: 16435 - 4: 3072 + 2: 3072 12,5: 0: 13059 11,5: 0: 61069 12,6: - 4: 12530 + 2: 12530 11,6: - 4: 62130 + 2: 62130 0: 64 13,6: - 4: 240 + 2: 240 14,6: - 4: 48 + 2: 48 16,4: - 4: 1375 + 2: 1375 16,0: - 4: 58560 + 2: 58560 0: 4 16,1: 0: 2 - 4: 50412 + 2: 50412 16,-1: - 4: 51328 + 2: 51328 0: 827 17,0: - 4: 22357 + 2: 22357 17,1: - 4: 22359 + 2: 22359 17,2: - 4: 21877 + 2: 21877 17,3: - 4: 22357 + 2: 22357 17,-1: - 4: 30037 + 2: 30037 17,4: - 4: 273 + 2: 273 16,-4: - 4: 7 + 2: 7 15,-4: - 4: 4382 + 2: 4382 0: 1 16,-3: - 4: 20241 + 2: 20241 15,-3: - 4: 22303 + 2: 22303 16,-2: - 4: 35919 + 2: 35919 0: 12288 15,-2: - 4: 13 + 2: 13 0: 61698 16,-5: - 4: 17487 + 2: 17487 17,-2: - 4: 22353 + 2: 22353 12,-5: 0: 61695 13,-3: - 4: 16300 + 2: 16300 13,-2: 0: 65520 13,-4: - 4: 52428 + 2: 52428 13,-5: - 4: 52224 + 2: 52224 0: 6 14,-4: - 4: 6015 + 2: 6015 14,-3: 0: 257 - 4: 7694 + 2: 7694 14,-2: 0: 65520 14,-5: 0: 4643 - 4: 34952 + 2: 34952 15,-5: - 4: 39293 + 2: 39293 0: 128 -24,-4: 0: 48063 @@ -11690,70 +11907,70 @@ entities: -26,4: 0: 36856 -24,-8: - 4: 255 + 2: 255 -25,-8: - 4: 239 + 2: 239 -24,-7: - 6: 819 - 7: 2184 + 5: 819 + 6: 2184 -24,-6: - 4: 15 + 2: 15 0: 47872 -25,-6: - 4: 15 + 2: 15 0: 65280 -23,-8: - 4: 255 + 2: 255 -23,-7: - 7: 273 - 5: 3276 + 6: 273 + 7: 3276 -23,-6: - 4: 15 + 2: 15 0: 65280 -22,-8: - 4: 255 + 2: 255 -22,-6: - 4: 15 + 2: 15 0: 65280 -22,-7: - 5: 1638 + 7: 1638 -21,-8: - 4: 26303 + 2: 26303 -21,-6: - 4: 3279 + 2: 3279 0: 4352 -21,-7: - 4: 59118 + 2: 59118 -20,-8: - 4: 65023 + 2: 65023 -20,-7: - 4: 65487 + 2: 65487 -20,-6: - 4: 36862 + 2: 36862 -28,-7: - 4: 65280 + 2: 65280 -28,-6: - 4: 29 + 2: 29 0: 56514 -29,-6: - 4: 127 + 2: 127 0: 61440 -29,-5: 0: 65535 -27,-7: - 4: 4369 - 5: 2184 + 2: 4369 + 7: 2184 -27,-6: - 4: 15 + 2: 15 0: 60928 -27,-8: - 4: 4479 + 2: 4479 -26,-8: - 4: 255 + 2: 255 -26,-7: - 5: 3549 + 7: 3549 -26,-6: - 4: 15 + 2: 15 0: 65280 -25,-7: 8: 1638 @@ -11764,18 +11981,17 @@ entities: 1: 61440 -29,5: 0: 170 - 1: 36864 - 9: 8192 + 1: 45056 -28,6: 1: 65535 -29,6: 1: 35003 - 4: 12288 + 2: 12288 -28,7: - 4: 1904 - 5: 2048 + 2: 1904 + 7: 2048 -29,7: - 4: 20471 + 2: 20471 -27,4: 0: 3568 -27,5: @@ -11784,13 +12000,12 @@ entities: -27,6: 1: 65535 -27,7: - 1: 1 - 0: 16 - 5: 13056 - 4: 3264 + 1: 17 + 7: 13056 + 2: 3264 -27,8: - 5: 13073 - 4: 49152 + 7: 13073 + 2: 49152 -26,5: 0: 2235 1: 12288 @@ -11798,12 +12013,12 @@ entities: 1: 13107 0: 34952 -26,7: - 4: 26144 + 2: 26144 0: 128 -26,8: - 4: 31812 + 2: 31812 -25,8: - 4: 3857 + 2: 3857 -32,0: 0: 63351 -32,-1: @@ -11845,11 +12060,11 @@ entities: -30,4: 0: 52465 -32,-4: - 4: 26367 + 2: 26367 -32,-5: - 4: 61440 + 2: 61440 -33,-4: - 4: 63 + 2: 63 0: 47232 -33,-3: 0: 65535 @@ -11862,14 +12077,14 @@ entities: -33,-1: 0: 27869 -31,-4: - 4: 3 + 2: 3 0: 65416 -31,-3: 0: 57584 -31,-2: 0: 3822 -31,-5: - 4: 17479 + 2: 17479 -30,-4: 0: 30583 -30,-3: @@ -11880,55 +12095,53 @@ entities: 0: 255 -32,5: 0: 239 - 4: 4096 + 2: 4096 -33,5: 0: 30719 -32,6: - 4: 35630 + 2: 35630 -33,6: - 4: 24392 + 2: 24392 -32,7: - 4: 28687 + 2: 15 -33,7: - 4: 8751 - -32,8: - 4: 63 + 2: 8751 -31,5: 0: 255 - 4: 20480 + 2: 20480 -31,6: - 4: 36703 + 2: 36703 -31,7: - 4: 7961 + 2: 7961 -31,8: - 4: 4369 + 2: 4369 -30,5: 0: 255 - 4: 4096 + 2: 4096 1: 49152 -30,6: - 4: 62209 + 2: 62209 1: 204 -30,7: - 4: 39327 + 2: 39327 -30,8: - 4: 39321 + 2: 39321 -29,8: - 4: 1988 + 2: 1988 -4,8: - 4: 8946 + 2: 8946 -3,4: 0: 65520 -3,5: 0: 61695 -3,6: 0: 2179 - 4: 13056 + 2: 13056 -3,7: - 4: 4881 + 2: 4881 0: 3208 -3,8: - 4: 4401 + 2: 4401 0: 32904 -2,5: 0: 62702 @@ -11955,7 +12168,7 @@ entities: 0,8: 0: 65295 1,5: - 0: 56558 + 0: 56559 1,6: 0: 61213 1,7: @@ -12002,7 +12215,7 @@ entities: 0: 61166 6,8: 0: 14 - 4: 64000 + 2: 64000 7,5: 0: 4080 7,6: @@ -12011,69 +12224,69 @@ entities: 0: 65535 7,8: 0: 15 - 4: 64000 + 2: 64000 8,5: 0: 53105 8,6: 0: 52693 8,7: 0: 6617 - 4: 32768 + 2: 32768 -19,-8: - 4: 4369 + 2: 4369 -19,-7: - 4: 4883 + 2: 4883 -19,-6: - 4: 36627 + 2: 36627 -18,-6: - 4: 44800 + 2: 44800 -17,-6: - 4: 28416 + 2: 28416 -16,-6: 0: 47616 8,8: 0: 1 - 4: 48876 + 2: 48876 9,4: 0: 57456 9,5: 0: 61168 9,6: 0: 4368 - 4: 35904 + 2: 35904 9,7: - 4: 13094 + 2: 13094 9,8: - 4: 65122 + 2: 65122 10,4: 0: 60624 10,6: - 4: 64184 + 2: 64184 10,7: 0: 4096 10,5: 0: 28398 -4,9: - 4: 19570 + 2: 19570 -5,9: - 4: 3971 + 2: 3971 -4,10: - 4: 17476 + 2: 17476 -4,11: - 4: 17476 + 2: 17476 -4,12: - 4: 12 + 2: 12 -3,9: - 4: 4881 + 2: 4881 0: 32904 -3,10: - 4: 4369 + 2: 4369 0: 2184 -3,11: - 4: 21265 + 2: 21265 0: 2184 -3,12: - 4: 61937 + 2: 61937 -2,9: 0: 61567 -2,10: @@ -12081,7 +12294,7 @@ entities: -2,11: 0: 4095 -2,12: - 4: 61689 + 2: 61689 -1,9: 0: 61883 -1,10: @@ -12089,7 +12302,7 @@ entities: -1,11: 0: 4095 -1,12: - 4: 62452 + 2: 62452 0,9: 0: 61695 0,10: @@ -12097,84 +12310,84 @@ entities: 0,11: 0: 3003 0,12: - 4: 61681 + 2: 61681 1,11: - 4: 62692 + 2: 62692 1,9: 0: 238 - 4: 8192 + 2: 8192 1,10: - 4: 50766 + 2: 50766 1,12: - 4: 61685 + 2: 61685 2,10: 0: 4086 2,11: - 4: 61937 + 2: 61937 2,9: 0: 26214 2,12: - 4: 4369 + 2: 4369 3,9: 0: 119 - 4: 18432 + 2: 18432 3,10: - 4: 54855 + 2: 54855 0: 2056 3,11: - 4: 30197 + 2: 30197 0: 2056 4,8: 0: 16 - 4: 55808 + 2: 55808 4,9: 0: 1799 - 4: 63736 + 2: 63736 4,10: 0: 1799 - 4: 63736 + 2: 63736 4,11: 0: 1799 - 4: 63736 + 2: 63736 -12,10: - 4: 30037 + 2: 30037 -12,11: - 4: 21845 + 2: 21845 -11,9: - 4: 3646 + 2: 3646 -10,9: - 4: 3871 + 2: 3871 -9,9: - 4: 36695 + 2: 36695 -8,9: 0: 63231 -8,10: - 4: 105 + 2: 105 0: 1542 -7,9: - 4: 6030 + 2: 6030 -6,9: - 4: 3855 + 2: 3855 8,-8: - 4: 2 + 2: 2 0: 36032 8,-7: 0: 52940 8,-6: 0: 32974 - 4: 8192 + 2: 8192 8,-9: 0: 16388 - 4: 1098 + 2: 1098 9,-8: 0: 18288 - 4: 8192 + 2: 8192 9,-7: 0: 56785 9,-6: 0: 63741 9,-9: - 4: 21983 + 2: 21983 10,-8: 0: 65535 10,-7: @@ -12183,7 +12396,7 @@ entities: 0: 61661 10,-9: 0: 65280 - 4: 15 + 2: 15 11,-8: 0: 65535 11,-7: @@ -12192,7 +12405,7 @@ entities: 0: 30719 11,-9: 0: 47872 - 4: 15 + 2: 15 12,-8: 0: 65535 12,-7: @@ -12201,7 +12414,7 @@ entities: 0: 64511 12,-9: 0: 43520 - 4: 15 + 2: 15 13,-8: 0: 48123 13,-7: @@ -12210,39 +12423,39 @@ entities: 0: 28790 13,-9: 0: 43520 - 4: 15 + 2: 15 14,-8: 0: 30583 14,-7: 0: 14199 - 4: 32768 + 2: 32768 14,-6: 0: 13106 - 4: 34952 + 2: 34952 14,-9: 0: 30464 - 4: 139 + 2: 139 15,-8: - 4: 64852 + 2: 64852 15,-7: - 4: 39321 + 2: 39321 15,-6: - 4: 22009 + 2: 22009 15,-9: - 4: 29767 + 2: 29767 16,-8: - 4: 36677 + 2: 36677 0: 8208 -15,-6: 0: 4096 - 4: 512 + 2: 512 -14,-6: - 4: 49152 + 2: 49152 -36,-4: 0: 65520 -36,-5: 0: 61440 - 4: 112 + 2: 112 -37,-4: 0: 65520 -36,-3: @@ -12267,7 +12480,7 @@ entities: 0: 65535 -35,-5: 0: 61440 - 4: 224 + 2: 224 -34,-4: 0: 26480 -34,-3: @@ -12279,88 +12492,88 @@ entities: -34,-5: 0: 28672 -33,-5: - 4: 61440 + 2: 61440 -33,0: 0: 26214 -36,0: 0: 240 - 4: 28672 + 2: 28672 -37,0: 0: 240 - 4: 4096 + 2: 4096 -36,2: - 4: 52992 + 2: 52992 -37,2: - 4: 12032 + 2: 12032 -36,3: - 4: 43690 + 2: 43690 -36,4: - 4: 43770 + 2: 43770 -35,0: 0: 240 - 4: 57344 + 2: 57344 -35,2: - 4: 60960 + 2: 60960 -35,3: - 4: 43690 + 2: 43690 -35,4: - 4: 43710 + 2: 43710 -34,2: - 4: 4408 + 2: 4408 0: 32768 -34,3: - 4: 273 + 2: 273 0: 34952 -34,0: - 4: 36064 + 2: 36064 -34,4: 0: 143 - 4: 4352 + 2: 4352 -34,1: - 4: 34952 + 2: 34952 -33,1: 0: 26214 -37,4: - 4: 43770 + 2: 43770 -36,6: - 4: 254 + 2: 254 -37,6: - 4: 242 + 2: 242 -36,5: - 4: 43754 + 2: 43754 -35,5: - 4: 25262 + 2: 25262 -35,6: - 4: 17476 + 2: 17476 -35,7: - 4: 12 + 2: 12 -34,5: - 4: 4882 + 2: 4882 0: 34952 -34,7: - 4: 39327 + 2: 39327 -34,6: - 4: 3925 + 2: 3925 -34,8: - 4: 64441 + 2: 64441 -33,8: - 4: 25263 + 2: 25123 -31,-6: - 4: 53188 + 2: 53188 -30,-6: - 4: 3967 + 2: 3967 -30,-5: - 5: 1911 + 7: 1911 -30,-7: - 4: 16384 + 2: 16384 -29,-7: - 4: 20480 + 2: 20480 -24,8: - 4: 1792 + 2: 1792 -24,11: - 4: 5888 + 2: 5888 -25,11: - 4: 63624 + 2: 63624 -23,9: 0: 34956 -23,10: @@ -12377,157 +12590,157 @@ entities: 0: 2252 -21,9: 0: 4593 - 4: 2056 + 2: 2056 -21,10: 0: 4369 -21,11: 0: 4113 -21,12: 0: 17 - 4: 512 + 2: 512 3,12: - 4: 2184 + 2: 2184 4,12: 0: 7 - 4: 3928 + 2: 3928 5,8: - 4: 64000 + 2: 64000 5,9: 0: 1799 - 4: 63736 + 2: 63736 5,10: 0: 1799 - 4: 63736 + 2: 63736 5,11: 0: 1799 - 4: 63736 + 2: 63736 5,12: 0: 7 - 4: 3928 + 2: 3928 6,9: 0: 1799 - 4: 63736 + 2: 63736 6,10: 0: 1799 - 4: 63736 + 2: 63736 6,11: 0: 1799 - 4: 63736 + 2: 63736 6,12: 0: 7 - 4: 3928 + 2: 3928 7,9: 0: 1799 - 4: 63736 + 2: 63736 7,10: 0: 1799 - 4: 63736 + 2: 63736 7,11: 0: 1799 - 4: 63736 + 2: 63736 7,12: 0: 7 - 4: 3928 + 2: 3928 8,9: 0: 1799 - 4: 30840 + 2: 30840 8,10: 0: 1799 - 4: 30840 + 2: 30840 8,11: 0: 1799 - 4: 30840 + 2: 30840 8,12: 0: 7 - 4: 3928 + 2: 3928 9,9: - 4: 4369 + 2: 4369 9,10: - 4: 4369 + 2: 4369 9,11: - 4: 4369 + 2: 4369 9,12: - 4: 273 + 2: 273 10,8: - 4: 13088 + 2: 13088 -40,3: - 4: 32768 + 2: 32768 -40,4: - 4: 34952 + 2: 34952 -39,3: - 4: 39417 + 2: 39417 -39,2: - 4: 40704 + 2: 40704 -39,4: - 4: 35017 + 2: 35017 -39,0: 0: 136 -39,-1: 0: 34954 - 4: 32 + 2: 32 -38,0: - 4: 49153 + 2: 49153 0: 240 -38,2: - 4: 12032 + 2: 12032 -38,-1: 0: 61166 -38,3: - 4: 43690 + 2: 43690 -38,4: - 4: 43770 + 2: 43770 -37,3: - 4: 43690 + 2: 43690 -4,-15: - 4: 32528 + 2: 32528 -5,-15: - 4: 52352 + 2: 52352 -4,-14: - 4: 30076 + 2: 30076 -5,-14: - 4: 39423 + 2: 39423 -5,-13: - 4: 22975 + 2: 22975 -3,-15: - 4: 24560 + 2: 24560 -3,-14: - 4: 34141 + 2: 34141 -2,-15: - 4: 53184 + 2: 53184 -2,-14: - 4: 24557 + 2: 24557 -1,-15: - 4: 4352 + 2: 4352 -1,-14: - 4: 13104 + 2: 13104 -7,-10: - 4: 34956 + 2: 34956 -7,-11: - 4: 32768 + 2: 32768 -6,-10: - 4: 49215 + 2: 49215 -6,-12: - 4: 52838 + 2: 52838 -6,-13: - 4: 25838 + 2: 25838 -6,-11: - 4: 28270 + 2: 28270 -5,-12: - 4: 4902 + 2: 4902 -39,-4: - 4: 8192 + 2: 8192 0: 34952 -39,-3: - 4: 8226 + 2: 8226 0: 34952 -39,-2: - 4: 8226 + 2: 8226 0: 34952 -39,-5: 0: 32768 -38,-5: 0: 61440 - 4: 192 + 2: 192 -38,-4: 0: 61152 -38,-3: @@ -12536,83 +12749,83 @@ entities: 0: 61166 -37,-5: 0: 61440 - 4: 16 + 2: 16 8,-11: - 4: 11776 + 2: 11776 8,-10: - 4: 44586 + 2: 44586 0: 128 9,-11: - 4: 20224 + 2: 20224 9,-10: - 4: 52429 + 2: 52429 0: 2 10,-11: - 4: 3840 + 2: 3840 10,-10: - 4: 65533 + 2: 65533 0: 2 11,-11: - 4: 3840 + 2: 3840 11,-10: - 4: 65533 + 2: 65533 0: 2 12,-11: - 4: 12032 + 2: 12032 12,-10: 0: 9 - 4: 65526 + 2: 65526 13,-11: - 4: 3840 + 2: 3840 13,-10: - 4: 65463 + 2: 65463 0: 8 14,-11: - 4: 20224 + 2: 20224 14,-10: - 4: 64255 + 2: 64255 15,-11: - 4: 20224 + 2: 20224 15,-10: 0: 1 - 4: 18374 + 2: 18374 16,-11: - 4: 8960 + 2: 8960 16,-10: - 4: 21618 + 2: 21618 0: 256 16,-9: - 4: 21589 + 2: 21589 0: 256 16,-7: - 4: 43178 + 2: 43178 0: 512 16,-6: - 4: 43178 + 2: 43178 0: 512 -40,5: - 4: 136 + 2: 136 -39,5: - 4: 39327 + 2: 39327 -39,6: - 4: 249 + 2: 249 -38,6: - 4: 240 + 2: 240 -38,5: - 4: 2730 + 2: 2730 -37,5: - 4: 10922 + 2: 10922 -6,-14: - 4: 34816 + 2: 34816 -28,8: - 4: 112 - 5: 34944 + 2: 112 + 7: 34944 -28,9: - 4: 240 + 2: 240 0: 32768 - 5: 8 + 7: 8 -29,9: - 4: 240 + 2: 240 0: 4096 -28,10: 0: 56543 @@ -12620,96 +12833,96 @@ entities: 0: 53727 -28,11: 0: 143 - 4: 16384 + 2: 16384 -29,11: 0: 31 - 4: 4096 + 2: 4096 -28,12: - 4: 3911 + 2: 3911 -27,9: - 5: 1 + 7: 1 0: 4368 - 4: 49184 + 2: 49184 -27,10: 0: 28945 - 4: 2048 + 2: 2048 -27,11: 0: 119 - 4: 6144 + 2: 6144 -27,12: - 4: 7953 + 2: 7953 -26,9: - 4: 29892 + 2: 29892 -26,10: - 4: 273 + 2: 273 -26,11: - 4: 52992 + 2: 52992 -25,9: - 4: 4368 + 2: 4368 -26,12: - 4: 3976 + 2: 3976 -25,10: - 4: 36753 + 2: 36753 -32,9: - 4: 3391 + 2: 3391 -33,9: - 4: 28338 + 2: 28338 -32,10: 0: 61166 -32,11: 0: 14 - 4: 15616 + 2: 15616 -33,11: - 4: 52340 + 2: 52340 -32,12: - 4: 63282 + 2: 63282 -31,9: - 4: 1 + 2: 1 0: 24576 -31,10: 0: 61166 -31,11: 0: 110 -30,9: - 4: 1529 + 2: 1529 0: 32768 -30,10: 0: 61167 -30,11: 0: 143 - 4: 1280 + 2: 1280 -31,12: - 4: 31880 + 2: 31880 -29,12: - 4: 3855 + 2: 3855 -35,11: - 4: 128 + 2: 128 -34,11: - 4: 60091 + 2: 60091 -34,9: - 4: 39323 + 2: 39323 -34,10: - 4: 39327 + 2: 39327 -34,12: - 4: 136 + 2: 136 -33,10: - 4: 17476 + 2: 17476 -33,12: - 4: 58357 + 2: 58357 -32,13: - 4: 192 + 2: 192 -31,13: - 4: 241 + 2: 241 -30,12: - 4: 36608 + 2: 36608 -30,13: - 4: 2296 + 2: 2296 -29,13: - 4: 15 + 2: 15 -28,13: - 4: 15 + 2: 15 -27,13: - 4: 17 + 2: 17 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12721,22 +12934,19 @@ entities: moles: Oxygen: 27.225372 Nitrogen: 102.419266 - - volume: 2500 - temperature: 293.14975 - moles: - Oxygen: 20.078888 - Nitrogen: 75.53487 - - volume: 2500 - temperature: 293.15 - moles: - Oxygen: 21.813705 - Nitrogen: 82.06108 - volume: 2500 immutable: True moles: {} - volume: 2500 temperature: 293.15 - moles: {} + moles: + Oxygen: 23.721722 + Nitrogen: 89.23887 + - volume: 2500 + temperature: 293.14975 + moles: + Oxygen: 20.078888 + Nitrogen: 75.53487 - volume: 2500 temperature: 293.15 moles: @@ -12747,13 +12957,11 @@ entities: Plasma: 6666.982 - volume: 2500 temperature: 293.15 - moles: - Nitrogen: 6666.982 + moles: {} - volume: 2500 - temperature: 234.99983 + temperature: 293.15 moles: - Oxygen: 27.225372 - Nitrogen: 102.419266 + Nitrogen: 6666.982 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -12789,6 +12997,7 @@ entities: - type: BecomesStation id: Ishimura - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 24173 components: - type: MetaData @@ -13026,6 +13235,7 @@ entities: damping: 816.92523 stiffness: 7332.7046 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 24375 components: - type: MetaData @@ -13435,6 +13645,7 @@ entities: damping: 1129.212 stiffness: 10135.784 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 24792 components: - type: MetaData @@ -13565,6 +13776,7 @@ entities: damping: 346.33588 stiffness: 3108.7039 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 24902 components: - type: MetaData @@ -14851,6 +15063,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 27712 components: - type: MetaData @@ -15421,6 +15634,7 @@ entities: damping: 1050.9031 stiffness: 9432.886 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 28600 components: - type: MetaData @@ -15469,6 +15683,7 @@ entities: - type: NavMap - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AcousticGuitarInstrument entities: - uid: 3 @@ -15481,6 +15696,28 @@ entities: - type: Transform pos: -109.63829,-23.975744 parent: 2 +- proto: ActionToggleBlock + entities: + - uid: 23784 + mapInit: true + paused: true + components: + - type: Transform + parent: 23783 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 23783 +- proto: ActionToggleLight + entities: + - uid: 19651 + mapInit: true + paused: true + components: + - type: Transform + parent: 19084 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 19084 - proto: AgentIDCard entities: - uid: 7 @@ -15583,7 +15820,6 @@ entities: - 29150 - 29149 - 29148 - - 11439 - 11454 - 11440 - 29154 @@ -15681,12 +15917,9 @@ entities: parent: 2 - type: DeviceList devices: - - 483 - - 11299 - - 11301 - - 11295 - - 24145 - 14681 + - 24145 + - 11295 - type: Fixtures fixtures: {} - uid: 24 @@ -16041,7 +16274,6 @@ entities: - type: DeviceList devices: - 11359 - - 11360 - 23644 - 14648 - 14649 @@ -16050,6 +16282,7 @@ entities: - 6406 - 11338 - 11337 + - 335 - type: Fixtures fixtures: {} - uid: 48 @@ -16419,7 +16652,6 @@ entities: parent: 2 - type: DeviceList devices: - - 14573 - 29145 - 29143 - 29144 @@ -17232,11 +17464,6 @@ entities: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 101 - components: - - type: Transform - pos: 5.5,20.5 - parent: 2 - uid: 102 components: - type: Transform @@ -17252,6 +17479,11 @@ entities: - type: Transform pos: -86.5,-5.5 parent: 2 + - uid: 12330 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 - uid: 24175 components: - type: Transform @@ -17422,13 +17654,6 @@ entities: - type: Transform pos: 0.5,11.5 parent: 24902 -- proto: AirlockAssemblyHighSec - entities: - - uid: 23805 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - proto: AirlockAssemblyMaintenance entities: - uid: 123 @@ -17558,15 +17783,16 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-20.5 parent: 2 - - uid: 141 + - uid: 142 components: - type: Transform - pos: 41.5,-13.5 + pos: 37.5,-20.5 parent: 2 - - uid: 142 + - uid: 16141 components: - type: Transform - pos: 37.5,-20.5 + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 parent: 2 - proto: AirlockBrigLocked entities: @@ -18094,11 +18320,6 @@ entities: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 29185 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - proto: AirlockEVALocked entities: - uid: 213 @@ -18358,6 +18579,13 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,36.5 parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 464 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 243 @@ -18383,11 +18611,6 @@ entities: - type: Transform pos: -47.5,-14.5 parent: 2 - - uid: 249 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - uid: 250 components: - type: Transform @@ -18896,7 +19119,7 @@ entities: pos: 33.5,2.5 parent: 2 - type: Door - secondsUntilStateChange: -64527.688 + secondsUntilStateChange: -81409.53 state: Opening - type: DeviceLinkSource lastSignals: @@ -18996,11 +19219,6 @@ entities: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 335 - components: - - type: Transform - pos: -70.5,10.5 - parent: 2 - uid: 336 components: - type: Transform @@ -19054,6 +19272,11 @@ entities: rot: 3.141592653589793 rad pos: -76.5,8.5 parent: 2 + - uid: 18475 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 - uid: 28915 components: - type: Transform @@ -19404,6 +19627,8 @@ entities: - type: Transform pos: 23.5,18.5 parent: 2 + - type: AccessReader + accessListsOriginal: [] - uid: 396 components: - type: Transform @@ -19463,6 +19688,8 @@ entities: - type: Transform pos: 37.5,-16.5 parent: 2 + - type: AccessReader + accessListsOriginal: [] - uid: 406 components: - type: MetaData @@ -19521,6 +19748,12 @@ entities: - type: Transform pos: -2.5,12.5 parent: 2 + - uid: 5829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 - uid: 24389 components: - type: Transform @@ -19611,26 +19844,11 @@ entities: parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 428 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 2 - - uid: 429 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - uid: 430 + - uid: 11211 components: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 431 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - proto: AirlockScienceGlassLocked entities: - uid: 432 @@ -19894,11 +20112,6 @@ entities: parent: 2 - proto: AirlockShuttle entities: - - uid: 464 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - uid: 24180 components: - type: Transform @@ -20331,6 +20544,9 @@ entities: - type: Transform pos: -1.5,-39.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Atmospherics - uid: 528 components: - type: Transform @@ -20513,6 +20729,8 @@ entities: pos: -56.5,15.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 45 - uid: 24182 @@ -20625,6 +20843,8 @@ entities: pos: -17.5,-31.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 29723 - 15265 @@ -20640,6 +20860,8 @@ entities: pos: 42.5,19.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 22053 - proto: AltarFangs @@ -20921,15 +21143,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 599 - components: - - type: MetaData - name: ЛКП телекоммуникация - - type: Transform - pos: -107.5,22.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 600 components: - type: MetaData @@ -21090,15 +21303,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 619 - components: - - type: MetaData - name: ЛКП Бриг стрельбище - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 620 components: - type: Transform @@ -21317,6 +21521,14 @@ entities: - - Engineering - type: Fixtures fixtures: {} + - uid: 18557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24409 components: - type: Transform @@ -21421,6 +21633,17 @@ entities: - type: Transform pos: -98.34589,-10.613356 parent: 2 +- proto: APCHighCapacity + entities: + - uid: 599 + components: + - type: Transform + pos: -107.5,22.5 + parent: 2 + - type: Apc + maxLoad: 30000 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 648 @@ -21448,6 +21671,8 @@ entities: - type: Transform pos: -83.5,-10.5 parent: 2 + - type: Apc + maxLoad: 30000 - type: Fixtures fixtures: {} - uid: 7206 @@ -23922,6 +24147,11 @@ entities: parent: 24902 - proto: AtmosDeviceFanDirectional entities: + - uid: 1612 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 - uid: 29906 components: - type: Transform @@ -24007,11 +24237,6 @@ entities: - type: Transform pos: -60.5,-21.5 parent: 2 - - uid: 694 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - uid: 695 components: - type: Transform @@ -25538,11 +25763,6 @@ entities: - type: Transform pos: 61.5,11.5 parent: 2 - - uid: 870 - components: - - type: Transform - pos: 0.5,8.5 - parent: 2 - uid: 19660 components: - type: Transform @@ -25842,12 +26062,6 @@ entities: - type: Transform pos: 23.5,30.5 parent: 2 - - uid: 16536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,16.5 - parent: 2 - uid: 22822 components: - type: Transform @@ -25959,11 +26173,6 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,-11.5 parent: 2 - - uid: 23806 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - uid: 23807 components: - type: Transform @@ -26023,6 +26232,14 @@ entities: - type: Transform pos: 4.5576854,11.448548 parent: 24902 +- proto: BaseComputer + entities: + - uid: 3550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 2 - proto: BaseGasCondenser entities: - uid: 12096 @@ -26655,20 +26872,6 @@ entities: canCollide: False - type: Airtight airBlocked: False - - uid: 1040 - components: - - type: MetaData - name: гермозатвор внешний - - type: Transform - pos: -56.5,-18.5 - parent: 2 - - uid: 1041 - components: - - type: MetaData - name: гермозатвор внешний - - type: Transform - pos: -55.5,-18.5 - parent: 2 - uid: 1042 components: - type: Transform @@ -26708,13 +26911,6 @@ entities: canCollide: False - type: Airtight airBlocked: False - - uid: 1045 - components: - - type: MetaData - name: гермозатвор внешний - - type: Transform - pos: -54.5,-18.5 - parent: 2 - uid: 1046 components: - type: Transform @@ -26751,22 +26947,6 @@ entities: - type: Transform pos: -117.5,-20.5 parent: 2 - - uid: 1053 - components: - - type: MetaData - name: защитный гермозатвор - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-16.5 - parent: 2 - - uid: 1054 - components: - - type: MetaData - name: защитный гермозатвор - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-13.5 - parent: 2 - uid: 18989 components: - type: Transform @@ -27255,6 +27435,14 @@ entities: - type: Transform pos: 10.528219,9.687132 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: BodyScannerComputerCircuitboard entities: - uid: 1083 @@ -27440,6 +27628,11 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,45.5 parent: 2 + - uid: 13445 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 - proto: BoozeDispenserEmpty entities: - uid: 1113 @@ -27507,6 +27700,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: BorgModuleCommonPickaxe + entities: + - uid: 29185 + components: + - type: Transform + pos: -56.375206,-16.590515 + parent: 2 - proto: BorgModuleMusique entities: - uid: 1132 @@ -27789,6 +27989,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.471943,-12.426326 parent: 2 + - uid: 3555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.389156,-12.300864 + parent: 2 - uid: 24416 components: - type: Transform @@ -27948,10 +28154,11 @@ entities: - uid: 1217 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - proto: BoxMagazinePistolSubMachineGunTopMounted entities: - uid: 27766 @@ -28243,17 +28450,19 @@ entities: - uid: 1218 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - uid: 1219 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - proto: BoxShotgunSlug entities: - uid: 1208 @@ -28644,12 +28853,6 @@ entities: parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 1267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 2 - uid: 27779 components: - type: Transform @@ -28763,6 +28966,11 @@ entities: - type: Transform pos: -77.5,17.5 parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 - uid: 1137 components: - type: Transform @@ -30388,31 +30596,6 @@ entities: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 1610 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - - uid: 1612 - components: - - type: Transform - pos: -48.5,-19.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 2 - - uid: 1614 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 2 - uid: 1615 components: - type: Transform @@ -30423,16 +30606,6 @@ entities: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 1617 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 2 - - uid: 1618 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - uid: 1619 components: - type: Transform @@ -30443,16 +30616,6 @@ entities: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 1621 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 2 - uid: 1623 components: - type: Transform @@ -38371,12 +38534,7 @@ entities: - uid: 3230 components: - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - pos: 20.5,14.5 + pos: 16.5,19.5 parent: 2 - uid: 3232 components: @@ -39828,71 +39986,11 @@ entities: - type: Transform pos: 41.5,-8.5 parent: 2 - - uid: 3544 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 3545 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 3546 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - uid: 3547 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - - uid: 3548 - components: - - type: Transform - pos: 42.5,-14.5 - parent: 2 - uid: 3549 components: - type: Transform pos: 42.5,-15.5 parent: 2 - - uid: 3550 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 2 - - uid: 3551 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 2 - - uid: 3552 - components: - - type: Transform - pos: 45.5,-12.5 - parent: 2 - - uid: 3553 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 2 - - uid: 3554 - components: - - type: Transform - pos: 47.5,-12.5 - parent: 2 - - uid: 3555 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 2 - - uid: 3556 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 3557 components: - type: Transform @@ -39901,12 +39999,7 @@ entities: - uid: 3558 components: - type: Transform - pos: 50.5,-12.5 - parent: 2 - - uid: 3559 - components: - - type: Transform - pos: 51.5,-12.5 + pos: 41.5,-10.5 parent: 2 - uid: 3560 components: @@ -39953,11 +40046,6 @@ entities: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 3569 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 2 - uid: 3570 components: - type: Transform @@ -40108,11 +40196,6 @@ entities: - type: Transform pos: -127.5,-15.5 parent: 2 - - uid: 3603 - components: - - type: Transform - pos: 18.5,15.5 - parent: 2 - uid: 3604 components: - type: Transform @@ -40438,11 +40521,6 @@ entities: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 3674 - components: - - type: Transform - pos: 18.5,16.5 - parent: 2 - uid: 3675 components: - type: Transform @@ -43643,6 +43721,11 @@ entities: - type: Transform pos: -108.5,-22.5 parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 - uid: 5340 components: - type: Transform @@ -43793,6 +43876,36 @@ entities: - type: Transform pos: 56.5,14.5 parent: 2 + - uid: 9332 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 - uid: 10938 components: - type: Transform @@ -43953,6 +44066,11 @@ entities: - type: Transform pos: -91.5,-23.5 parent: 2 + - uid: 14739 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 - uid: 14882 components: - type: Transform @@ -44123,6 +44241,11 @@ entities: - type: Transform pos: -97.5,-23.5 parent: 2 + - uid: 20042 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 - uid: 20224 components: - type: Transform @@ -48928,21 +49051,6 @@ entities: - type: Transform pos: -146.5,15.5 parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 4418 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - - uid: 4419 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - uid: 4420 components: - type: Transform @@ -51033,90 +51141,15 @@ entities: - type: Transform pos: -58.5,-10.5 parent: 2 - - uid: 4845 - components: - - type: Transform - pos: -58.5,-9.5 - parent: 2 - - uid: 4846 - components: - - type: Transform - pos: -58.5,-8.5 - parent: 2 - - uid: 4847 - components: - - type: Transform - pos: -58.5,-7.5 - parent: 2 - - uid: 4848 - components: - - type: Transform - pos: -58.5,-6.5 - parent: 2 - - uid: 4849 - components: - - type: Transform - pos: -57.5,-6.5 - parent: 2 - - uid: 4850 - components: - - type: Transform - pos: -56.5,-6.5 - parent: 2 - - uid: 4851 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: -55.5,-7.5 - parent: 2 - - uid: 4853 - components: - - type: Transform - pos: -55.5,-8.5 - parent: 2 - - uid: 4854 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 - - uid: 4855 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 4856 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 - - uid: 4857 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - uid: 4858 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 4859 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 2 - uid: 4860 components: - type: Transform - pos: -50.5,-10.5 + pos: -58.5,-12.5 parent: 2 - uid: 4861 components: - type: Transform - pos: -50.5,-11.5 + pos: -58.5,-11.5 parent: 2 - uid: 4862 components: @@ -55898,16 +55931,6 @@ entities: - type: Transform pos: 48.5,9.5 parent: 2 - - uid: 5828 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 5829 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - uid: 5830 components: - type: Transform @@ -55953,11 +55976,51 @@ entities: - type: Transform pos: -111.5,28.5 parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 - uid: 5981 components: - type: Transform pos: 54.5,2.5 parent: 2 + - uid: 6523 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 - uid: 7026 components: - type: Transform @@ -55983,6 +56046,11 @@ entities: - type: Transform pos: -107.5,26.5 parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 - uid: 8483 components: - type: Transform @@ -58489,11 +58557,6 @@ entities: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 5985 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - uid: 5986 components: - type: Transform @@ -58869,16 +58932,6 @@ entities: - type: Transform pos: -3.5,38.5 parent: 2 - - uid: 6062 - components: - - type: Transform - pos: -3.5,39.5 - parent: 2 - - uid: 6063 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - uid: 6064 components: - type: Transform @@ -61019,16 +61072,6 @@ entities: - type: Transform pos: -51.5,10.5 parent: 2 - - uid: 6523 - components: - - type: Transform - pos: -51.5,9.5 - parent: 2 - - uid: 6524 - components: - - type: Transform - pos: -51.5,8.5 - parent: 2 - uid: 6525 components: - type: Transform @@ -61374,11 +61417,6 @@ entities: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 6594 - components: - - type: Transform - pos: 14.5,13.5 - parent: 2 - uid: 6595 components: - type: Transform @@ -61449,46 +61487,6 @@ entities: - type: Transform pos: 13.5,27.5 parent: 2 - - uid: 6609 - components: - - type: Transform - pos: 15.5,13.5 - parent: 2 - - uid: 6610 - components: - - type: Transform - pos: 15.5,14.5 - parent: 2 - - uid: 6611 - components: - - type: Transform - pos: 16.5,14.5 - parent: 2 - - uid: 6612 - components: - - type: Transform - pos: 17.5,14.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - pos: 18.5,14.5 - parent: 2 - - uid: 6614 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - - uid: 6615 - components: - - type: Transform - pos: 20.5,14.5 - parent: 2 - - uid: 6616 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - uid: 6617 components: - type: Transform @@ -62109,41 +62107,6 @@ entities: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 6741 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 2 - uid: 6748 components: - type: Transform @@ -62179,11 +62142,6 @@ entities: - type: Transform pos: 33.5,26.5 parent: 2 - - uid: 6756 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - uid: 6757 components: - type: Transform @@ -62194,11 +62152,6 @@ entities: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 6759 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - uid: 6760 components: - type: Transform @@ -63764,40 +63717,10 @@ entities: - type: Transform pos: -88.5,18.5 parent: 2 - - uid: 7085 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - pos: -43.5,-15.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: -43.5,-16.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - pos: -42.5,-16.5 - parent: 2 - uid: 7090 components: - type: Transform - pos: -41.5,-16.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - pos: -26.5,-17.5 + pos: 41.5,-15.5 parent: 2 - uid: 7185 components: @@ -63864,6 +63787,11 @@ entities: - type: Transform pos: 52.5,12.5 parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 - uid: 9479 components: - type: Transform @@ -63879,6 +63807,21 @@ entities: - type: Transform pos: -13.5,6.5 parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 - uid: 15487 components: - type: Transform @@ -63994,11 +63937,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 2 - - uid: 24005 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - uid: 24017 components: - type: Transform @@ -65369,10 +65307,10 @@ entities: parent: 24902 - proto: CargoMailTeleporter entities: - - uid: 5984 + - uid: 20309 components: - type: Transform - pos: -54.5,-7.5 + pos: -54.5,-9.5 parent: 2 - proto: Carpet entities: @@ -66495,6 +66433,11 @@ entities: rot: 3.141592653589793 rad pos: -112.5,15.5 parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 - uid: 6413 components: - type: Transform @@ -67650,121 +67593,6 @@ entities: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 7553 - components: - - type: Transform - pos: -48.5,-19.5 - parent: 2 - - uid: 7554 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 2 - - uid: 7555 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 7556 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - - uid: 7557 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - - uid: 7558 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 2 - - uid: 7560 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 2 - - uid: 7561 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 7562 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - - uid: 7563 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 7564 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 7565 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 2 - - uid: 7566 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 7567 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 2 - - uid: 7568 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - - uid: 7569 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - - uid: 7570 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 2 - - uid: 7571 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 2 - - uid: 7572 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 2 - - uid: 7573 - components: - - type: Transform - pos: -49.5,-20.5 - parent: 2 - - uid: 7574 - components: - - type: Transform - pos: -50.5,-19.5 - parent: 2 - - uid: 7575 - components: - - type: Transform - pos: -50.5,-20.5 - parent: 2 - uid: 7576 components: - type: Transform @@ -67976,11 +67804,6 @@ entities: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 7620 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - uid: 7621 components: - type: Transform @@ -71066,11 +70889,6 @@ entities: - type: Transform pos: -66.5,6.5 parent: 2 - - uid: 8248 - components: - - type: Transform - pos: -70.5,10.5 - parent: 2 - uid: 8249 components: - type: Transform @@ -73456,6 +73274,11 @@ entities: - type: Transform pos: -106.5,-30.5 parent: 2 + - uid: 18594 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 - uid: 18987 components: - type: Transform @@ -73466,6 +73289,11 @@ entities: - type: Transform pos: -131.5,12.5 parent: 2 + - uid: 20097 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 - uid: 20467 components: - type: Transform @@ -75437,6 +75265,12 @@ entities: parent: 2 - proto: ChairFolding entities: + - uid: 7086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.720272,-14.351717 + parent: 2 - uid: 8774 components: - type: Transform @@ -75551,6 +75385,12 @@ entities: rot: 3.141592653589793 rad pos: 46.466564,22.519264 parent: 2 + - uid: 20315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.767147,-13.523592 + parent: 2 - uid: 23812 components: - type: Transform @@ -75654,6 +75494,12 @@ entities: parent: 2 - proto: ChairOfficeDark entities: + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.501873,-11.378267 + parent: 2 - uid: 8801 components: - type: Transform @@ -75948,12 +75794,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.331448,-12.426326 parent: 2 - - uid: 8858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.470613,6.7639556 - parent: 2 - uid: 8859 components: - type: Transform @@ -75983,6 +75823,12 @@ entities: rot: 3.141592653589793 rad pos: 42.02883,22.769482 parent: 2 + - uid: 19349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.662786,6.633723 + parent: 2 - uid: 22342 components: - type: Transform @@ -76185,26 +76031,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,6.5 parent: 2 - - uid: 8883 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 8884 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 8885 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 8886 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 2 - uid: 8887 components: - type: Transform @@ -77213,6 +77039,14 @@ entities: - type: Transform pos: 42.5,-7.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 16200 components: - type: Transform @@ -77224,8 +77058,8 @@ entities: immutable: False temperature: 293.14673 moles: - Oxygen: 1.8856695 - Nitrogen: 7.0937095 + Oxygen: 1.8968438 + Nitrogen: 7.1357465 - type: ContainerContainer containers: entity_storage: !type:Container @@ -77294,11 +77128,6 @@ entities: - type: Transform pos: -63.5,45.5 parent: 2 - - uid: 9035 - components: - - type: Transform - pos: -66.5,23.5 - parent: 2 - uid: 9036 components: - type: Transform @@ -78678,6 +78507,10 @@ entities: components: - type: Transform parent: 1232 + - type: UserInterface + actors: + enum.StorageUiKey.Key: + - invalid - type: Physics canCollide: False - type: GroupExamine @@ -78696,6 +78529,8 @@ entities: priority: 0 component: Armor title: null + - type: ActiveUserInterface + - type: InsideEntityStorage - proto: ClothingBackpackSecurity entities: - uid: 1236 @@ -79436,7 +79271,7 @@ entities: - uid: 24016 components: - type: Transform - pos: -56.645245,-10.166597 + pos: -56.537582,-9.345248 parent: 2 - proto: ClothingHeadHatPurplesoftFlipped entities: @@ -79815,22 +79650,20 @@ entities: - type: InsideEntityStorage - proto: ClothingMultipleHeadphones entities: - - uid: 9348 + - uid: 5 components: - type: Transform - pos: 44.379528,-12.608146 + pos: 42.372005,-16.325546 parent: 2 - - uid: 9349 + - uid: 4856 components: - type: Transform - pos: 44.551403,-12.233146 + pos: 42.528255,-16.434921 parent: 2 -- proto: ClothingNeckCloakAce - entities: - - uid: 9332 + - uid: 10499 components: - type: Transform - pos: -34.519188,25.479324 + pos: -57.46197,-14.441543 parent: 2 - proto: ClothingNeckCloakAdmin entities: @@ -79848,13 +79681,6 @@ entities: - type: Transform pos: -75.593666,21.535728 parent: 2 -- proto: ClothingNeckCloakEnby - entities: - - uid: 9336 - components: - - type: Transform - pos: -32.582123,33.335163 - parent: 2 - proto: ClothingNeckCloakGay entities: - uid: 9337 @@ -79862,13 +79688,6 @@ entities: - type: Transform pos: -34.487938,29.385574 parent: 2 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 9338 - components: - - type: Transform - pos: -68.51435,-19.383087 - parent: 2 - proto: ClothingNeckCloakHerald entities: - uid: 9339 @@ -79883,13 +79702,6 @@ entities: - type: Transform pos: -46.493187,25.578531 parent: 2 -- proto: ClothingNeckCloakLesbian - entities: - - uid: 9341 - components: - - type: Transform - pos: -25.483047,33.553913 - parent: 2 - proto: ClothingNeckCloakMoth entities: - uid: 9343 @@ -80332,10 +80144,18 @@ entities: entities: - uid: 6755 components: + - type: MetaData + desc: 'Фу... ' + name: костюм из человеческой кожи - type: Transform rot: 1.5707963267948966 rad pos: 27.436817,15.416239 parent: 2 + missingComponents: + - PressureProtection + - ExplosionResistance + - Armor + - TemperatureProtection - uid: 28837 components: - type: Transform @@ -80565,11 +80385,6 @@ entities: parent: 24902 - proto: ClothingShoesBootsMag entities: - - uid: 5 - components: - - type: Transform - pos: 24.469347,-18.35476 - parent: 2 - uid: 9223 components: - type: Transform @@ -80890,6 +80705,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtDetectiveGrey entities: - uid: 9187 @@ -80899,6 +80718,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtMime entities: - uid: 9322 @@ -80908,6 +80731,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtWeb entities: - uid: 8124 @@ -80915,6 +80742,10 @@ entities: - type: Transform pos: 39.609997,23.573309 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitAerostatic entities: - uid: 9435 @@ -80922,6 +80753,10 @@ entities: - type: Transform pos: -19.499786,29.230545 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitDetective entities: - uid: 9188 @@ -80931,6 +80766,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitDetectiveGrey entities: - uid: 9189 @@ -80940,6 +80779,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitERTLeader entities: - uid: 28002 @@ -80949,6 +80792,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitLawyerBlue entities: - uid: 9436 @@ -80956,6 +80803,10 @@ entities: - type: Transform pos: -0.7239857,46.668728 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitLawyerRed entities: - uid: 9437 @@ -80963,6 +80814,10 @@ entities: - type: Transform pos: -6.2239857,46.590603 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitMime entities: - uid: 9323 @@ -80972,6 +80827,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 25526 @@ -80981,6 +80840,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 25534 components: - type: Transform @@ -80988,6 +80851,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 25541 components: - type: Transform @@ -80995,6 +80862,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 25548 components: - type: Transform @@ -81002,6 +80873,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 25556 components: - type: Transform @@ -81009,6 +80884,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 25564 components: - type: Transform @@ -81016,6 +80895,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitSuperstarCop entities: - uid: 9438 @@ -81023,6 +80906,10 @@ entities: - type: Transform pos: -39.995895,29.48571 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitWeb entities: - uid: 23786 @@ -81030,6 +80917,10 @@ entities: - type: Transform pos: 39.43812,23.542059 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClownRecorder entities: - uid: 1121 @@ -81488,11 +81379,11 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 943 + - uid: 4418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 + rot: 3.141592653589793 rad + pos: 21.5,17.5 parent: 2 - proto: ComputerBroken entities: @@ -81541,6 +81432,9 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,35.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Cargo - uid: 9486 components: - type: Transform @@ -81614,6 +81508,9 @@ entities: rot: 3.141592653589793 rad pos: 59.5,3.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Command - uid: 9489 components: - type: Transform @@ -81626,6 +81523,9 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-3.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Command - uid: 26151 components: - type: Transform @@ -81692,6 +81592,15 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: + - uid: 1267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 2 + - type: AccessReader + accessListsOriginal: + - - Security - uid: 9498 components: - type: Transform @@ -81896,11 +81805,6 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 9521 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 2 - uid: 9522 components: - type: Transform @@ -81958,6 +81862,9 @@ entities: - type: Transform pos: -7.5,-34.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Research - uid: 9526 components: - type: Transform @@ -81997,12 +81904,6 @@ entities: - type: Transform pos: -70.5,-9.5 parent: 2 - - uid: 9529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-14.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 3542 @@ -82036,14 +81937,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-5.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 9532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-17.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 9533 @@ -82100,18 +81993,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 - - uid: 9541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - - uid: 9542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - uid: 9543 components: - type: Transform @@ -82270,24 +82151,6 @@ entities: parent: 2 - proto: ConveyorBelt entities: - - uid: 9563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 2 - - uid: 9564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-14.5 - parent: 2 - - uid: 9565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-13.5 - parent: 2 - uid: 9566 components: - type: Transform @@ -82669,13 +82532,13 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage + removedMasks: 20 air: volume: 200 immutable: False temperature: 293.14673 moles: {} open: True - removedMasks: 20 - type: PlaceableSurface isPlaceable: True - uid: 24548 @@ -83009,17 +82872,17 @@ entities: immutable: False temperature: 293.1496 moles: - Oxygen: 2.0176363 - Nitrogen: 7.5901556 + Oxygen: 1.9074011 + Nitrogen: 7.175462 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 9617 - 9618 - 9619 + - 9617 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -83086,10 +82949,10 @@ entities: - - Cargo - proto: CrateLockBoxSecurity entities: - - uid: 30053 + - uid: 16801 components: - type: Transform - pos: 40.5,-11.5 + pos: 38.5,-9.5 parent: 2 - proto: CrateLockBoxService entities: @@ -83151,6 +83014,11 @@ entities: parent: 2 - proto: CrateMedicalSurgery entities: + - uid: 5828 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 - uid: 9622 components: - type: Transform @@ -83164,19 +83032,6 @@ entities: moles: Oxygen: 3.2184362 Nitrogen: 12.107451 - - uid: 9623 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - Oxygen: 1.7459903 - Nitrogen: 6.568249 - proto: CrateNPCHamlet entities: - uid: 17226 @@ -83264,10 +83119,10 @@ entities: ent: null - proto: CrateSalvageEquipment entities: - - uid: 9625 + - uid: 6063 components: - type: Transform - pos: -52.5,-11.5 + pos: -51.5,-9.5 parent: 2 - proto: CrateServiceBooks entities: @@ -83758,21 +83613,6 @@ entities: - type: Transform pos: -99.5,12.5 parent: 2 - - uid: 9664 - components: - - type: Transform - pos: -112.5,18.5 - parent: 2 - - uid: 9666 - components: - - type: Transform - pos: -95.5,25.5 - parent: 2 - - uid: 9667 - components: - - type: Transform - pos: -93.5,23.5 - parent: 2 - uid: 9668 components: - type: Transform @@ -83783,11 +83623,6 @@ entities: - type: Transform pos: -52.5,22.5 parent: 2 - - uid: 9670 - components: - - type: Transform - pos: -39.5,21.5 - parent: 2 - uid: 9672 components: - type: Transform @@ -84017,10 +83852,17 @@ entities: - type: Transform pos: 52.5,4.5 parent: 2 + - type: ActivatableUI + currentSingleUser: invalid + - type: UserInterface + actors: + enum.NavMapBeaconUiKey.Key: + - invalid - type: NavMapBeacon text: Мостик - type: WarpPoint location: Мостик + - type: ActiveUserInterface - uid: 29385 components: - type: Transform @@ -84623,14 +84465,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 9755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 9756 components: - type: Transform @@ -84646,6 +84480,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 12327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24559 components: - type: Transform @@ -84945,27 +84787,16 @@ entities: rot: 1.5707963267948966 rad pos: -125.5,-3.5 parent: 2 - - uid: 9804 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 2 - uid: 9805 components: - type: Transform rot: 3.141592653589793 rad pos: -125.5,-10.5 parent: 2 - - uid: 9806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-10.5 - parent: 2 - uid: 9807 components: - type: Transform - pos: -56.5,-6.5 + pos: -51.5,-13.5 parent: 2 - uid: 9808 components: @@ -85368,6 +85199,23 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,-0.5 parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-11.5 + parent: 2 - uid: 26207 components: - type: Transform @@ -85418,11 +85266,23 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,3.5 parent: 24902 + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 - uid: 29022 components: - type: Transform pos: 62.5,1.5 parent: 2 + - uid: 29025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 2 - uid: 29029 components: - type: Transform @@ -85469,12 +85329,6 @@ entities: - type: Transform pos: 36.5,-5.5 parent: 2 - - uid: 9879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 2 - uid: 9880 components: - type: Transform @@ -85665,6 +85519,12 @@ entities: rot: 3.141592653589793 rad pos: -31.5,9.5 parent: 24902 + - uid: 28611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 - uid: 29020 components: - type: Transform @@ -85838,6 +85698,18 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 9804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-11.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 - uid: 9933 components: - type: Transform @@ -86273,12 +86145,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-16.5 parent: 2 - - uid: 10009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-15.5 - parent: 2 - uid: 10010 components: - type: Transform @@ -86455,25 +86321,25 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-14.5 + pos: -58.5,-7.5 parent: 2 - uid: 10040 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-13.5 + pos: -58.5,-9.5 parent: 2 - uid: 10041 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-12.5 + pos: -58.5,-8.5 parent: 2 - uid: 10042 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-11.5 + pos: -58.5,-10.5 parent: 2 - uid: 10043 components: @@ -86497,25 +86363,24 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-10.5 + pos: -56.5,-11.5 parent: 2 - uid: 10047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 + pos: -55.5,-12.5 parent: 2 - uid: 10048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-10.5 + rot: 1.5707963267948966 rad + pos: -54.5,-13.5 parent: 2 - uid: 10049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-10.5 + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 parent: 2 - uid: 10050 components: @@ -86556,17 +86421,14 @@ entities: - uid: 10057 components: - type: Transform - pos: -56.5,-9.5 + rot: 3.141592653589793 rad + pos: -51.5,-14.5 parent: 2 - uid: 10058 components: - type: Transform - pos: -56.5,-8.5 - parent: 2 - - uid: 10059 - components: - - type: Transform - pos: -56.5,-7.5 + rot: 3.141592653589793 rad + pos: -51.5,-15.5 parent: 2 - uid: 10060 components: @@ -86640,12 +86502,6 @@ entities: rot: 1.5707963267948966 rad pos: -112.5,-10.5 parent: 2 - - uid: 10072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 2 - uid: 10073 components: - type: Transform @@ -89794,12 +89650,138 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,1.5 parent: 2 + - uid: 18962 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -24.5,30.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: -24.5,35.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: -24.5,28.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: -24.5,31.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: -24.5,26.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 19936 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 - uid: 20513 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,17.5 parent: 2 + - uid: 21002 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 - uid: 26221 components: - type: Transform @@ -90928,6 +90910,18 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 + - uid: 17501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 - uid: 20023 components: - type: Transform @@ -91354,6 +91348,12 @@ entities: parent: 2 - proto: DisposalYJunction entities: + - uid: 9879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 - uid: 10736 components: - type: Transform @@ -91407,8 +91407,8 @@ entities: server: 17948 connectedToServer: True - type: DnaModifierConsole - lastSubjectInjectTime: 14625.7365731 - lastInjectorTime: 14625.7365731 + lastSubjectInjectTime: 1941.075828 + lastInjectorTime: 1941.075828 - uid: 29710 components: - type: Transform @@ -91419,8 +91419,8 @@ entities: server: 17948 connectedToServer: True - type: DnaModifierConsole - lastSubjectInjectTime: 14625.7365731 - lastInjectorTime: 14625.7365731 + lastSubjectInjectTime: 1941.075828 + lastInjectorTime: 1941.075828 - proto: DogBed entities: - uid: 10741 @@ -91672,6 +91672,11 @@ entities: - type: Transform pos: -12.5,19.5 parent: 2 + - type: UserInterface + actors: + enum.StorageUiKey.Key: + - invalid + - type: ActiveUserInterface - uid: 29751 components: - type: Transform @@ -91995,6 +92000,16 @@ entities: - type: InsideEntityStorage - proto: DrinkColaCan entities: + - uid: 7088 + components: + - type: Transform + pos: -57.602596,-13.222793 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -57.30572,-13.285293 + parent: 2 - uid: 30490 components: - type: Transform @@ -92058,6 +92073,18 @@ entities: - type: Transform pos: -23.553133,28.0041 parent: 2 +- proto: DrinkGlassCoupeShaped + entities: + - uid: 1347 + components: + - type: Transform + pos: 50.621502,15.737045 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 50.230877,15.612045 + parent: 2 - proto: DrinkGlassWhite entities: - uid: 10826 @@ -92243,13 +92270,6 @@ entities: enabled: False - type: Physics sleepingAllowed: False -- proto: DrinkRumBottleFull - entities: - - uid: 10851 - components: - - type: Transform - pos: -42.923786,-19.560858 - parent: 2 - proto: DrinkSbitenGlass entities: - uid: 10852 @@ -92635,6 +92655,12 @@ entities: program: 28 - proto: EmergencyLight entities: + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 - uid: 9643 components: - type: Transform @@ -92835,15 +92861,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 10937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,8.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 10941 components: - type: Transform @@ -93210,15 +93227,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 10983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 10984 components: - type: Transform @@ -94155,11 +94163,23 @@ entities: - type: Transform pos: -18.5,10.5 parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 - uid: 15894 components: - type: Transform pos: -5.5,-0.5 parent: 2 + - uid: 16092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,7.5 + parent: 2 - uid: 18408 components: - type: Transform @@ -94828,6 +94848,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 11627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 13072 components: - type: Transform @@ -95040,23 +95068,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-13.5 parent: 2 -- proto: FigureSpawner - entities: - - uid: 11189 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 11190 - components: - - type: Transform - pos: -49.5,9.5 - parent: 2 - - uid: 11191 - components: - - type: Transform - pos: 6.5,27.5 - parent: 2 - proto: filingCabinet entities: - uid: 11192 @@ -95159,6 +95170,19 @@ entities: parent: 2 - proto: FireAlarm entities: + - uid: 3603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 3674 + - 7085 + - 6610 + - type: Fixtures + fixtures: {} - uid: 6420 components: - type: Transform @@ -95202,18 +95226,6 @@ entities: - 481 - type: Fixtures fixtures: {} - - uid: 11211 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 483 - - 11299 - - 11301 - - type: Fixtures - fixtures: {} - uid: 11212 components: - type: Transform @@ -95227,6 +95239,9 @@ entities: - 11321 - 11322 - 11323 + - 29485 + - 29565 + - 29901 - type: Fixtures fixtures: {} - uid: 11213 @@ -95480,7 +95495,6 @@ entities: - type: DeviceList devices: - 11359 - - 11360 - type: Fixtures fixtures: {} - uid: 11232 @@ -95695,6 +95709,14 @@ entities: - 29729 - type: Fixtures fixtures: {} + - uid: 19350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24261 components: - type: Transform @@ -96075,6 +96097,8 @@ entities: pos: -46.5,-12.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 74 - 11245 @@ -96274,6 +96298,27 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 24902 + - uid: 29382 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 29485 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11212 + - uid: 29565 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11212 - uid: 29712 components: - type: Transform @@ -96286,28 +96331,26 @@ entities: pos: -8.5,-39.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 29904 - 29948 -- proto: FirelockEdge - entities: - - uid: 11299 + - uid: 29901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 + pos: -68.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11212 +- proto: FirelockEdge + entities: - uid: 11300 components: - type: Transform pos: -51.5,-4.5 parent: 2 - - uid: 11301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 2 - uid: 11302 components: - type: Transform @@ -96448,6 +96491,25 @@ entities: parent: 2 - proto: FirelockGlass entities: + - uid: 335 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 3674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3603 - uid: 6406 components: - type: Transform @@ -96466,6 +96528,28 @@ entities: - type: DeviceNetwork deviceLists: - 46 + - uid: 6610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3603 + - uid: 7085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3603 - uid: 10497 components: - type: Transform @@ -96747,11 +96831,6 @@ entities: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 11360 - components: - - type: Transform - pos: -70.5,10.5 - parent: 2 - uid: 11363 components: - type: Transform @@ -96892,7 +96971,7 @@ entities: pos: -15.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -157363.25 + secondsUntilStateChange: -174245.1 state: Closing - uid: 11389 components: @@ -97195,15 +97274,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 - - uid: 11439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16 - uid: 11440 components: - type: Transform @@ -97526,6 +97596,12 @@ entities: - type: DeviceNetwork deviceLists: - 14 + - uid: 12738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 - uid: 14141 components: - type: Transform @@ -97964,6 +98040,18 @@ entities: - type: Transform pos: 63.5,13.5 parent: 2 +- proto: Flash + entities: + - uid: 11427 + components: + - type: Transform + pos: 9.552989,-12.328362 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: 9.396739,-12.422112 + parent: 2 - proto: FlashlightLantern entities: - uid: 11482 @@ -98674,6 +98762,16 @@ entities: parent: 2 - proto: FoodBoxPizzaFilled entities: + - uid: 3231 + components: + - type: Transform + pos: -57.39947,-13.675918 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -57.508846,-13.550918 + parent: 2 - uid: 11574 components: - type: Transform @@ -99083,6 +99181,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 16200 - proto: FoodPieFrosty entities: - uid: 11131 @@ -99264,13 +99363,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: GasCanisterBrokenBase - entities: - - uid: 11627 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - proto: GasFilter entities: - uid: 11636 @@ -100757,14 +100849,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 12867 components: - type: Transform @@ -101263,14 +101347,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14513 components: - type: Transform @@ -101287,18 +101363,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14590 + - uid: 14586 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-10.5 + pos: -55.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14597 + - uid: 14588 components: - type: Transform - pos: -51.5,-10.5 + rot: 3.141592653589793 rad + pos: -58.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14594 + components: + - type: Transform + pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -101317,6 +101409,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 28839 components: - type: Transform @@ -101334,6 +101434,14 @@ entities: color: '#0000FFFF' - proto: GasPipeBendAlt2 entities: + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1343 components: - type: Transform @@ -101341,6 +101449,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 4847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9364 components: - type: Transform @@ -101349,6 +101473,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11701 components: - type: Transform @@ -101712,13 +101844,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12736 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12756 components: - type: Transform @@ -102235,6 +102360,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 14481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14484 components: - type: Transform @@ -102274,26 +102407,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14598 + - uid: 14587 components: - type: Transform - pos: -51.5,-10.5 + pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -102329,7 +102446,7 @@ entities: color: '#FF0000FF' - proto: GasPipeFourway entities: - - uid: 11956 + - uid: 5985 components: - type: Transform pos: 7.5,22.5 @@ -102483,13 +102600,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14584 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14629 components: - type: Transform @@ -102499,13 +102609,6 @@ entities: color: '#0000FFFF' - proto: GasPipeFourwayAlt2 entities: - - uid: 11757 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12148 components: - type: Transform @@ -102982,70 +103085,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 12333 components: - type: Transform @@ -103094,13 +103133,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12825 - components: - - type: Transform - pos: -59.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12982 components: - type: Transform @@ -103387,12 +103419,6 @@ entities: rot: 1.5707963267948966 rad pos: -122.5,9.5 parent: 2 - - uid: 13445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 2 - uid: 13470 components: - type: Transform @@ -103407,18 +103433,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 2 - - uid: 13564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 2 - uid: 13568 components: - type: Transform @@ -106729,6 +106743,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 3547 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3624 components: - type: Transform @@ -106745,6 +106766,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 4848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7616 components: - type: Transform @@ -106776,6 +106813,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 9563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 10512 components: - type: Transform @@ -106784,6 +106829,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 10937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 11204 components: - type: Transform @@ -109258,14 +109311,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 12743 components: - type: Transform @@ -109682,14 +109727,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 12877 components: - type: Transform @@ -109705,13 +109742,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12880 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 12882 components: - type: Transform @@ -114366,8 +114396,7 @@ entities: - uid: 14558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 + pos: -58.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -114387,22 +114416,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14572 components: - type: Transform @@ -114435,35 +114448,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14594 + - uid: 14583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 + pos: -58.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14595 + - uid: 14584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-10.5 + pos: -58.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14596 + - uid: 14598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-10.5 + pos: -58.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -114574,6 +114576,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 17507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 17654 components: - type: Transform @@ -114582,6 +114592,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 18465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 19917 components: - type: Transform @@ -114590,6 +114608,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20319 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 28842 components: - type: Transform @@ -114703,6 +114728,14 @@ entities: color: '#0000FFFF' - proto: GasPipeStraightAlt2 entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 503 components: - type: Transform @@ -114727,6 +114760,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 3548 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 5918 components: - type: Transform @@ -114735,6 +114783,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 6756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 6764 components: - type: Transform @@ -117467,14 +117523,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12740 components: - type: Transform @@ -117531,14 +117579,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12760 components: - type: Transform @@ -117965,13 +118005,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12898 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12899 components: - type: Transform @@ -121555,6 +121588,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 14388 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14413 components: - type: Transform @@ -121863,8 +121911,7 @@ entities: - uid: 14556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 + pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -121884,11 +121931,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14564 + - uid: 14562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-10.5 + pos: -58.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -121940,41 +121986,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14599 + - uid: 14596 components: - type: Transform - pos: -51.5,-12.5 + pos: -58.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14600 + - uid: 14597 components: - type: Transform - pos: -51.5,-11.5 + pos: -58.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -122042,6 +122064,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 17229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17653 components: - type: Transform @@ -122050,6 +122080,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 17964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18004 components: - type: Transform @@ -122058,6 +122096,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 18486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 24084 components: - type: Transform @@ -122263,12 +122317,6 @@ entities: rot: 3.141592653589793 rad pos: -125.5,1.5 parent: 2 - - uid: 14301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 2 - uid: 14304 components: - type: Transform @@ -122746,6 +122794,14 @@ entities: color: '#FF0000FF' - proto: GasPipeTJunctionAlt1 entities: + - uid: 3559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 6412 components: - type: Transform @@ -123462,14 +123518,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14246 components: - type: Transform @@ -123587,6 +123635,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14581 components: - type: Transform @@ -123595,6 +123651,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 14591 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14635 components: - type: Transform @@ -123612,6 +123675,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 3554 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3625 components: - type: Transform @@ -123658,6 +123728,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9755 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11754 components: - type: Transform @@ -123943,14 +124020,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12920 components: - type: Transform @@ -124404,19 +124473,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14582 + - uid: 14564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-0.5 + pos: -58.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14583 + - uid: 14582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-8.5 + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -124452,6 +124520,12 @@ entities: color: '#FF0000FF' - proto: GasPort entities: + - uid: 12319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 - uid: 13998 components: - type: Transform @@ -124578,12 +124652,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,26.5 parent: 2 - - uid: 14388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 - parent: 2 - uid: 14389 components: - type: Transform @@ -124685,6 +124753,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 - uid: 13555 components: - type: Transform @@ -124725,14 +124799,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 2 - - type: GasPressurePump - targetPressure: 150 - uid: 21424 components: - type: Transform @@ -124962,6 +125028,15 @@ entities: parent: 2 - proto: GasVentPump entities: + - uid: 141 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 12230 components: - type: Transform @@ -125067,17 +125142,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14579 components: - type: Transform @@ -125167,6 +125231,10 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,13.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: AtmosPipeLayers + pipeLayer: Secondary - type: DeviceNetwork deviceLists: - 30 @@ -125577,6 +125645,8 @@ entities: pos: -50.5,-11.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 22 - type: AtmosPipeColor @@ -126109,15 +126179,6 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16141 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 16180 components: - type: Transform @@ -126718,6 +126779,16 @@ entities: color: '#0000FFFF' - proto: GasVentScrubber entities: + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: AtmosPipeLayers + pipeLayer: Tertiary - uid: 8156 components: - type: Transform @@ -126728,6 +126799,16 @@ entities: color: '#FF0000FF' - type: AtmosPipeLayers pipeLayer: Tertiary + - uid: 11757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14039 components: - type: Transform @@ -126940,6 +127021,10 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,13.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: DeviceNetwork deviceLists: - 30 @@ -127391,6 +127476,8 @@ entities: pos: -50.5,-13.5 parent: 2 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 22 - type: AtmosPipeColor @@ -128235,16 +128322,6 @@ entities: pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 28820 components: - type: Transform @@ -128538,15 +128615,6 @@ entities: parent: 24902 - type: AtmosPipeColor color: '#17E8E2FF' -- proto: Gateway - entities: - - uid: 14739 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - type: Gateway - enabled: True - proto: Gauze entities: - uid: 14740 @@ -128567,11 +128635,6 @@ entities: - type: InsideEntityStorage - proto: GeneratorBasic15kW entities: - - uid: 14741 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - uid: 26772 components: - type: Transform @@ -128878,6 +128941,12 @@ entities: rot: 3.141592653589793 rad pos: -85.5,50.5 parent: 2 + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 2 - uid: 684 components: - type: Transform @@ -129007,12 +129076,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - uid: 9002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - uid: 9003 components: - type: Transform @@ -129145,11 +129208,6 @@ entities: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 14766 - components: - - type: Transform - pos: -88.5,17.5 - parent: 2 - uid: 14768 components: - type: Transform @@ -129637,11 +129695,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-16.5 parent: 2 - - uid: 14883 - components: - - type: Transform - pos: -38.5,11.5 - parent: 2 - uid: 14887 components: - type: Transform @@ -132404,12 +132457,6 @@ entities: rot: -1.5707963267948966 rad pos: -149.5,10.5 parent: 2 - - uid: 15613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,0.5 - parent: 2 - uid: 15614 components: - type: Transform @@ -132482,12 +132529,6 @@ entities: rot: 3.141592653589793 rad pos: -106.5,36.5 parent: 2 - - uid: 16594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - uid: 16596 components: - type: Transform @@ -132650,17 +132691,39 @@ entities: rot: 3.141592653589793 rad pos: -106.5,32.5 parent: 2 + - uid: 18595 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 18596 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 - uid: 18612 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-31.5 parent: 2 + - uid: 19221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 2 - uid: 19290 components: - type: Transform pos: -80.5,22.5 parent: 2 + - uid: 19348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-18.5 + parent: 2 - uid: 20441 components: - type: Transform @@ -136229,90 +136292,92 @@ entities: showEnts: False occludes: True ent: null - - uid: 1216 + - uid: 4857 components: - type: Transform - pos: 43.5,-16.5 + pos: 45.5,-11.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14673 moles: - Oxygen: 1.8968438 - Nitrogen: 7.1357465 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 1223 - - 1219 - - 1222 - 1217 - - 1220 - - 1218 + - 1222 - 1221 + - 1219 + - 1218 + - 1220 + - 1223 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 7782 + - uid: 4859 components: - type: Transform - pos: 45.5,-5.5 + pos: 45.5,-12.5 parent: 2 - - type: AccessReader - accessListsOriginal: [] + - type: Lock + locked: False - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - Oxygen: 1.8856695 - Nitrogen: 7.0937095 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 8246 - - 3025 - - 1207 + - 15777 + - 15776 + - 15775 + - 15780 + - 15778 + - 15779 + - 15781 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15774 + - uid: 7782 components: - type: Transform - pos: 42.5,-16.5 + pos: 45.5,-5.5 parent: 2 + - type: AccessReader + accessListsOriginal: [] - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14673 moles: - Oxygen: 1.8968438 - Nitrogen: 7.1357465 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 15780 - - 15779 - - 15781 - - 15777 - - 15776 - - 15775 - - 15778 + - 8246 + - 3025 + - 1207 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -136590,6 +136655,11 @@ entities: rot: -1.5707963267948966 rad pos: 44.098045,17.553024 parent: 2 + - uid: 20101 + components: + - type: Transform + pos: 1.6471611,6.446223 + parent: 2 - uid: 23912 components: - type: Transform @@ -136737,20 +136807,20 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 2 -- proto: HighSecCommandLocked +- proto: HighSecCentralCommandLocked entities: - - uid: 356 + - uid: 5982 components: - type: Transform - pos: 42.5,4.5 + pos: 36.5,17.5 parent: 2 - - uid: 5974 +- proto: HighSecCommandLocked + entities: + - uid: 356 components: - type: Transform - pos: 38.5,16.5 + pos: 42.5,4.5 parent: 2 - - type: WiresPanel - open: True - uid: 15819 components: - type: Transform @@ -136782,6 +136852,8 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 2 + - type: AccessReader + accessListsOriginal: [] - uid: 30419 components: - type: Transform @@ -137144,10 +137216,10 @@ entities: parent: 2 - proto: HolopadSecurityArmory entities: - - uid: 30017 + - uid: 9349 components: - type: Transform - pos: 42.5,-6.5 + pos: 41.5,-6.5 parent: 2 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -137397,7 +137469,7 @@ entities: pos: 9.5,18.5 parent: 2 - type: Door - secondsUntilStateChange: -90593.055 + secondsUntilStateChange: -107474.88 state: Opening - uid: 15829 components: @@ -137470,7 +137542,7 @@ entities: pos: 10.5,18.5 parent: 2 - type: Door - secondsUntilStateChange: -90593.49 + secondsUntilStateChange: -107475.32 state: Opening - uid: 15841 components: @@ -137478,7 +137550,7 @@ entities: pos: 11.5,18.5 parent: 2 - type: Door - secondsUntilStateChange: -90593.79 + secondsUntilStateChange: -107475.62 state: Opening - uid: 29748 components: @@ -137524,7 +137596,7 @@ entities: pos: -34.5,-3.5 parent: 2 - type: Door - secondsUntilStateChange: -179462.66 + secondsUntilStateChange: -196344.5 state: Closing - uid: 15845 components: @@ -138952,51 +139024,21 @@ entities: parent: 2 - proto: LandMineExplosive entities: - - uid: 10499 - components: - - type: Transform - pos: 24.604279,14.518721 - parent: 2 - - uid: 11427 - components: - - type: Transform - pos: -19.472712,24.434994 - parent: 2 - uid: 15517 components: - type: Transform pos: -124.59121,21.293844 parent: 2 - - uid: 15519 - components: - - type: Transform - pos: -120.497986,20.290895 - parent: 2 - - uid: 15521 - components: - - type: Transform - pos: -92.475624,28.449759 - parent: 2 - uid: 16019 components: - type: Transform pos: -128.36453,20.376547 parent: 2 - - uid: 16020 - components: - - type: Transform - pos: -21.476042,24.519205 - parent: 2 - uid: 16022 components: - type: Transform pos: 13.504804,-18.557623 parent: 2 - - uid: 16023 - components: - - type: Transform - pos: 48.645195,-39.542725 - parent: 2 - uid: 16024 components: - type: Transform @@ -139007,81 +139049,16 @@ entities: - type: Transform pos: 0.49442625,43.3962 parent: 2 - - uid: 16026 - components: - - type: Transform - pos: -4.4686537,40.2199 - parent: 2 - - uid: 16027 - components: - - type: Transform - pos: 34.688606,-35.510906 - parent: 2 - - uid: 16028 - components: - - type: Transform - pos: 45.43202,-39.511475 - parent: 2 - uid: 16029 components: - type: Transform pos: 0.68342876,35.56857 parent: 2 - - uid: 16030 - components: - - type: Transform - pos: 51.545723,-39.5271 - parent: 2 - - uid: 16031 - components: - - type: Transform - pos: 64.545456,-30.41801 - parent: 2 - - uid: 16032 - components: - - type: Transform - pos: 65.56108,-28.496136 - parent: 2 - uid: 16033 components: - type: Transform pos: -20.449375,23.433443 parent: 2 - - uid: 16034 - components: - - type: Transform - pos: 13.508022,-19.632198 - parent: 2 - - uid: 16035 - components: - - type: Transform - pos: 55.529015,-39.542725 - parent: 2 - - uid: 16037 - components: - - type: Transform - pos: 60.53694,-39.44049 - parent: 2 - - uid: 16038 - components: - - type: Transform - pos: 65.482956,-21.431732 - parent: 2 - - uid: 16039 - components: - - type: Transform - pos: 65.52983,-25.452562 - parent: 2 - - uid: 16040 - components: - - type: Transform - pos: 64.576706,-33.507435 - parent: 2 - - uid: 16041 - components: - - type: Transform - pos: 41.560143,-39.416103 - parent: 2 - uid: 16042 components: - type: Transform @@ -139102,31 +139079,11 @@ entities: - type: Transform pos: 48.75504,-13.654327 parent: 2 - - uid: 16046 - components: - - type: Transform - pos: 64.50569,-37.53424 - parent: 2 - uid: 16048 components: - type: Transform pos: -39.265236,29.588594 parent: 2 - - uid: 16049 - components: - - type: Transform - pos: 34.520016,-32.603832 - parent: 2 - - uid: 16051 - components: - - type: Transform - pos: 3.2316017,44.17537 - parent: 2 - - uid: 16052 - components: - - type: Transform - pos: 63.514202,-18.509857 - parent: 2 - uid: 16338 components: - type: Transform @@ -139137,21 +139094,6 @@ entities: - type: Transform pos: -106.503365,-23.523531 parent: 2 - - uid: 22139 - components: - - type: Transform - pos: 65.42241,4.502076 - parent: 2 - - uid: 22340 - components: - - type: Transform - pos: -66.53973,21.458557 - parent: 2 - - uid: 24029 - components: - - type: Transform - pos: 56.591454,-11.512607 - parent: 2 - uid: 29331 components: - type: Transform @@ -139162,36 +139104,6 @@ entities: - type: Transform pos: -47.57104,46.74333 parent: 2 - - uid: 29334 - components: - - type: Transform - pos: 35.44922,-38.562534 - parent: 2 - - uid: 29339 - components: - - type: Transform - pos: 46.504993,25.465752 - parent: 2 - - uid: 29343 - components: - - type: Transform - pos: 37.469868,-39.50649 - parent: 2 - - uid: 30547 - components: - - type: Transform - pos: -130.46773,39.415535 - parent: 2 - - uid: 30565 - components: - - type: Transform - pos: -129.49898,48.460182 - parent: 2 - - uid: 30566 - components: - - type: Transform - pos: -110.50486,52.350258 - parent: 2 - proto: LandMineModular entities: - uid: 16053 @@ -139235,6 +139147,20 @@ entities: - type: Transform pos: 30.62089,13.603836 parent: 2 + - type: HandheldLight + toggleActionEntity: 19651 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 19651 + - type: ActionsContainer - proto: LargeBeaker entities: - uid: 16057 @@ -139259,6 +139185,14 @@ entities: - type: Transform pos: 40.4021,-9.511775 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 1614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 2 - proto: LeavesCannabisDried entities: - uid: 9610 @@ -139347,6 +139281,9 @@ entities: - type: Transform pos: 2.5,-38.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Atmospherics - proto: LiquidNitrogenCanister entities: - uid: 16073 @@ -139359,6 +139296,9 @@ entities: - type: Transform pos: -0.5,-38.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Atmospherics - uid: 16075 components: - type: Transform @@ -139443,6 +139383,9 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Brig - type: WirelessNetworkConnection range: 100 - type: DeviceLinkSource @@ -139467,6 +139410,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Brig - type: DeviceLinkSource linkedPorts: 1061: @@ -139549,33 +139495,6 @@ entities: - Toggle - type: Fixtures fixtures: {} - - uid: 16083 - components: - - type: MetaData - name: кнопка с замком вызова ОБР - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 2 - - type: WirelessNetworkConnection - range: 10000 - - type: DeviceLinkSource - range: 10000 - linkedPorts: - 27734: - - - Pressed - - Open - 16066: - - - Pressed - - Toggle - 16061: - - - Pressed - - Toggle - 16064: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - uid: 24137 components: - type: Transform @@ -139793,6 +139712,9 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-41.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Research - type: DeviceLinkSource linkedPorts: 14613: @@ -139883,27 +139805,6 @@ entities: fixtures: {} - proto: LockableButtonSalvage entities: - - uid: 16090 - components: - - type: MetaData - name: кнопка с замком от внешних гермозатворов - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-17.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1045: - - - Pressed - - Toggle - 1041: - - - Pressed - - Toggle - 1040: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - uid: 16091 components: - type: MetaData @@ -139911,35 +139812,6 @@ entities: - type: Transform pos: -53.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1045: - - - Pressed - - Toggle - 1041: - - - Pressed - - Toggle - 1040: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - - uid: 16092 - components: - - type: MetaData - name: кнопка с замком от защитных гермозатворов - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1053: - - - Pressed - - Toggle - 1054: - - - Pressed - - Toggle - type: Fixtures fixtures: {} - proto: LockerAtmosphericsFilled @@ -140379,6 +140251,9 @@ entities: - type: Transform pos: 38.5,-23.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Security - uid: 16127 components: - type: Transform @@ -141234,6 +141109,12 @@ entities: parent: 2 - proto: LuxuryPen entities: + - uid: 4845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.232906,-12.535239 + parent: 2 - uid: 11229 components: - type: Transform @@ -141441,10 +141322,11 @@ entities: - uid: 1220 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - proto: MagazineBoxRifle entities: - uid: 1213 @@ -141547,24 +141429,27 @@ entities: - uid: 1221 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - uid: 1222 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - uid: 1223 components: - type: Transform - parent: 1216 + parent: 4857 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4857 - proto: MagazineRifle entities: - uid: 27773 @@ -142094,6 +141979,23 @@ entities: - type: Transform pos: 27.5,17.5 parent: 2 +- proto: MechFigurineSpawner50 + entities: + - uid: 11189 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 - proto: MedicalBed entities: - uid: 16119 @@ -142578,13 +142480,6 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 2 -- proto: MiningDrill - entities: - - uid: 16295 - components: - - type: Transform - pos: -27.485138,27.681524 - parent: 2 - proto: MiningWindow entities: - uid: 26946 @@ -143558,8 +143453,25 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 29379 + components: + - type: Transform + pos: -56.531456,-16.48114 + parent: 2 - proto: OreBox entities: + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-17.5 + parent: 2 - uid: 27007 components: - type: Transform @@ -143574,11 +143486,18 @@ entities: parent: 24902 - proto: OreProcessor entities: - - uid: 16383 + - uid: 7091 components: - type: Transform - pos: -57.5,-8.5 + pos: -54.5,-15.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - Biochemical - uid: 27009 components: - type: Transform @@ -145594,6 +145513,13 @@ entities: - type: Transform pos: -25.532013,29.75965 parent: 2 +- proto: PlushieGhost + entities: + - uid: 12825 + components: + - type: Transform + pos: 40.513466,31.498024 + parent: 2 - proto: PlushieLamp entities: - uid: 16640 @@ -145613,6 +145539,11 @@ entities: parent: 2 - proto: PlushieLizard entities: + - uid: 1613 + components: + - type: Transform + pos: 41.496162,-11.324334 + parent: 2 - uid: 16643 components: - type: Transform @@ -145654,14 +145585,6 @@ entities: - type: Transform pos: 6.4452353,-25.472715 parent: 2 - - uid: 16647 - components: - - type: MetaData - desc: Откусанная каким то нианом плюшевая игрушка. От неё веет сильным запахом рома и смеси кислот. - name: плюшевый Хоук - - type: Transform - pos: -42.513985,-19.490135 - parent: 2 - uid: 23277 components: - type: Transform @@ -145705,11 +145628,6 @@ entities: - type: Transform pos: 1.4425585,-31.546919 parent: 2 - - uid: 29924 - components: - - type: Transform - pos: -19.645634,-43.493305 - parent: 2 - proto: PlushieSpaceLizard entities: - uid: 16655 @@ -145717,6 +145635,58 @@ entities: - type: Transform pos: 14.659873,39.583782 parent: 2 +- proto: PlushieSpawner50 + entities: + - uid: 8609 + components: + - type: Transform + pos: -125.5,-13.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + pos: -80.5,-24.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 19988 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 19989 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 30083 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 30084 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 - proto: PlushieXeno entities: - uid: 16656 @@ -146329,6 +146299,16 @@ entities: parent: 2 - type: Fixtures fixtures: {} +- proto: PosterLegitIonRifle + entities: + - uid: 22340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 16718 @@ -146521,15 +146501,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: PosterLegitVacation - entities: - - uid: 24088 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - type: Fixtures - fixtures: {} - proto: PotatoAIChip entities: - uid: 16727 @@ -146639,6 +146610,26 @@ entities: parent: 2 - proto: PottedPlantRandom entities: + - uid: 1040 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 - uid: 16744 components: - type: Transform @@ -146915,11 +146906,6 @@ entities: - type: Transform pos: 34.5,-5.5 parent: 2 - - uid: 16801 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 2 - uid: 16802 components: - type: Transform @@ -146930,11 +146916,6 @@ entities: - type: Transform pos: 13.5,-5.5 parent: 2 - - uid: 16804 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - uid: 16805 components: - type: Transform @@ -146965,6 +146946,11 @@ entities: - type: Transform pos: -18.5,10.5 parent: 2 + - uid: 22138 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 - uid: 27014 components: - type: Transform @@ -147332,6 +147318,24 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,15.5 parent: 2 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-17.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 - uid: 6424 components: - type: Transform @@ -147344,17 +147348,39 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,12.5 parent: 2 + - uid: 6611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 - uid: 9107 components: - type: Transform pos: -75.5,18.5 parent: 2 + - uid: 9565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 - uid: 10716 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,15.5 parent: 2 + - uid: 12320 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 - uid: 14103 components: - type: Transform @@ -147396,12 +147422,6 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,14.5 parent: 2 - - uid: 16333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 2 - uid: 16334 components: - type: Transform @@ -149293,14 +149313,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17122 components: - type: Transform @@ -149329,11 +149341,6 @@ entities: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 17126 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 2 - uid: 17127 components: - type: Transform @@ -149605,6 +149612,11 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-6.5 parent: 2 + - uid: 23412 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 - uid: 23538 components: - type: Transform @@ -150493,12 +150505,6 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 1347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,13.5 - parent: 2 - uid: 3217 components: - type: Transform @@ -150554,6 +150560,12 @@ entities: rot: 3.141592653589793 rad pos: -119.5,-19.5 parent: 2 + - uid: 14600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-17.5 + parent: 2 - uid: 14719 components: - type: Transform @@ -150565,6 +150577,12 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-29.5 parent: 2 + - uid: 16090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-13.5 + parent: 2 - uid: 16850 components: - type: Transform @@ -150663,13 +150681,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17229 - components: - - type: Transform - pos: -73.5,-12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17230 components: - type: Transform @@ -151295,11 +151306,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 - - uid: 17326 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - uid: 17327 components: - type: Transform @@ -151502,11 +151508,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,6.5 parent: 2 - - uid: 23995 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - uid: 24000 components: - type: Transform @@ -151914,12 +151915,30 @@ entities: rot: 3.141592653589793 rad pos: 31.5,6.5 parent: 2 + - uid: 4852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-16.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 - uid: 10903 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-1.5 parent: 2 + - uid: 14599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 - uid: 16059 components: - type: Transform @@ -152385,11 +152404,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 - - uid: 17442 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 2 - uid: 17443 components: - type: Transform @@ -152467,45 +152481,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 - - uid: 17456 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 2 - - uid: 17457 - components: - - type: Transform - pos: -49.5,-20.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-19.5 - parent: 2 - - uid: 17459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 2 - uid: 17460 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-8.5 parent: 2 - - uid: 17461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-20.5 - parent: 2 - - uid: 17462 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 2 - uid: 17463 components: - type: Transform @@ -152582,11 +152563,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - uid: 17486 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - uid: 18321 components: - type: Transform @@ -152721,18 +152697,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 17490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 2 - - uid: 17491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-20.5 - parent: 2 - uid: 17492 components: - type: Transform @@ -152751,11 +152715,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,23.5 parent: 2 - - uid: 17496 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - proto: RailingCornerSmall entities: - uid: 320 @@ -152791,12 +152750,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-18.5 parent: 2 - - uid: 17500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-20.5 - parent: 2 - uid: 17502 components: - type: Transform @@ -152849,15 +152802,15 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 17506 + - uid: 6594 components: - type: Transform - pos: -5.5,-44.5 + pos: -0.5,-45.5 parent: 2 - - uid: 17507 + - uid: 17506 components: - type: Transform - pos: -55.5,-15.5 + pos: -5.5,-44.5 parent: 2 - proto: RandomBoard entities: @@ -153179,6 +153132,18 @@ entities: - type: Transform pos: 37.5,16.5 parent: 2 + - uid: 3551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-15.5 + parent: 2 - uid: 17554 components: - type: Transform @@ -153231,15 +153196,16 @@ entities: parent: 24902 - proto: RandomPosterLegit entities: - - uid: 5982 + - uid: 11007 components: - type: Transform - pos: 32.5,20.5 + pos: -8.5,0.5 parent: 2 - - uid: 11007 + - uid: 12321 components: - type: Transform - pos: -8.5,0.5 + rot: 3.141592653589793 rad + pos: 19.5,-15.5 parent: 2 - uid: 17560 components: @@ -153272,11 +153238,6 @@ entities: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 17568 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - uid: 17569 components: - type: Transform @@ -153704,11 +153665,6 @@ entities: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 30124 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - uid: 30125 components: - type: Transform @@ -154531,15 +154487,15 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 17706 + - uid: 9035 components: - type: Transform - pos: -24.5,-17.5 + pos: -66.5,23.5 parent: 2 - - uid: 17707 + - uid: 17706 components: - type: Transform - pos: -67.5,23.5 + pos: -24.5,-17.5 parent: 2 - uid: 17708 components: @@ -154858,11 +154814,6 @@ entities: - type: Transform pos: -27.5,2.5 parent: 2 - - uid: 17769 - components: - - type: Transform - pos: -56.5,-5.5 - parent: 2 - uid: 17770 components: - type: Transform @@ -155440,12 +155391,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-7.5 parent: 2 - - uid: 8982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - uid: 8986 components: - type: Transform @@ -155487,6 +155432,11 @@ entities: - type: Transform pos: -67.5,11.5 parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 - uid: 12124 components: - type: Transform @@ -155681,12 +155631,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 - - uid: 17856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - uid: 17858 components: - type: Transform @@ -156190,7 +156134,7 @@ entities: pos: -7.5,-36.5 parent: 2 - type: DnaServer - serverId: 321 + serverId: 342 - proto: ResearchAndDevelopmentServerMachineCircuitboard entities: - uid: 17949 @@ -156388,11 +156332,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,30.5 parent: 2 - - uid: 17964 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 2 - uid: 27151 components: - type: Transform @@ -156403,19 +156342,6 @@ entities: - type: Transform pos: 29.5,19.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 17965 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 2 - - type: ContainerContainer - containers: - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - proto: Saw entities: - uid: 17966 @@ -156884,6 +156810,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 12880 + components: + - type: Transform + pos: -102.0395,-5.399526 + parent: 2 - uid: 15497 components: - type: Transform @@ -156910,11 +156841,6 @@ entities: - type: Transform pos: -102.0251,-5.4257817 parent: 2 - - uid: 18030 - components: - - type: Transform - pos: -5.4908185,-17.232418 - parent: 2 - uid: 18031 components: - type: Transform @@ -157040,77 +156966,31 @@ entities: =================================================== Подпись: Оператор ЦК, Доулсон-Младший [italic]место для печатей:[/italic] -- proto: SheetPaper1 - entities: - - uid: 18068 - components: - - type: Transform - rot: 9.42477796076938 rad - pos: 58.069187,11.4281025 - parent: 2 - - type: Paper - sound: !type:SoundCollectionSpecifier - params: - variation: 0.1 - collection: PaperScribbles - stampedBy: [] - content: >- - Не забудь попить молоко с печеньем перед сном. - - И надевай шерстяные носки. Я знаю что на ваших станциях вечная мерзлота. - - - - - - - [italic]с любовью, Мама[/italic] - - uid: 18069 - components: - - type: Transform - pos: 1.609585,-29.195381 - parent: 2 - - type: Paper - sound: !type:SoundCollectionSpecifier - params: - variation: 0.1 - collection: PaperScribbles - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - [color=#006400]███░███░░░░██░░░░[/color] - - [color=#006400]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#006400]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#006400]░░░░██░░██░██░██░[/color] [bold]USG Ishimura Station ЦК - КОМ[/bold] - - [color=#006400]░░░░██░░░████░███[/color] - - =================================================== - [head=3]Указание Секторального Штаба ЦК[/head] - =================================================== - - [bold]Дата отправки:[/bold] - 24.06.3024 - [bold]Составитель документа:[/bold] - - [color=Red] Доулсон-Младший Кристофор[/color] - - [bold]Должность составителя:[/bold] - - [color=Red] Оператор ЦК[/color] - - ───────────────────────────────────────── - - [bold][italic] Приветствуем, уважаемое Командование Станции.[/italic][/bold] В связи с долгой не эксплуатацией станций данного типа, а так-же несоблюдении СанПиН - на ней было замечено много биологических факторов жизнедеятельности, поражающие некоторые части станций этого типа. Грызуны, тараканы и многие другие. В связи с этой проблемой, нами было решено прийти к самому логичному, здравому и правильному смыслу решения проблемы - [bold]установка мин.[/bold] Предупредите свой персонал, и не ходите лишний раз по техническим тоннелям. Слава НТ! - - =================================================== - Подпись: Оператор ЦК, Доулсон-Младший - [italic]место для печатей:[/italic] +- proto: SheetPaper1 + entities: + - uid: 18068 + components: + - type: Transform + rot: 9.42477796076938 rad + pos: 58.069187,11.4281025 + parent: 2 + - type: Paper + sound: !type:SoundCollectionSpecifier + params: + variation: 0.1 + collection: PaperScribbles + stampedBy: [] + content: >- + Не забудь попить молоко с печеньем перед сном. + + И надевай шерстяные носки. Я знаю что на ваших станциях вечная мерзлота. + + + + + + + [italic]с любовью, Мама[/italic] - uid: 18070 components: - type: Transform @@ -157480,6 +157360,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 14245 + components: + - type: Transform + pos: -102.68012,-5.415151 + parent: 2 - uid: 18057 components: - type: Transform @@ -157516,11 +157401,6 @@ entities: - type: Transform pos: 17.141579,-0.84475553 parent: 2 - - uid: 18064 - components: - - type: Transform - pos: -5.5064435,-17.873043 - parent: 2 - uid: 22721 components: - type: Transform @@ -157635,6 +157515,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 12860 + components: + - type: Transform + pos: -101.44575,-5.446401 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: -101.43012,-5.477651 + parent: 2 - uid: 18082 components: - type: Transform @@ -157646,11 +157536,6 @@ entities: - type: Transform pos: -5.447462,-16.509659 parent: 2 - - uid: 18084 - components: - - type: Transform - pos: -101.448105,-5.5596366 - parent: 2 - uid: 18085 components: - type: Transform @@ -157661,11 +157546,6 @@ entities: - type: Transform pos: 15.55621,-16.404793 parent: 2 - - uid: 18087 - components: - - type: Transform - pos: -5.5376935,-16.576168 - parent: 2 - uid: 18089 components: - type: Transform @@ -157893,39 +157773,6 @@ entities: - type: Transform pos: 4.6959023,11.659249 parent: 24902 -- proto: ShippingContainerConarex - entities: - - uid: 18121 - components: - - type: Transform - pos: -65.5,-9.5 - parent: 2 -- proto: ShippingContainerCybersun - entities: - - uid: 18122 - components: - - type: Transform - pos: -65.5,-11.5 - parent: 2 -- proto: ShippingContainerInterdyne - entities: - - uid: 18123 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - - uid: 18124 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 -- proto: ShippingContainerNanotrasen - entities: - - uid: 18125 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - proto: ShotGunCabinetFilled entities: - uid: 18126 @@ -158112,8 +157959,22 @@ entities: canCollide: False - type: Fixtures fixtures: {} + - uid: 29380 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - proto: ShuttersNormal entities: + - uid: 430 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 - uid: 16469 components: - type: Transform @@ -158763,6 +158624,18 @@ entities: - type: Transform pos: 49.5,2.5 parent: 2 + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-18.5 + parent: 2 - uid: 13968 components: - type: Transform @@ -159732,6 +159605,12 @@ entities: - type: Transform pos: -89.5,41.5 parent: 2 + - uid: 18541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 2 - uid: 20174 components: - type: Transform @@ -160483,6 +160362,20 @@ entities: - type: Transform pos: 0.7500007,-28.502241 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18171: + - - Pressed + - Toggle + 18176: + - - Pressed + - Toggle + 18174: + - - Pressed + - Toggle + 18166: + - - Pressed + - Toggle - type: Fixtures fixtures: {} - uid: 18435 @@ -161139,22 +161032,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: SignBiohazardMed - entities: - - uid: 18465 - components: - - type: Transform - pos: 12.5,23.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18466 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - type: Fixtures - fixtures: {} - proto: SignBridge entities: - uid: 18467 @@ -161223,13 +161100,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18475 - components: - - type: Transform - pos: -4.5,5.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 28318 components: - type: Transform @@ -161265,6 +161135,22 @@ entities: fixtures: {} - proto: SignCryogenicsMed entities: + - uid: 12325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 18480 components: - type: Transform @@ -161317,14 +161203,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.469925,7.722947 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 18487 components: - type: Transform @@ -161481,14 +161359,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 22138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,7.5 - parent: 2 - - type: Fixtures - fixtures: {} - proto: SignDirectionalDorms entities: - uid: 18508 @@ -161540,14 +161410,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.481346,8.596907 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 18515 components: - type: Transform @@ -161765,14 +161627,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47633,8.190959 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 18542 components: - type: Transform @@ -161829,14 +161683,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47134,7.940959 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 18550 components: - type: Transform @@ -161898,14 +161744,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47308,8.396509 - parent: 2 - - type: Fixtures - fixtures: {} - proto: SignDirectionalWash entities: - uid: 18558 @@ -162254,90 +162092,80 @@ entities: fixtures: {} - proto: SignNanotrasen1 entities: - - uid: 18594 + - uid: 18597 components: - type: Transform - rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 23858 + - uid: 21390 components: - type: Transform - rot: 1.5707963267948966 rad pos: 53.5,-0.5 parent: 2 - type: Fixtures fixtures: {} - proto: SignNanotrasen2 entities: - - uid: 18595 + - uid: 18598 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 23870 + - uid: 22807 components: - type: Transform - rot: 1.5707963267948966 rad pos: 54.5,-0.5 parent: 2 - type: Fixtures fixtures: {} - proto: SignNanotrasen3 entities: - - uid: 18596 + - uid: 19984 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 23850 + - uid: 21345 components: - type: Transform - rot: 1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 - type: Fixtures fixtures: {} - proto: SignNanotrasen4 entities: - - uid: 18597 + - uid: 20316 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 23871 + - uid: 23407 components: - type: Transform - rot: 1.5707963267948966 rad pos: 56.5,-0.5 parent: 2 - type: Fixtures fixtures: {} - proto: SignNanotrasen5 entities: - - uid: 18598 + - uid: 20323 components: - type: Transform - rot: 1.5707963267948966 rad pos: 44.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 23855 + - uid: 23570 components: - type: Transform - rot: 1.5707963267948966 rad pos: 57.5,-0.5 parent: 2 - type: Fixtures @@ -162808,10 +162636,10 @@ entities: fixtures: {} - proto: SignSurgery entities: - - uid: 18636 + - uid: 12326 components: - type: Transform - pos: 4.5,14.5 + pos: 15.5,17.5 parent: 2 - type: Fixtures fixtures: {} @@ -165149,38 +164977,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,30.5 parent: 2 -- proto: SpawnMobCarp - entities: - - uid: 18965 - components: - - type: Transform - pos: 62.5,-41.5 - parent: 2 - - uid: 18970 - components: - - type: Transform - pos: 45.5,-41.5 - parent: 2 - - uid: 18972 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - - uid: 18980 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - - uid: 29381 - components: - - type: Transform - pos: -149.5,17.5 - parent: 2 - - uid: 30570 - components: - - type: Transform - pos: -101.5,39.5 - parent: 2 - proto: SpawnMobCatBingus entities: - uid: 15567 @@ -165541,13 +165337,6 @@ entities: - type: Transform pos: -73.5,-16.5 parent: 2 -- proto: SpawnMobShark - entities: - - uid: 19016 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 2 - proto: SpawnMobShiva entities: - uid: 29130 @@ -165649,13 +165438,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 30085 - components: - - type: Transform - pos: -22.5,31.5 - parent: 2 - proto: SpawnPointBrigmedic entities: - uid: 30710 @@ -166001,23 +165783,6 @@ entities: - type: Transform pos: -6.5,-24.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 19075 - components: - - type: Transform - pos: -61.5,-7.5 - parent: 2 - - uid: 19076 - components: - - type: Transform - pos: -60.5,-7.5 - parent: 2 - - uid: 19077 - components: - - type: Transform - pos: -62.5,-7.5 - parent: 2 - proto: SpawnPointScientist entities: - uid: 19078 @@ -166042,6 +165807,11 @@ entities: parent: 2 - proto: SpawnPointSecurityCadet entities: + - uid: 9541 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 - uid: 19058 components: - type: Transform @@ -166057,11 +165827,6 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 - - uid: 19085 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 - uid: 19087 components: - type: Transform @@ -166117,6 +165882,30 @@ entities: - type: Transform pos: -25.5,-4.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 7553 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 694 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 19096 @@ -166185,12 +165974,24 @@ entities: - type: Transform pos: 7.5,-11.5 parent: 2 -- proto: SpawnPointZookeeper +- proto: SpawnPointWardenHelper entities: - - uid: 19349 + - uid: 249 components: - type: Transform - pos: -67.5,15.5 + pos: 31.5,-11.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 +- proto: SpawnPointWardenWeapon + entities: + - uid: 9667 + components: + - type: Transform + pos: 9.5,-12.5 parent: 2 - proto: SpawnVehicleWheelchair entities: @@ -166287,6 +166088,16 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 - uid: 19110 components: - type: Transform @@ -166310,6 +166121,11 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 2 + - uid: 20693 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 - uid: 23788 components: - type: Transform @@ -166792,6 +166608,11 @@ entities: parent: 2 - proto: SteelBench entities: + - uid: 17769 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 - uid: 19167 components: - type: Transform @@ -167258,11 +167079,6 @@ entities: parent: 24902 - proto: SubstationBasic entities: - - uid: 19221 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - uid: 19222 components: - type: Transform @@ -168583,6 +168399,11 @@ entities: - type: Transform pos: -48.5,13.5 parent: 2 + - uid: 17568 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 - uid: 18127 components: - type: Transform @@ -168662,12 +168483,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 - - uid: 19350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,8.5 - parent: 2 - uid: 19926 components: - type: Transform @@ -168717,6 +168532,18 @@ entities: rot: 3.141592653589793 rad pos: -6.5,21.5 parent: 2 + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 - uid: 19312 components: - type: Transform @@ -168761,12 +168588,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,20.5 parent: 2 - - uid: 28846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,20.5 - parent: 2 - uid: 28847 components: - type: Transform @@ -168975,6 +168796,11 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-22.5 parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 - uid: 14454 components: - type: Transform @@ -169263,28 +169089,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Офис квартирмейстера - - uid: 19347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Выход в космос - - uid: 19348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторская - proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 23587 @@ -169361,6 +169165,11 @@ entities: - type: Transform pos: -131.5,11.5 parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 - uid: 11348 components: - type: Transform @@ -169372,6 +169181,12 @@ entities: rot: -1.5707963267948966 rad pos: -64.5,16.5 parent: 2 + - uid: 16383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 + parent: 2 - uid: 16589 components: - type: Transform @@ -169387,6 +169202,12 @@ entities: - type: Transform pos: -130.5,11.5 parent: 2 + - uid: 18514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-9.5 + parent: 2 - uid: 19356 components: - type: Transform @@ -170287,12 +170108,6 @@ entities: - type: Transform pos: -7.5,0.5 parent: 2 - - uid: 24015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-10.5 - parent: 2 - uid: 27245 components: - type: Transform @@ -170973,6 +170788,23 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,15.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 - uid: 10789 components: - type: Transform @@ -170985,6 +170817,23 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,7.5 parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,15.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 - uid: 16981 components: - type: Transform @@ -171645,21 +171494,6 @@ entities: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 19737 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 2 - - uid: 19738 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 2 - - uid: 19739 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 2 - uid: 19740 components: - type: Transform @@ -173602,7 +173436,7 @@ entities: - uid: 19964 components: - type: Transform - pos: -44.722378,24.463068 + pos: -44.70814,24.390572 parent: 2 - uid: 19965 components: @@ -173770,58 +173604,6 @@ entities: - type: Transform pos: 7.5,-28.5 parent: 2 -- proto: ToySpawner - entities: - - uid: 8609 - components: - - type: Transform - pos: -125.5,-13.5 - parent: 2 - - uid: 18113 - components: - - type: Transform - pos: -80.5,-24.5 - parent: 2 - - uid: 18114 - components: - - type: Transform - pos: -55.5,-19.5 - parent: 2 - - uid: 19987 - components: - - type: Transform - pos: -43.5,-15.5 - parent: 2 - - uid: 19988 - components: - - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 19989 - components: - - type: Transform - pos: -50.5,21.5 - parent: 2 - - uid: 19990 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 19991 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - uid: 30083 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - - uid: 30084 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - proto: TrackingImplanter entities: - uid: 581 @@ -174026,13 +173808,6 @@ entities: parent: 24173 - proto: TwoWayLever entities: - - uid: 20012 - components: - - type: MetaData - name: рычаг конвеерной ленты под вратами - - type: Transform - pos: -51.5,-17.5 - parent: 2 - uid: 20013 components: - type: Transform @@ -174574,6 +174349,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 9616 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformScrubsColorGreen entities: - uid: 9618 @@ -174583,6 +174363,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 9616 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformScrubsColorPurple entities: - uid: 9619 @@ -174592,6 +174377,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 9616 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UprightPianoInstrument entities: - uid: 20018 @@ -174707,11 +174497,17 @@ entities: - type: Transform pos: -66.5,-17.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Cargo - uid: 20040 components: - type: Transform pos: -71.5,-9.5 parent: 2 + - type: AccessReader + accessListsOriginal: + - - Cargo - proto: VendingMachineCart entities: - uid: 20041 @@ -174721,11 +174517,6 @@ entities: parent: 2 - proto: VendingMachineChang entities: - - uid: 20042 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 2 - uid: 20043 components: - type: Transform @@ -175080,16 +174871,58 @@ entities: parent: 2 - proto: VendingMachineSalvage entities: - - uid: 20096 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - uid: 20097 + - uid: 431 components: - type: Transform - pos: -58.5,-17.5 + pos: -52.5,-9.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 20098 @@ -175121,10 +174954,10 @@ entities: parent: 27712 - proto: VendingMachineSecDrobe entities: - - uid: 20101 + - uid: 8858 components: - type: Transform - pos: 1.5,8.5 + pos: 0.5,8.5 parent: 2 - uid: 20102 components: @@ -176700,6 +176533,12 @@ entities: - type: Transform pos: 44.5,-7.5 parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 - uid: 436 components: - type: Transform @@ -176717,6 +176556,36 @@ entities: - type: Transform pos: -18.5,13.5 parent: 2 + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 - uid: 3372 components: - type: Transform @@ -176727,17 +176596,47 @@ entities: - type: Transform pos: 21.5,10.5 parent: 2 + - uid: 4850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-11.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 - uid: 5972 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,15.5 parent: 2 - - uid: 5973 + - uid: 6747 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,16.5 + pos: 41.5,-13.5 parent: 2 - uid: 7347 components: @@ -176856,6 +176755,12 @@ entities: - type: Transform pos: 40.5,22.5 parent: 2 + - uid: 9002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 - uid: 9017 components: - type: Transform @@ -176882,6 +176787,11 @@ entities: - type: Transform pos: 47.5,-5.5 parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 - uid: 9699 components: - type: Transform @@ -176953,6 +176863,12 @@ entities: rot: -1.5707963267948966 rad pos: -75.5,-31.5 parent: 2 + - uid: 12898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 - uid: 14482 components: - type: Transform @@ -177553,6 +177469,12 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 + - uid: 17121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-10.5 + parent: 2 - uid: 17218 components: - type: Transform @@ -177636,16 +177558,16 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 - - uid: 19984 + - uid: 20025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,18.5 + pos: 18.5,12.5 parent: 2 - - uid: 20025 + - uid: 20096 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: -53.5,-15.5 parent: 2 - uid: 20164 components: @@ -178404,12 +178326,6 @@ entities: rot: 1.5707963267948966 rad pos: -127.5,16.5 parent: 2 - - uid: 20309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-17.5 - parent: 2 - uid: 20310 components: - type: Transform @@ -178434,66 +178350,18 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-15.5 parent: 2 - - uid: 20314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-14.5 - parent: 2 - - uid: 20315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-13.5 - parent: 2 - - uid: 20316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 2 - uid: 20317 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-12.5 parent: 2 - - uid: 20318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-11.5 - parent: 2 - - uid: 20319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-11.5 - parent: 2 - - uid: 20320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-11.5 - parent: 2 - - uid: 20321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-11.5 - parent: 2 - uid: 20322 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-11.5 parent: 2 - - uid: 20323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 2 - uid: 20325 components: - type: Transform @@ -180138,21 +180006,11 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 - - uid: 20693 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 2 - uid: 20694 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 20695 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - uid: 20696 components: - type: Transform @@ -181669,7 +181527,7 @@ entities: - uid: 20990 components: - type: Transform - pos: 41.5,-11.5 + pos: 37.5,16.5 parent: 2 - uid: 20991 components: @@ -185662,12 +185520,6 @@ entities: - type: Transform pos: 51.5,-1.5 parent: 2 - - uid: 21345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,15.5 - parent: 2 - uid: 21346 components: - type: Transform @@ -185895,12 +185747,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 - - uid: 21390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,14.5 - parent: 2 - uid: 21391 components: - type: Transform @@ -193507,11 +193353,22 @@ entities: - type: Transform pos: -24.5,21.5 parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 - uid: 11356 components: - type: Transform pos: -65.5,16.5 parent: 2 + - uid: 11360 + components: + - type: Transform + pos: -70.5,10.5 + parent: 2 - uid: 11361 components: - type: Transform @@ -193539,6 +193396,11 @@ entities: rot: 3.141592653589793 rad pos: -65.5,15.5 parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 - uid: 22233 components: - type: Transform @@ -194873,11 +194735,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-5.5 parent: 2 - - uid: 22499 - components: - - type: Transform - pos: -57.5,-10.5 - parent: 2 - uid: 22500 components: - type: Transform @@ -196347,11 +196204,6 @@ entities: - type: Transform pos: -70.5,7.5 parent: 2 - - uid: 22807 - components: - - type: Transform - pos: -70.5,8.5 - parent: 2 - uid: 22829 components: - type: Transform @@ -198172,12 +198024,6 @@ entities: - type: Transform pos: 5.5,24.5 parent: 2 - - uid: 23187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - uid: 23188 components: - type: Transform @@ -198970,6 +198816,11 @@ entities: - entity_storage - proto: WaterCooler entities: + - uid: 6609 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 - uid: 23284 components: - type: Transform @@ -199242,12 +199093,6 @@ entities: - type: Transform pos: -1.5,39.5 parent: 2 - - uid: 23326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 2 - uid: 23328 components: - type: Transform @@ -199281,6 +199126,11 @@ entities: parent: 2 - proto: WeaponDisabler entities: + - uid: 870 + components: + - type: Transform + pos: 1.4440361,6.649348 + parent: 2 - uid: 1239 components: - type: Transform @@ -199353,24 +199203,27 @@ entities: - uid: 15775 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - uid: 15776 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - uid: 15777 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - uid: 17632 components: - type: Transform @@ -199416,10 +199269,11 @@ entities: - uid: 15778 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - proto: WeaponLaserSvalinn entities: - uid: 1240 @@ -199432,7 +199286,7 @@ entities: - uid: 23336 components: - type: Transform - pos: 44.53328,-11.367193 + pos: 44.482136,-15.968768 parent: 2 - proto: WeaponLauncherChinaLake entities: @@ -199455,10 +199309,11 @@ entities: - uid: 15779 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - proto: WeaponPistolN1984 entities: - uid: 28004 @@ -199550,10 +199405,11 @@ entities: - uid: 15780 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - proto: WeaponShotgunImprovisedLoaded entities: - uid: 27662 @@ -199594,10 +199450,11 @@ entities: - uid: 15781 components: - type: Transform - parent: 15774 + parent: 4859 - type: Physics canCollide: False - type: InsideEntityStorage + storage: 4859 - uid: 27769 components: - type: Transform @@ -199610,14 +199467,6 @@ entities: - type: Transform pos: 5.7313232,-10.509827 parent: 27712 -- proto: WeaponTaser - entities: - - uid: 17622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.176582,-12.5628805 - parent: 2 - proto: WeaponTurretHostile entities: - uid: 23342 @@ -199798,6 +199647,14 @@ entities: - type: Transform pos: 38.43812,23.604559 parent: 2 + - type: Blocking + blockingToggleActionEntity: 23784 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23784 - proto: WelderIndustrial entities: - uid: 23348 @@ -200141,6 +199998,18 @@ entities: parent: 24902 - proto: WindoorSecureArmoryLocked entities: + - uid: 3546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 - uid: 23396 components: - type: Transform @@ -200216,11 +200085,16 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 23407 + - uid: 6612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-8.5 + rot: 3.141592653589793 rad + pos: -54.5,-15.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -54.5,-15.5 parent: 2 - uid: 23408 components: @@ -200244,12 +200118,6 @@ entities: - type: Transform pos: -62.5,-3.5 parent: 2 - - uid: 23412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 2 - proto: WindoorSecureCentralCommandLocked entities: - uid: 28556 @@ -200961,11 +200829,6 @@ entities: - type: Transform pos: -63.5,2.5 parent: 2 - - uid: 23511 - components: - - type: Transform - pos: -57.5,-9.5 - parent: 2 - uid: 23512 components: - type: Transform @@ -201338,17 +201201,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,16.5 parent: 2 - - uid: 23570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-14.5 - parent: 2 - - uid: 23571 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 2 - uid: 23689 components: - type: Transform @@ -201558,11 +201410,23 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,16.5 parent: 2 + - uid: 5984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-13.5 + parent: 2 - uid: 6423 components: - type: Transform pos: -66.5,14.5 parent: 2 + - uid: 6615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-14.5 + parent: 2 - uid: 7730 components: - type: Transform diff --git a/Resources/Maps/_Wega/wegakerberos.yml b/Resources/Maps/_Wega/wegakerberos.yml index ef4974b4a58..dfac0ada489 100644 --- a/Resources/Maps/_Wega/wegakerberos.yml +++ b/Resources/Maps/_Wega/wegakerberos.yml @@ -1,15 +1,14 @@ meta: format: 7 category: Map - engineVersion: 268.0.0 - forkId: wega - forkVersion: 951e65183889b98eb49c2585cc09ffbbf19a18c1 - time: 12/06/2025 20:48:08 - entityCount: 49465 + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 03/01/2026 12:34:23 + entityCount: 49273 maps: - 1 grids: -- 2 - 197 - 326 - 46850 @@ -116,205 +115,6 @@ entities: - type: OccluderTree - type: Parallax parallax: DeltaStation - - uid: 2 - components: - - type: MetaData - name: STS Вьюк-D SY-363 - - type: Transform - pos: 91.25008,14.830837 - parent: 1 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: nAAAAAAAAJwAAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAACdAAAAAAAAnQAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABnAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAJ0AAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAACdAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAACdAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAnQAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAAAAAnQAAAAAAAJ0AAAAAAABnAAAAAAAAnQAAAAAAAJ0AAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ0AAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAACdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAGcAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - dampingModifier: 0.25 - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#DE3A3AFF' - id: MiniTileSteelEndE - decals: - 23: 5,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileSteelEndW - decals: - 18: 1,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - decals: - 6: 3,-6 - - node: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - decals: - 4: 3,-10 - 5: 3,-4 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteCornerNe - decals: - 36: 4,-6 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteCornerNw - decals: - 35: 2,-6 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteCornerSe - decals: - 2: 4,-10 - 11: 5,-4 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteCornerSw - decals: - 0: 1,-4 - 3: 2,-10 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteInnerNe - decals: - 20: 4,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteInnerNw - decals: - 19: 2,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteInnerSe - decals: - 21: 4,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteInnerSw - decals: - 22: 2,-8 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteLineE - decals: - 12: 5,-3 - 13: 5,-2 - 14: 4,-7 - 15: 4,-9 - - node: - angle: -0.7853981633974483 rad - color: '#DE3A3AFF' - id: MiniTileWhiteLineN - decals: - 24: 4.672966,-1.3480301 - 29: 4.157341,-0.8324051 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteLineN - decals: - 30: 2,-1 - 31: 3,-1 - 32: 4,-1 - - node: - angle: 0.7853981633974483 rad - color: '#DE3A3AFF' - id: MiniTileWhiteLineN - decals: - 26: 1.344841,-1.3245926 - 27: 1.0401535,-1.6292801 - 28: 1.626091,-1.0433426 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteLineS - decals: - 8: 2,-4 - 10: 4,-4 - - node: - color: '#DE3A3AFF' - id: MiniTileWhiteLineW - decals: - 16: 2,-9 - 17: 2,-7 - 33: 1,-3 - 34: 1,-2 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 3 - 0,-1: - 0: 4096 - 1: 61167 - 1,-1: - 1: 13111 - 0: 16384 - 1,0: - 0: 6 - 0,-4: - 0: 61440 - 0,-3: - 0: 4368 - 1: 52366 - 0,-2: - 1: 36047 - 0: 4368 - 1,-4: - 0: 28672 - 1,-3: - 1: 4355 - 0: 17472 - 1,-2: - 1: 279 - 0: 17472 - uniqueMixes: - - volume: 2500 - immutable: True - moles: {} - - volume: 2500 - temperature: 293.15 - moles: - Oxygen: 21.824879 - Nitrogen: 82.10312 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: Joint - joints: - docking587919: !type:WeldJoint - bodyB: 326 - bodyA: 2 - id: docking587919 - localAnchorB: 92,6.5 - localAnchorA: 0,-7.5 - referenceAngle: -1.018261E-06 - damping: 853.90906 - stiffness: 7664.6704 - - type: ImplicitRoof - uid: 197 components: - type: MetaData @@ -470,6 +270,7 @@ entities: - type: GravityShake shakeTimes: 10 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 326 components: - type: MetaData @@ -18597,18 +18398,8 @@ entities: - type: SpreaderGrid - type: NavMap - type: NightLightning - - type: Joint - joints: - docking587919: !type:WeldJoint - bodyB: 326 - bodyA: 2 - id: docking587919 - localAnchorB: 92,6.5 - localAnchorA: 0,-7.5 - referenceAngle: -1.018261E-06 - damping: 853.892 - stiffness: 7664.5176 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 46850 components: - type: MetaData @@ -18691,6 +18482,7 @@ entities: data: chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 46869 components: - type: MetaData @@ -18909,6 +18701,7 @@ entities: data: chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 47240 components: - type: MetaData @@ -19307,6 +19100,7 @@ entities: - type: RadiationGridResistance - type: NavMap - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 48329 components: - type: MetaData @@ -19483,6 +19277,7 @@ entities: data: chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 48382 components: - type: MetaData @@ -19955,6 +19750,7 @@ entities: data: chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 48702 components: - type: MetaData @@ -20008,6 +19804,7 @@ entities: data: chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 48760 components: - type: MetaData @@ -20315,6 +20112,7 @@ entities: Nitrogen: 82.10312 chunkSize: 4 - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AccessConfigurator entities: - uid: 327 @@ -20346,26 +20144,6 @@ entities: container: 328 - proto: AirAlarm entities: - - uid: 3 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 85 - - 84 - - 86 - - 87 - - 106 - - 107 - - 13 - - 108 - - 12 - - 109 - - 11 - - type: Fixtures - fixtures: {} - uid: 330 components: - type: Transform @@ -24031,11 +23809,6 @@ entities: fixtures: {} - proto: AirCanister entities: - - uid: 4 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 2 - uid: 531 components: - type: Transform @@ -25798,6 +25571,20 @@ entities: - type: Transform pos: -0.5,-84.5 parent: 326 +- proto: AirlockExternalGlassPenalServitudeShuttleLavalandStation + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,6.5 + parent: 326 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,10.5 + parent: 326 - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 802 @@ -25876,41 +25663,16 @@ entities: rot: 3.141592653589793 rad pos: -9.5,92.5 parent: 326 -- proto: AirlockExternalGlassShuttleLocked +- proto: AirlockExternalGlassShuttleLavalandStation entities: - - uid: 5 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 2 - - type: Door - changeAirtight: False - - type: Docking - dockJointId: docking587919 - dockedWith: 823 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - - uid: 6 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - uid: 7 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 2 - - uid: 8 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 34.5,31.5 + parent: 326 +- proto: AirlockExternalGlassShuttleLocked + entities: - uid: 198 components: - type: Transform @@ -25985,33 +25747,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,76.5 parent: 326 - - uid: 822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,10.5 - parent: 326 - - uid: 823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,6.5 - parent: 326 - - type: Door - changeAirtight: False - - type: Docking - dockJointId: docking587919 - dockedWith: 5 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - - uid: 824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,31.5 - parent: 326 - uid: 825 components: - type: Transform @@ -26805,7 +26540,7 @@ entities: pos: -28.5,38.5 parent: 326 - type: Door - secondsUntilStateChange: -277599.75 + secondsUntilStateChange: -278097.53 state: Opening - type: DeviceLinkSource lastSignals: @@ -27411,7 +27146,7 @@ entities: pos: 33.5,-33.5 parent: 326 - type: Door - secondsUntilStateChange: -82619.52 + secondsUntilStateChange: -83117.305 state: Opening - type: DeviceLinkSource lastSignals: @@ -27773,16 +27508,6 @@ entities: parent: 326 - proto: AirlockSecurityGlassLocked entities: - - uid: 9 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 10 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - uid: 203 components: - type: Transform @@ -28036,7 +27761,7 @@ entities: pos: -19.5,51.5 parent: 326 - type: Door - secondsUntilStateChange: -147078.6 + secondsUntilStateChange: -147576.38 state: Opening - type: DeviceLinkSource lastSignals: @@ -28117,30 +27842,6 @@ entities: parent: 326 - proto: AirSensor entities: - - uid: 11 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - uid: 12 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - uid: 13 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - uid: 1146 components: - type: Transform @@ -30249,13 +29950,6 @@ entities: parent: 326 - proto: APCBasic entities: - - uid: 14 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 204 components: - type: Transform @@ -32159,30 +31853,6 @@ entities: parent: 48383 - proto: AtmosDeviceFanDirectional entities: - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 2 - - uid: 16 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 2 - - uid: 17 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 2 - - uid: 18 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - uid: 205 components: - type: Transform @@ -35081,6 +34751,12 @@ entities: parent: 326 - proto: BaseComputer entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 326 - uid: 2128 components: - type: Transform @@ -35104,12 +34780,6 @@ entities: - type: Transform pos: -10.5,-38.5 parent: 326 - - uid: 2132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,12.5 - parent: 326 - uid: 2133 components: - type: Transform @@ -37293,8 +36963,8 @@ entities: pos: -12.5,-55.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37322,8 +36992,8 @@ entities: pos: -58.5,-17.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37352,8 +37022,8 @@ entities: pos: -10.5,-63.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37388,8 +37058,8 @@ entities: pos: 11.5,70.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37417,8 +37087,8 @@ entities: pos: -46.5,70.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37452,8 +37122,8 @@ entities: pos: 38.5,-35.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37482,8 +37152,8 @@ entities: pos: -4.5,-43.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37512,8 +37182,8 @@ entities: pos: -21.5,10.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37541,8 +37211,8 @@ entities: pos: -30.5,-38.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37571,8 +37241,8 @@ entities: pos: 21.5,32.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37601,8 +37271,8 @@ entities: pos: -47.5,4.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37631,8 +37301,8 @@ entities: pos: 12.5,41.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37661,8 +37331,8 @@ entities: pos: 35.5,-5.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37691,8 +37361,8 @@ entities: pos: 35.5,-6.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37720,8 +37390,8 @@ entities: pos: 2.5,-31.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37750,8 +37420,8 @@ entities: pos: 61.5,-1.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37780,8 +37450,8 @@ entities: pos: 16.5,-52.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37809,8 +37479,8 @@ entities: pos: -117.5,3.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37838,8 +37508,8 @@ entities: pos: 17.5,56.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37867,8 +37537,8 @@ entities: pos: -4.5,-38.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37896,8 +37566,8 @@ entities: pos: 10.5,-16.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -37926,8 +37596,8 @@ entities: pos: -50.5,18.5 parent: 326 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: Fixtures fixtures: fix1: @@ -39304,131 +38974,6 @@ entities: parent: 48760 - proto: CableApcExtension entities: - - uid: 19 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 28 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 30 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 31 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 32 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 2 - - uid: 33 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 34 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 2 - - uid: 35 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 36 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 37 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 40 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 2 - - uid: 43 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 2 - uid: 209 components: - type: Transform @@ -73228,116 +72773,6 @@ entities: parent: 326 - proto: CableHV entities: - - uid: 44 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 45 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 - - uid: 46 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 47 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 48 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 51 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 54 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 2 - - uid: 56 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 57 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 58 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - uid: 59 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 60 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 62 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 2 - - uid: 63 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - uid: 231 components: - type: Transform @@ -85034,31 +84469,6 @@ entities: parent: 326 - proto: CableMV entities: - - uid: 66 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 67 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 2 - - uid: 68 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 69 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 70 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - uid: 243 components: - type: Transform @@ -109244,54 +108654,6 @@ entities: parent: 326 - proto: ChairPilotSeat entities: - - uid: 71 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 - - uid: 72 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - uid: 73 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 - - uid: 75 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 2 - uid: 248 components: - type: Transform @@ -113599,6 +112961,8 @@ entities: components: - type: Transform parent: 16514 + - type: Physics + canCollide: False - proto: ClothingOuterCoatDetectiveDark entities: - uid: 16672 @@ -113976,6 +113340,10 @@ entities: - type: Transform pos: 4.473688,-75.60735 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtElegantMaid entities: - uid: 16306 @@ -113985,6 +113353,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 16307 @@ -113994,11 +113366,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16771 components: - type: Transform pos: 50.176994,37.680542 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 16764 @@ -114008,6 +113388,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitAncient entities: - uid: 16772 @@ -114015,6 +113399,10 @@ entities: - type: Transform pos: -87.097824,-31.429964 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitClownBanana entities: - uid: 48921 @@ -114022,6 +113410,10 @@ entities: - type: Transform pos: 6.194031,1.6932831 parent: 48760 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorBlack entities: - uid: 16537 @@ -114031,6 +113423,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorGrey entities: - uid: 16773 @@ -114038,6 +113434,10 @@ entities: - type: Transform pos: 48.168358,-32.621143 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorOrange entities: - uid: 16774 @@ -114045,6 +113445,10 @@ entities: - type: Transform pos: 42.464394,13.465519 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitDetectiveGrey entities: - uid: 16775 @@ -114052,6 +113456,10 @@ entities: - type: Transform pos: 47.373783,-25.151186 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitGladiator entities: - uid: 48710 @@ -114059,6 +113467,10 @@ entities: - type: Transform pos: 0.42826843,3.2219086 parent: 48702 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitLawyerBlack entities: - uid: 2747 @@ -114068,6 +113480,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitParamedicSyndie entities: - uid: 47323 @@ -114077,6 +113493,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 16776 @@ -114084,12 +113504,20 @@ entities: - type: Transform pos: 79.575165,28.714622 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16777 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.47675,-2.5948663 parent: 326 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitSuperstarCop entities: - uid: 16502 @@ -114098,6 +113526,10 @@ entities: parent: 16497 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16675 components: - type: Transform @@ -114105,6 +113537,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClownRecorder entities: - uid: 16778 @@ -115206,14 +114642,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 326 -- proto: ComputerIFF - entities: - - uid: 79 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - proto: ComputerMassMedia entities: - uid: 16965 @@ -115329,11 +114757,6 @@ entities: parent: 326 - proto: ComputerRadar entities: - - uid: 80 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 2 - uid: 16984 components: - type: Transform @@ -115413,14 +114836,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 326 -- proto: ComputerSalvageExpedition - entities: - - uid: 16998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,30.5 - parent: 326 - proto: ComputerSalvageJobBoard entities: - uid: 16999 @@ -115431,11 +114846,6 @@ entities: parent: 326 - proto: ComputerShuttle entities: - - uid: 81 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 2 - uid: 257 components: - type: Transform @@ -115460,14 +114870,6 @@ entities: - type: Transform pos: 17.5,38.5 parent: 326 -- proto: ComputerShuttleSalvage - entities: - - uid: 17002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,29.5 - parent: 326 - proto: ComputerSolarControl entities: - uid: 17003 @@ -115532,6 +114934,12 @@ entities: parent: 326 - proto: ComputerSurveillanceCameraMonitor entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,11.5 + parent: 326 - uid: 17013 components: - type: Transform @@ -115567,12 +114975,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,8.5 parent: 326 - - uid: 17019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,11.5 - parent: 326 - uid: 17020 components: - type: Transform @@ -116357,11 +115759,6 @@ entities: parent: 326 - proto: CrateEmergencyInternalsLarge entities: - - uid: 82 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 17145 components: - type: Transform @@ -117381,8 +116778,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - proto: CrateSecure @@ -117527,8 +116924,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - proto: CrateTrashCartFilled @@ -130568,8 +129965,8 @@ entities: pos: 3.5,-46.5 parent: 326 - type: DnaModifierConsole - lastSubjectInjectTime: 30672.4472826 - lastInjectorTime: 30672.4472826 + lastSubjectInjectTime: 5055.3820922 + lastInjectorTime: 5055.3820922 - type: DnaClient server: 37000 connectedToServer: True @@ -130579,8 +129976,8 @@ entities: pos: 3.5,-42.5 parent: 326 - type: DnaModifierConsole - lastSubjectInjectTime: 30672.4472826 - lastInjectorTime: 30672.4472826 + lastSubjectInjectTime: 5055.3820922 + lastInjectorTime: 5055.3820922 - type: DnaClient server: 37000 connectedToServer: True @@ -133464,13 +132861,6 @@ entities: parent: 326 - type: FaxMachine name: Каюта капитана -- proto: FigureSpawner - entities: - - uid: 37134 - components: - - type: Transform - pos: -14.5,49.5 - parent: 326 - proto: filingCabinet entities: - uid: 19906 @@ -133610,19 +133000,6 @@ entities: parent: 48383 - proto: FireAlarm entities: - - uid: 83 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 85 - - 84 - - 86 - - 87 - - type: Fixtures - fixtures: {} - uid: 19929 components: - type: Transform @@ -137897,26 +137274,6 @@ entities: - 387 - proto: FirelockEdge entities: - - uid: 84 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - 83 - - uid: 85 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - 83 - uid: 20229 components: - type: Transform @@ -137987,24 +137344,6 @@ entities: parent: 48383 - proto: FirelockGlass entities: - - uid: 86 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - 83 - - uid: 87 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - 83 - uid: 14322 components: - type: Transform @@ -140057,7 +139396,7 @@ entities: pos: 25.5,-30.5 parent: 326 - type: Door - secondsUntilStateChange: -82775.086 + secondsUntilStateChange: -83272.87 state: Closing - type: Firelock emergencyCloseCooldown: 35105.5982297 @@ -146193,14 +145532,6 @@ entities: color: '#D3FC03FF' - proto: GasPassiveVent entities: - - uid: 88 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 21044 components: - type: Transform @@ -146393,29 +145724,6 @@ entities: parent: 46869 - proto: GasPipeBend entities: - - uid: 89 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 90 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 91 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 14312 components: - type: Transform @@ -154325,77 +153633,6 @@ entities: parent: 326 - proto: GasPipeStraight entities: - - uid: 92 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 93 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 94 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 95 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 96 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 97 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 98 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 99 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 100 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 101 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 22087 components: - type: Transform @@ -200558,22 +199795,6 @@ entities: color: '#0000FFFF' - proto: GasPipeTJunction entities: - - uid: 102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 7368 components: - type: Transform @@ -206407,14 +205628,6 @@ entities: color: '#0000FFFF' - proto: GasPort entities: - - uid: 104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14314 components: - type: Transform @@ -206821,14 +206034,6 @@ entities: parent: 326 - proto: GasPressurePump entities: - - uid: 105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 28850 components: - type: Transform @@ -207228,27 +206433,6 @@ entities: color: '#FF0000FF' - proto: GasVentPump entities: - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 107 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 8135 components: - type: Transform @@ -211055,27 +210239,6 @@ entities: parent: 326 - proto: GasVentScrubber entities: - - uid: 108 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 22083 components: - type: Transform @@ -214776,26 +213939,6 @@ entities: parent: 326 - proto: GeneratorWallmountAPU entities: - - uid: 110 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 111 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 112 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 113 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 - uid: 258 components: - type: Transform @@ -215669,11 +214812,6 @@ entities: parent: 326 - proto: GravityGeneratorMini entities: - - uid: 114 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - uid: 261 components: - type: Transform @@ -215724,36 +214862,6 @@ entities: parent: 326 - proto: Grille entities: - - uid: 115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 2 - - uid: 117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 2 - - uid: 119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - uid: 262 components: - type: Transform @@ -229466,11 +228574,6 @@ entities: Nitrogen: 7.051672 - proto: Gyroscope entities: - - uid: 120 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - uid: 271 components: - type: Transform @@ -230588,7 +229691,7 @@ entities: pos: 5.5,-6.5 parent: 326 - type: Door - secondsUntilStateChange: -299935.1 + secondsUntilStateChange: -300432.88 state: Closing - uid: 32336 components: @@ -232260,16 +231363,6 @@ entities: parent: 326 - proto: JetpackSecurityFilled entities: - - uid: 121 - components: - - type: Transform - pos: 5.5245285,-2.4203682 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: 5.5245285,-2.6078682 - parent: 2 - uid: 32559 components: - type: Transform @@ -232961,6 +232054,20 @@ entities: - type: Transform pos: 10.463089,-43.822727 parent: 326 +- proto: LavalandShuttleConsole + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,12.5 + parent: 326 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,29.5 + parent: 326 - proto: LedLightTube entities: - uid: 32668 @@ -233080,11 +232187,6 @@ entities: parent: 326 - proto: LiquidOxygenCanister entities: - - uid: 123 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 2 - uid: 32687 components: - type: Transform @@ -234316,8 +233418,8 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage - open: True removedMasks: 20 + open: True - type: PlaceableSurface isPlaceable: True - proto: LockerSecurityFilled @@ -235864,6 +234966,13 @@ entities: - type: Transform pos: -1.4832764,-1.3645325 parent: 48760 +- proto: MechFigurineSpawner50 + entities: + - uid: 37134 + components: + - type: Transform + pos: -14.5,49.5 + parent: 326 - proto: MedicalBed entities: - uid: 33001 @@ -236051,6 +235160,11 @@ entities: parent: 326 - proto: MedkitBurnFilled entities: + - uid: 4 + components: + - type: Transform + pos: 17.661829,32.07468 + parent: 326 - uid: 17269 components: - type: Transform @@ -242485,30 +241599,6 @@ entities: parent: 326 - proto: Poweredlight entities: - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - - uid: 126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 2 - - uid: 127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 2 - uid: 272 components: - type: Transform @@ -246459,11 +245549,6 @@ entities: parent: 326 - proto: PoweredSmallLight entities: - - uid: 128 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 276 components: - type: Transform @@ -248688,12 +247773,6 @@ entities: parent: 326 - proto: Rack entities: - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 - uid: 24767 components: - type: Transform @@ -259760,7 +258839,7 @@ entities: pos: -16.5,-53.5 parent: 326 - type: DnaServer - serverId: 292 + serverId: 294 - proto: RevolverCapGun entities: - uid: 37001 @@ -261266,6 +260345,11 @@ entities: parent: 48383 - proto: Shovel entities: + - uid: 26 + components: + - type: Transform + pos: 27.577501,31.9725 + parent: 326 - uid: 37200 components: - type: Transform @@ -263078,36 +262162,6 @@ entities: parent: 326 - proto: ShuttleWindow entities: - - uid: 130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 2 - - uid: 131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 2 - - uid: 133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - uid: 278 components: - type: Transform @@ -269825,28 +268879,6 @@ entities: - type: Transform pos: -30.5,35.5 parent: 326 -- proto: SpawnPointBoxer - entities: - - uid: 38249 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 326 - - uid: 38250 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 326 - - uid: 38251 - components: - - type: Transform - pos: 58.5,-22.5 - parent: 326 - - uid: 38252 - components: - - type: Transform - pos: 60.5,-16.5 - parent: 326 - proto: SpawnPointBrigmedic entities: - uid: 38253 @@ -270752,78 +269784,6 @@ entities: - type: Transform pos: -17.5,-42.5 parent: 326 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 38420 - components: - - type: Transform - pos: 22.5,31.5 - parent: 326 - - uid: 38421 - components: - - type: Transform - pos: 23.5,31.5 - parent: 326 - - uid: 38422 - components: - - type: Transform - pos: 24.5,27.5 - parent: 326 - - uid: 38423 - components: - - type: Transform - pos: 22.5,27.5 - parent: 326 - - uid: 38424 - components: - - type: Transform - pos: 23.5,27.5 - parent: 326 - - uid: 38425 - components: - - type: Transform - pos: 24.5,31.5 - parent: 326 - - uid: 38426 - components: - - type: Transform - pos: 26.5,28.5 - parent: 326 - - uid: 38427 - components: - - type: Transform - pos: 26.5,31.5 - parent: 326 - - uid: 38428 - components: - - type: Transform - pos: 26.5,30.5 - parent: 326 - - uid: 38429 - components: - - type: Transform - pos: 22.5,29.5 - parent: 326 - - uid: 38430 - components: - - type: Transform - pos: 23.5,29.5 - parent: 326 - - uid: 38431 - components: - - type: Transform - pos: 24.5,29.5 - parent: 326 - - uid: 38432 - components: - - type: Transform - pos: 13.5,30.5 - parent: 326 - - uid: 38433 - components: - - type: Transform - pos: 9.5,43.5 - parent: 326 - proto: SpawnPointScientist entities: - uid: 38434 @@ -271170,6 +270130,90 @@ entities: - type: Transform pos: -21.5,40.5 parent: 326 +- proto: SpawnPointShaftMiner + entities: + - uid: 2 + components: + - type: Transform + pos: 26.5,30.5 + parent: 326 + - uid: 3 + components: + - type: Transform + pos: 26.5,31.5 + parent: 326 + - uid: 12 + components: + - type: Transform + pos: 22.5,31.5 + parent: 326 + - uid: 13 + components: + - type: Transform + pos: 23.5,31.5 + parent: 326 + - uid: 14 + components: + - type: Transform + pos: 22.5,27.5 + parent: 326 + - uid: 15 + components: + - type: Transform + pos: 23.5,27.5 + parent: 326 + - uid: 16 + components: + - type: Transform + pos: 24.5,27.5 + parent: 326 + - uid: 17 + components: + - type: Transform + pos: 24.5,31.5 + parent: 326 + - uid: 18 + components: + - type: Transform + pos: 26.5,28.5 + parent: 326 + - uid: 21 + components: + - type: Transform + pos: 24.5,29.5 + parent: 326 + - uid: 22 + components: + - type: Transform + pos: 23.5,29.5 + parent: 326 + - uid: 23 + components: + - type: Transform + pos: 22.5,29.5 + parent: 326 + - uid: 24 + components: + - type: Transform + pos: 13.5,30.5 + parent: 326 + - uid: 25 + components: + - type: Transform + pos: 9.5,43.5 + parent: 326 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 19 + components: + - type: Transform + pos: 16.5,31.5 + parent: 326 + - uid: 20 + components: + - type: Transform + pos: 15.5,37.5 + parent: 326 - proto: SpawnPointStationEngineer entities: - uid: 38501 @@ -271318,6 +270362,23 @@ entities: - type: Transform pos: 54.5,9.5 parent: 326 +- proto: SpawnPointWardenHelper + entities: + - uid: 27 + components: + - type: Transform + pos: 48.5,1.5 + parent: 326 + - uid: 28 + components: + - type: Transform + pos: 66.5,3.5 + parent: 326 + - uid: 29 + components: + - type: Transform + pos: 50.5,28.5 + parent: 326 - proto: SpawnPointWardenWeapon entities: - uid: 45823 @@ -273270,11 +272331,6 @@ entities: parent: 326 - proto: SubstationWallBasic entities: - - uid: 135 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - uid: 287 components: - type: Transform @@ -279277,23 +278333,6 @@ entities: parent: 48760 - proto: TableReinforced entities: - - uid: 136 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - uid: 16272 components: - type: Transform @@ -283387,70 +282426,6 @@ entities: parent: 326 - proto: Thruster entities: - - uid: 139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 2 - - uid: 140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 2 - - uid: 141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 2 - - uid: 142 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 143 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 2 - - uid: 147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 2 - uid: 288 components: - type: Transform @@ -284921,6 +283896,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16607 components: - type: Transform @@ -284928,6 +283907,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformScrubsColorGreen entities: - uid: 16608 @@ -284937,6 +283920,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16609 components: - type: Transform @@ -284944,6 +283931,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformScrubsColorPurple entities: - uid: 16610 @@ -284953,6 +283944,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 16611 components: - type: Transform @@ -284960,6 +283955,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 40399 @@ -285575,6 +284574,53 @@ entities: - type: Transform pos: 27.5,26.5 parent: 326 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 40503 @@ -311086,126 +310132,6 @@ entities: parent: 47240 - proto: WallShuttle entities: - - uid: 150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 2 - - uid: 151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 2 - - uid: 152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 2 - - uid: 153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 2 - - uid: 154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 2 - - uid: 155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 2 - - uid: 156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 2 - - uid: 158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 2 - - uid: 163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 2 - - uid: 164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 2 - - uid: 166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 2 - - uid: 167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 2 - - uid: 168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 2 - - uid: 169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 2 - uid: 297 components: - type: Transform @@ -311381,98 +310307,6 @@ entities: parent: 48329 - proto: WallShuttleDiagonal entities: - - uid: 170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 2 - - uid: 171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 2 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 2 - - uid: 173 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - - uid: 174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-8.5 - parent: 2 - - uid: 175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 2 - - uid: 180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - uid: 182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 2 - - uid: 183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 2 - - uid: 184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 2 - - uid: 185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - uid: 320 components: - type: Transform @@ -320185,18 +319019,6 @@ entities: locked: True - proto: WeaponCapacitorRecharger entities: - - uid: 186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - uid: 45405 components: - type: Transform @@ -321094,7 +319916,7 @@ entities: pos: -5.5,63.5 parent: 326 - type: Door - secondsUntilStateChange: -300563.88 + secondsUntilStateChange: -301061.66 state: Opening - uid: 45538 components: @@ -321861,30 +320683,6 @@ entities: parent: 326 - proto: WindoorSecureSecurityLocked entities: - - uid: 188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 2 - - uid: 189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 2 - - uid: 190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - uid: 322 components: - type: Transform @@ -322725,36 +321523,6 @@ entities: parent: 326 - proto: WindowReinforcedDirectional entities: - - uid: 192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 2 - - uid: 193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 2 - - uid: 194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 2 - - uid: 195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 2 - - uid: 196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 2 - uid: 14310 components: - type: Transform diff --git a/Resources/Maps/_Wega/wegakilostation.yml b/Resources/Maps/_Wega/wegakilostation.yml index e02a8926dc5..a38c9b8c786 100644 --- a/Resources/Maps/_Wega/wegakilostation.yml +++ b/Resources/Maps/_Wega/wegakilostation.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 268.0.0 - forkId: wega - forkVersion: 951e65183889b98eb49c2585cc09ffbbf19a18c1 - time: 01/07/2026 14:50:07 - entityCount: 39238 + engineVersion: 270.1.0 + forkId: "" + forkVersion: "" + time: 03/01/2026 12:53:45 + entityCount: 39237 maps: - 1 grids: @@ -12893,6 +12893,7 @@ entities: - type: ImplicitRoof - type: BecomesStation id: Kilo + - type: ExplosionAirtightGrid - uid: 37255 components: - type: MetaData @@ -12974,6 +12975,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ExplosionAirtightGrid - proto: AirAlarm entities: - uid: 3754 @@ -17325,9 +17327,9 @@ entities: rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 -- proto: AirlockExternalGlassShuttleLocked +- proto: AirlockExternalGlassShuttleLavalandStation entities: - - uid: 30914 + - uid: 32569 components: - type: Transform rot: 1.5707963267948966 rad @@ -75754,12 +75756,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,11.5 parent: 2 - - uid: 30864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-12.5 - parent: 2 - uid: 30866 components: - type: Transform @@ -77607,22 +77603,6 @@ entities: - type: Transform pos: -54.042553,-22.403635 parent: 2 -- proto: BoxFlare - entities: - - uid: 32570 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32571 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxFolderBlue entities: - uid: 28180 @@ -121343,6 +121323,11 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-27.5 parent: 2 + - uid: 32567 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 - uid: 32616 components: - type: Transform @@ -121986,6 +121971,11 @@ entities: - type: Transform pos: -12.5,-17.5 parent: 2 + - uid: 30765 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 - uid: 31179 components: - type: Transform @@ -122011,11 +122001,6 @@ entities: - type: Transform pos: -52.5,73.5 parent: 2 - - uid: 32567 - components: - - type: Transform - pos: 49.5,3.5 - parent: 2 - uid: 32843 components: - type: Transform @@ -124180,6 +124165,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 31299 @@ -124188,71 +124177,123 @@ entities: parent: 31296 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31302 components: - type: Transform parent: 31296 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31306 components: - type: Transform parent: 31303 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31309 components: - type: Transform parent: 31303 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31315 components: - type: Transform parent: 31310 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31316 components: - type: Transform parent: 31310 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31426 components: - type: Transform pos: -66.38619,-18.213438 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31427 components: - type: Transform pos: -66.63619,-18.197813 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31428 components: - type: Transform pos: -66.82369,-18.197813 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31429 components: - type: Transform pos: -67.07369,-18.197813 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31430 components: - type: Transform pos: -67.26119,-18.182188 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31431 components: - type: Transform pos: -67.52682,-18.182188 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31432 components: - type: Transform pos: -67.74557,-18.182188 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorGrey entities: - uid: 35150 @@ -124260,6 +124301,10 @@ entities: - type: Transform pos: -53.5,6.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorWhite entities: - uid: 29591 @@ -124267,16 +124312,28 @@ entities: - type: Transform pos: -51.384052,-7.3941984 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29592 components: - type: Transform pos: -51.634052,-7.5973234 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 34729 components: - type: Transform pos: -41.45201,41.347958 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitEngineering entities: - uid: 34246 @@ -124286,6 +124343,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitOperative entities: - uid: 34695 @@ -124293,6 +124354,10 @@ entities: - type: Transform pos: -45.336308,37.610577 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 31297 @@ -124301,71 +124366,123 @@ entities: parent: 31296 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31298 components: - type: Transform parent: 31296 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31304 components: - type: Transform parent: 31303 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31305 components: - type: Transform parent: 31303 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31311 components: - type: Transform parent: 31310 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31312 components: - type: Transform parent: 31310 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31419 components: - type: Transform pos: -67.72424,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31420 components: - type: Transform pos: -67.47424,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31421 components: - type: Transform pos: -67.25549,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31422 components: - type: Transform pos: -67.03674,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31423 components: - type: Transform pos: -66.83362,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31424 components: - type: Transform pos: -66.61487,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 31425 components: - type: Transform pos: -66.39612,-18.425806 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitScientist entities: - uid: 35114 @@ -124375,6 +124492,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformSecurityTrooper entities: - uid: 26801 @@ -124382,6 +124503,10 @@ entities: - type: Transform pos: -69.5,-15.5 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Cobweb1 entities: - uid: 28468 @@ -125223,6 +125348,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-37.5 parent: 2 + - uid: 33237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 - uid: 33536 components: - type: Transform @@ -126509,35 +126640,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 32569 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - Oxygen: 1.7459903 - Nitrogen: 6.568249 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 32570 - - 32571 - - 32572 - - 32573 - - 32574 - - 32575 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 34227 components: - type: Transform @@ -127740,6 +127842,13 @@ entities: - type: Transform pos: -36.5,-23.5 parent: 2 +- proto: Defibrillator + entities: + - uid: 33239 + components: + - type: Transform + pos: 38.241158,-12.307329 + parent: 2 - proto: DefibrillatorCabinetFilled entities: - uid: 29080 @@ -132174,8 +132283,8 @@ entities: server: 29990 connectedToServer: True - type: DnaModifierConsole - lastSubjectInjectTime: 14446.7441034 - lastInjectorTime: 14446.7441034 + lastSubjectInjectTime: 6030.6366566 + lastInjectorTime: 6030.6366566 - uid: 30029 components: - type: Transform @@ -132186,8 +132295,8 @@ entities: server: 29990 connectedToServer: True - type: DnaModifierConsole - lastSubjectInjectTime: 14446.7441034 - lastInjectorTime: 14446.7441034 + lastSubjectInjectTime: 6030.6366566 + lastInjectorTime: 6030.6366566 - proto: DogBed entities: - uid: 18492 @@ -132511,6 +132620,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkBeerCan + entities: + - uid: 32572 + components: + - type: Transform + pos: 46.486065,-11.898019 + parent: 2 - proto: DrinkBeerGrowler entities: - uid: 28545 @@ -141600,20 +141716,6 @@ entities: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 32574 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32575 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 32608 components: - type: Transform @@ -193207,6 +193309,13 @@ entities: - type: Transform pos: 28.711473,35.615894 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 32568 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 - proto: LeftArmBorg entities: - uid: 29742 @@ -193328,7 +193437,7 @@ entities: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 32568 + - uid: 32570 components: - type: Transform pos: 49.5,1.5 @@ -194709,13 +194818,13 @@ entities: restitution: 0 friction: 0.4 - type: EntityStorage + removedMasks: 20 air: volume: 200 immutable: False temperature: 293.14673 moles: {} open: True - removedMasks: 20 - type: PlaceableSurface isPlaceable: True - proto: LockerWardenFilled @@ -195277,6 +195386,16 @@ entities: - type: Transform pos: -35.641537,-39.530476 parent: 2 + - uid: 32571 + components: + - type: Transform + pos: 38.850533,-12.424517 + parent: 2 + - uid: 33238 + components: + - type: Transform + pos: 38.709908,-12.447954 + parent: 2 - uid: 34624 components: - type: Transform @@ -195961,9 +196080,10 @@ entities: parent: 2 - proto: OreBox entities: - - uid: 30765 + - uid: 30864 components: - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,3.5 parent: 2 - uid: 32819 @@ -197366,6 +197486,13 @@ entities: - type: Transform pos: -4.5,66.5 parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 30917 + components: + - type: Transform + pos: 46.68592,-11.51887 + parent: 2 - proto: PlushieMoth entities: - uid: 29071 @@ -198214,20 +198341,6 @@ entities: - type: Transform pos: 58.625343,81.59661 parent: 2 - - uid: 32572 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32573 - components: - - type: Transform - parent: 32569 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 32585 components: - type: Transform @@ -207209,7 +207322,7 @@ entities: pos: 37.5,28.5 parent: 2 - type: DnaServer - serverId: 214 + serverId: 215 - proto: Retractor entities: - uid: 29260 @@ -208595,11 +208708,6 @@ entities: parent: 2 - proto: SheetPlasteel entities: - - uid: 30916 - components: - - type: Transform - pos: 38.440594,-12.458027 - parent: 2 - uid: 32714 components: - type: Transform @@ -208724,11 +208832,6 @@ entities: - type: Transform pos: 25.962128,26.610258 parent: 2 - - uid: 30917 - components: - - type: Transform - pos: 38.775887,-12.434356 - parent: 2 - uid: 31808 components: - type: Transform @@ -215013,28 +215116,6 @@ entities: - type: Transform pos: 18.5,14.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 33074 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 2 - - uid: 33075 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 - - uid: 33076 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 - - uid: 33077 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 2 - proto: SpawnPointBrigmedic entities: - uid: 32226 @@ -215836,33 +215917,6 @@ entities: - type: Transform pos: 37.5,23.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 33236 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 33237 - components: - - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 33238 - components: - - type: Transform - pos: 45.5,2.5 - parent: 2 - - uid: 33239 - components: - - type: Transform - pos: 43.5,2.5 - parent: 2 - - uid: 33240 - components: - - type: Transform - pos: 44.5,2.5 - parent: 2 - proto: SpawnPointScientist entities: - uid: 33241 @@ -216104,6 +216158,45 @@ entities: - type: Transform pos: -7.5,2.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 30867 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 32573 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 32574 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 32575 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 33077 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 33236 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 33074 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 33125 @@ -216217,6 +216310,23 @@ entities: - type: Transform pos: -34.5,-23.5 parent: 2 +- proto: SpawnPointWardenHelper + entities: + - uid: 30914 + components: + - type: Transform + pos: -54.5,-23.5 + parent: 2 + - uid: 30916 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 33076 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 - proto: SpawnVehicleJanicart entities: - uid: 31030 @@ -217516,6 +217626,13 @@ entities: - type: Transform pos: 7.5,-35.5 parent: 2 +- proto: SuitStorageBase + entities: + - uid: 33075 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 - proto: SuitStorageCaptain entities: - uid: 28147 @@ -217596,11 +217713,6 @@ entities: - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 30867 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - uid: 30941 components: - type: Transform @@ -224144,11 +224256,19 @@ entities: - type: Transform pos: -59.44575,10.162619 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29355 components: - type: Transform pos: -42.449272,10.65024 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRed entities: - uid: 29578 @@ -224157,24 +224277,40 @@ entities: parent: 29573 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29579 components: - type: Transform parent: 29573 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29585 components: - type: Transform parent: 29580 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29586 components: - type: Transform parent: 29580 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 39040 components: - type: Transform @@ -224182,6 +224318,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 39041 components: - type: Transform @@ -224189,6 +224329,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 39042 components: - type: Transform @@ -224196,6 +224340,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRedWithTop entities: - uid: 29576 @@ -224204,24 +224352,40 @@ entities: parent: 29573 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29577 components: - type: Transform parent: 29573 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29583 components: - type: Transform parent: 29580 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29584 components: - type: Transform parent: 29580 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 29866 @@ -224555,6 +224719,53 @@ entities: - type: Transform pos: 46.5,1.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 29932 diff --git a/Resources/Maps/_Wega/wegaspectrum.yml b/Resources/Maps/_Wega/wegaspectrum.yml index 02406a1a9fc..3b04e133fb7 100644 --- a/Resources/Maps/_Wega/wegaspectrum.yml +++ b/Resources/Maps/_Wega/wegaspectrum.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 267.1.0 + engineVersion: 270.1.0 forkId: "" forkVersion: "" - time: 12/05/2025 19:53:10 - entityCount: 34916 + time: 03/01/2026 12:41:21 + entityCount: 34911 maps: - 1 grids: @@ -199,7 +199,7 @@ entities: version: 7 -3,-1: ind: -3,-1 - tiles: fgAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAABwAAAAAAAAcAAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAANgAAAAADAH4AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAA4AAAAAAAAHwAAAAAAAB8AAAAAAABdAAAAAAAAcAAAAAAAAHAAAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAAA4AAAAAAAAfgAAAAAAADYAAAAAAQB+AAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAjAAAAAAMAIwAAAAAAAB8AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAABwAAAAAAAAcAAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAKAAAAAAAACgAAAAAAgA4AAAAAAAAHwAAAAAAAB8AAAAAAABdAAAAAAAAcAAAAAAAAHAAAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAACQAAAAAAAAkAAAAAAEAHwAAAAAAAB8AAAAAAABdAAAAAAIAXQAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAkAAAAAAMAJAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAcAAAAAAAAEAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAF0AAAAAAwAsAAAAAAAAEAAAAAAAABAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALAAAAAAAABwAAAAAAAAQAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAABnAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAoAAAAAAAAKAAAAAACACgAAAAAAQBnAAAAAAAAZwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAZwAAAAACAGcAAAAAAgBnAAAAAAMAXQAAAAADAF0AAAAAAgBoAAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwAgAAAAAAIAZwAAAAAAAF0AAAAAAwAfAAAAAAAAZwAAAAACAGcAAAAAAQBnAAAAAAMAZwAAAAABAB8AAAAAAABnAAAAAAIAZwAAAAACAGcAAAAAAwBnAAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAIAIAAAAAABAA== + tiles: fgAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAABwAAAAAAAAcAAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAANgAAAAADAH4AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAA4AAAAAAAAHwAAAAAAAB8AAAAAAABdAAAAAAAAcAAAAAAAAHAAAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAAA4AAAAAAAAfgAAAAAAADYAAAAAAQB+AAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAjAAAAAAMAIwAAAAAAAB8AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAABwAAAAAAAAcAAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAKAAAAAAAACgAAAAAAgA4AAAAAAAAHwAAAAAAAB8AAAAAAABdAAAAAAAAcAAAAAAAAHAAAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAACQAAAAAAAAkAAAAAAEAHwAAAAAAAB8AAAAAAABdAAAAAAIAXQAAAAAAAHAAAAAAAABwAAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAkAAAAAAMAJAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAATAAAAAAAAEwAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAF0AAAAAAwAsAAAAAAAAEwAAAAAAABMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALAAAAAAAABMAAAAAAAATAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAABnAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAoAAAAAAAAKAAAAAACACgAAAAAAQBnAAAAAAAAZwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAZwAAAAACAGcAAAAAAgBnAAAAAAMAXQAAAAADAF0AAAAAAgBoAAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwAgAAAAAAIAZwAAAAAAAF0AAAAAAwAfAAAAAAAAZwAAAAACAGcAAAAAAQBnAAAAAAMAZwAAAAABAB8AAAAAAABnAAAAAAIAZwAAAAACAGcAAAAAAwBnAAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAIAIAAAAAABAA== version: 7 -4,0: ind: -4,0 @@ -207,7 +207,7 @@ entities: version: 7 -4,-1: ind: -4,-1 - tiles: HwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAACAC8AAAAAAgBdAAAAAAEAZwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAwBdAAAAAAEAZwAAAAADAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABnAAAAAAMALwAAAAAAAGcAAAAAAQB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABnAAAAAAIAXQAAAAACAF0AAAAAAgBnAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAABAC8AAAAAAABdAAAAAAAAZwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAGcAAAAAAgBdAAAAAAIAZwAAAAAAAGgAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABnAAAAAAIALwAAAAAAAGcAAAAAAQBoAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAABAF0AAAAAAwBnAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAACAF0AAAAAAgAvAAAAAAAAZwAAAAADAB0AAAAAAAAQAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAwBdAAAAAAIAXQAAAAADAGcAAAAAAQAdAAAAAAAAEAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAABnAAAAAAAALwAAAAABAGcAAAAAAgBnAAAAAAAAHQAAAAAAABAAAAAAAABdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAADAF0AAAAAAQBnAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAGcAAAAAAwAvAAAAAAMAZwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABnAAAAAAEAXQAAAAADAGcAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAZwAAAAAAAC8AAAAAAQBnAAAAAAMAfgAAAAAAAGgAAAAAAQBoAAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAQBdAAAAAAIAZwAAAAAAAB8AAAAAAABnAAAAAAEAZwAAAAADAA== + tiles: HwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAACAC8AAAAAAgBdAAAAAAEAZwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAwBdAAAAAAEAZwAAAAADAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABnAAAAAAMALwAAAAAAAGcAAAAAAQB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABnAAAAAAIAXQAAAAACAF0AAAAAAgBnAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAABAC8AAAAAAABdAAAAAAAAZwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAGcAAAAAAgBdAAAAAAIAZwAAAAAAAGgAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABnAAAAAAIALwAAAAAAAGcAAAAAAQBoAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAABAF0AAAAAAwBnAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAACAF0AAAAAAgAvAAAAAAAAZwAAAAADABMAAAAAAAATAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAwBdAAAAAAIAXQAAAAADAGcAAAAAAQATAAAAAAAAEwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAABnAAAAAAAALwAAAAABAGcAAAAAAgBnAAAAAAAAEwAAAAAAABMAAAAAAABdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZwAAAAADAF0AAAAAAQBnAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAGcAAAAAAwAvAAAAAAMAZwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABnAAAAAAEAXQAAAAADAGcAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAZwAAAAAAAC8AAAAAAQBnAAAAAAMAfgAAAAAAAGgAAAAAAQBoAAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAGcAAAAAAQBdAAAAAAIAZwAAAAAAAB8AAAAAAABnAAAAAAEAZwAAAAADAA== version: 7 -4,1: ind: -4,1 @@ -267,7 +267,7 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAA== version: 7 -3,-4: ind: -3,-4 @@ -9676,6 +9676,7 @@ entities: 260: -54,-41 261: -53,-47 556: 9,-28 + 11454: -49,-54 - node: zIndex: 3 color: '#A46106A3' @@ -9689,7 +9690,6 @@ entities: decals: 348: -51,-50 351: -44,-53 - 352: -49,-54 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 @@ -9948,6 +9948,7 @@ entities: 10358: -41,-14 10359: -42,-10 11195: -43,43 + 11455: -49,-54 - node: cleanable: True color: '#FFFFFFFF' @@ -10211,7 +10212,6 @@ entities: color: '#FFFFFFFF' id: WarnLineN decals: - 362: -49,-54 363: -48,-54 - node: color: '#FFFFFFFF' @@ -14779,6 +14779,7 @@ entities: id: WegaSpectrum - type: NightLightning - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 4 mapInit: true paused: true @@ -14883,6 +14884,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: ImplicitRoof + - type: ExplosionAirtightGrid - uid: 34785 components: - type: MetaData @@ -15035,6 +15037,7 @@ entities: - type: GravityShake shakeTimes: 10 - type: ImplicitRoof + - type: ExplosionAirtightGrid - proto: AcousticGuitarInstrument entities: - uid: 7 @@ -18902,6 +18905,13 @@ entities: - type: Transform pos: -23.5,7.5 parent: 2 +- proto: AirlockExternalGlassShuttleLavalandStation + entities: + - uid: 12698 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 396 @@ -18940,16 +18950,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 - - uid: 401 - components: - - type: Transform - pos: -48.5,-54.5 - parent: 2 - - uid: 402 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - uid: 403 components: - type: Transform @@ -19912,7 +19912,7 @@ entities: pos: 36.5,-17.5 parent: 2 - type: Door - secondsUntilStateChange: -108238.39 + secondsUntilStateChange: -108763.82 state: Opening - type: DeviceLinkSource lastSignals: @@ -20251,7 +20251,7 @@ entities: pos: 68.5,48.5 parent: 2 - type: Door - secondsUntilStateChange: -114488.7 + secondsUntilStateChange: -115014.13 state: Opening - type: DeviceLinkSource lastSignals: @@ -23131,6 +23131,11 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,57.5 parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 - uid: 34793 components: - type: Transform @@ -23175,16 +23180,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,6.5 parent: 2 - - uid: 1020 - components: - - type: Transform - pos: -48.5,-54.5 - parent: 2 - - uid: 1021 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - uid: 1022 components: - type: Transform @@ -26923,6 +26918,11 @@ entities: - type: Transform pos: 12.204665,42.54559 parent: 2 + - uid: 27635 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 - proto: BrigTimer entities: - uid: 1711 @@ -80511,6 +80511,12 @@ entities: rot: 3.141592653589793 rad pos: 36.462227,3.6715307 parent: 2 + - uid: 15522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-52.5 + parent: 2 - proto: ChairOfficeLight entities: - uid: 12230 @@ -83384,11 +83390,6 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12698 - components: - - type: Transform - pos: -43.635506,-52.194202 - parent: 2 - uid: 12699 components: - type: Transform @@ -83399,11 +83400,6 @@ entities: - type: Transform pos: -43.52613,-52.444202 parent: 2 - - uid: 12701 - components: - - type: Transform - pos: -43.479256,-52.569202 - parent: 2 - uid: 12703 components: - type: Transform @@ -84782,6 +84778,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtColorTeal entities: - uid: 12564 @@ -84791,6 +84791,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtElegantMaid entities: - uid: 12782 @@ -84799,6 +84803,10 @@ entities: parent: 12779 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 12959 @@ -84806,11 +84814,19 @@ entities: - type: Transform pos: -11.469887,-86.649315 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12960 components: - type: Transform pos: 60.545334,54.491795 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtLawyerBlack entities: - uid: 12751 @@ -84819,6 +84835,10 @@ entities: parent: 12744 - type: Physics canCollide: False + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtOfLife entities: - uid: 12565 @@ -84828,6 +84848,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPerformer entities: - uid: 12566 @@ -84837,6 +84861,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 12874 @@ -84846,6 +84874,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12875 components: - type: Transform @@ -84853,6 +84885,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12876 components: - type: Transform @@ -84860,6 +84896,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12877 components: - type: Transform @@ -84867,6 +84907,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12878 components: - type: Transform @@ -84874,6 +84918,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12879 components: - type: Transform @@ -84881,6 +84929,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12880 components: - type: Transform @@ -84888,6 +84940,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12881 components: - type: Transform @@ -84895,6 +84951,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpskirtPsychologist entities: - uid: 1665 @@ -84904,6 +84964,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitBartender entities: - uid: 12961 @@ -84911,6 +84975,10 @@ entities: - type: Transform pos: 8.511309,68.36859 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorPink entities: - uid: 12567 @@ -84920,6 +84988,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitColorTeal entities: - uid: 12568 @@ -84929,6 +85001,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitHawaiBlack entities: - uid: 12569 @@ -84938,6 +85014,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitHawaiBlue entities: - uid: 12570 @@ -84947,6 +85027,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitHawaiRed entities: - uid: 12571 @@ -84956,6 +85040,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitHawaiYellow entities: - uid: 12572 @@ -84965,6 +85053,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitMime entities: - uid: 12796 @@ -84974,6 +85066,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 12882 @@ -84983,6 +85079,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12883 components: - type: Transform @@ -84990,6 +85090,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12884 components: - type: Transform @@ -84997,6 +85101,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12885 components: - type: Transform @@ -85004,6 +85112,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12886 components: - type: Transform @@ -85011,6 +85123,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12887 components: - type: Transform @@ -85018,6 +85134,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12888 components: - type: Transform @@ -85025,6 +85145,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 12889 components: - type: Transform @@ -85032,6 +85156,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitPsychologist entities: - uid: 1666 @@ -85041,6 +85169,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClothingUniformJumpsuitSuperstarCop entities: - uid: 12913 @@ -85050,6 +85182,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ClownRecorder entities: - uid: 12962 @@ -87473,7 +87609,7 @@ entities: pos: 20.5,-59.5 parent: 2 - type: Door - secondsUntilStateChange: -171350.17 + secondsUntilStateChange: -171875.6 state: Opening - proto: CurtainsPinkOpen entities: @@ -99920,11 +100056,23 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-29.5 parent: 2 + - type: DnaClient + server: 26741 + connectedToServer: True + - type: DnaModifierConsole + lastSubjectInjectTime: 4975.700704 + lastInjectorTime: 4975.700704 - uid: 15488 components: - type: Transform pos: 42.5,-24.5 parent: 2 + - type: DnaClient + server: 26741 + connectedToServer: True + - type: DnaModifierConsole + lastSubjectInjectTime: 4975.700704 + lastInjectorTime: 4975.700704 - proto: DogBed entities: - uid: 15489 @@ -100045,6 +100193,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15511 components: - type: Transform @@ -100052,6 +100201,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15512 components: - type: Transform @@ -100059,6 +100209,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15513 components: - type: Transform @@ -100066,6 +100217,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15514 components: - type: Transform @@ -100073,6 +100225,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15515 components: - type: Transform @@ -100080,6 +100233,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - proto: Dresser entities: - uid: 12744 @@ -109990,7 +110144,7 @@ entities: pos: -52.5,-4.5 parent: 2 - type: Door - secondsUntilStateChange: -38622.15 + secondsUntilStateChange: -39147.574 state: Closing - type: DeviceNetwork deviceLists: @@ -111044,6 +111198,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - proto: FoodBoxDonkpocket entities: - uid: 16818 @@ -111233,6 +111388,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 16848 components: - type: Transform @@ -111416,6 +111572,30 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 24202 + components: + - type: Transform + parent: 15509 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 15509 + - uid: 24317 + components: + - type: Transform + parent: 15509 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 15509 + - uid: 25966 + components: + - type: Transform + parent: 15509 + - type: Physics + canCollide: False + - type: InsideEntityStorage + storage: 15509 - proto: FoodFrozenSandwich entities: - uid: 13251 @@ -111501,6 +111681,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15519 components: - type: Transform @@ -111508,6 +111689,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15520 components: - type: Transform @@ -111515,6 +111697,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - proto: FoodLemon entities: - uid: 16877 @@ -111546,13 +111729,6 @@ entities: - type: Transform pos: -9.905469,42.686527 parent: 2 -- proto: FoodMealSashimi - entities: - - uid: 16882 - components: - - type: Transform - pos: -49.509384,-5.4623003 - parent: 2 - proto: FoodMeat entities: - uid: 15521 @@ -111562,13 +111738,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15522 - components: - - type: Transform - parent: 15509 - - type: Physics - canCollide: False - - type: InsideEntityStorage + storage: 15509 - uid: 16867 components: - type: Transform @@ -111709,15 +111879,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeatFish - entities: - - uid: 15523 - components: - - type: Transform - parent: 15509 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodMeatHuman entities: - uid: 16899 @@ -150535,17 +150696,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' -- proto: Gateway - entities: - - uid: 21788 - components: - - type: Transform - pos: -7.5,33.5 - parent: 2 - missingComponents: - - ActivatableUI - - UserInterface - - Gateway - proto: Gauze entities: - uid: 21789 @@ -150618,77 +150768,77 @@ entities: - type: Transform pos: 49.5,-29.5 parent: 2 -- proto: GlowstickBase +- proto: GlowstickBlue entities: - - uid: 1735 + - uid: 1739 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1736 + - uid: 1740 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1737 + - uid: 1741 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1738 + - uid: 1742 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21797 - components: - - type: Transform - pos: -33.547775,51.528877 - parent: 2 - - uid: 21798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.373695,48.467884 - parent: 2 -- proto: GlowstickBlue +- proto: GlowstickGreen entities: - - uid: 1739 + - uid: 1735 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1740 + - uid: 1736 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1741 + - uid: 1737 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1742 + - uid: 1738 components: - type: Transform parent: 1728 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 21797 + components: + - type: Transform + pos: -33.547775,51.528877 + parent: 2 + - uid: 21798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.373695,48.467884 + parent: 2 - proto: GlowstickPurple entities: - uid: 1743 @@ -155893,6 +156043,11 @@ entities: - type: Transform pos: -39.5,66.5 parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 - uid: 34851 components: - type: Transform @@ -157010,7 +157165,7 @@ entities: - type: Transform pos: -61.637238,73.709595 parent: 2 -- proto: HandheldHealthAnalyzerUnpowered +- proto: HandheldHealthAnalyzer entities: - uid: 1672 components: @@ -159328,6 +159483,14 @@ entities: rot: -1.5707963267948966 rad pos: -32.621124,56.23626 parent: 2 +- proto: LavalandShuttleConsole + entities: + - uid: 12701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-53.5 + parent: 2 - proto: LeavesCannabis entities: - uid: 23308 @@ -160116,14 +160279,12 @@ entities: showEnts: False occludes: True ents: + - 25966 - 15524 - - 15517 - 15516 - - 15523 - 15521 - 15518 - 15519 - - 15522 - 15510 - 15511 - 15512 @@ -160131,8 +160292,10 @@ entities: - 15514 - 15515 - 15525 - - 15526 - 15520 + - 15517 + - 24202 + - 24317 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -163977,33 +164140,6 @@ entities: - type: Transform pos: -87.62494,82.69936 parent: 2 - - uid: 23978 - components: - - type: MetaData - name: памятка по азиатской кухне - - type: Transform - pos: -46.425476,-7.4060545 - parent: 2 - - type: Paper - content: >- - Сухая лапша для Рамэна: - - Мука: [10u] - - Столовая соль: [10u] - - Оливковое масло: [1u] - - Сырое яйцо: [6u] - - - Шарик Данго: - - Рис: [5u] - - Сахар: [2u] - - Вода: [2u] - proto: PaperBin10 entities: - uid: 23979 @@ -164213,6 +164349,11 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-0.5 parent: 2 + - uid: 27634 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 - proto: PaperBin5 entities: - uid: 24016 @@ -165090,86 +165231,64 @@ entities: rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34772 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34773 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34774 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34775 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34776 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34777 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34778 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34779 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34780 components: - type: Transform pos: 0.5,-1.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - uid: 34781 components: - type: Transform pos: 2.5,-1.5 parent: 34761 - - type: DeltaPressure - gridUid: 34761 - proto: PlasmaTankFilled entities: - uid: 24156 @@ -165443,6 +165562,28 @@ entities: - type: Transform pos: 77.54472,-57.43675 parent: 2 +- proto: PlushieSpawner50 + entities: + - uid: 29446 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 29447 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 29448 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 29449 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 - proto: PlushieXeno entities: - uid: 24200 @@ -165475,13 +165616,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: PorkRamenNoodles - entities: - - uid: 24202 - components: - - type: Transform - pos: -49.479515,-6.413507 - parent: 2 - proto: PortableFlasher entities: - uid: 24203 @@ -166250,11 +166384,6 @@ entities: - type: Transform pos: 28.5,59.5 parent: 2 - - uid: 24317 - components: - - type: Transform - pos: -50.5,-49.5 - parent: 2 - uid: 24318 components: - type: Transform @@ -175575,11 +175704,6 @@ entities: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 25966 - components: - - type: Transform - pos: -53.5,-6.5 - parent: 2 - uid: 25967 components: - type: Transform @@ -176452,6 +176576,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + storage: 15509 - uid: 15525 components: - type: Transform @@ -176459,13 +176584,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15526 - components: - - type: Transform - parent: 15509 - - type: Physics - canCollide: False - - type: InsideEntityStorage + storage: 15509 - proto: RCD entities: - uid: 26138 @@ -176522,86 +176641,64 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,50.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26146 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26147 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26148 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26149 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26150 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26151 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26152 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26153 components: - type: Transform pos: -40.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26154 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26155 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ReinforcedUraniumWindow entities: - uid: 26156 @@ -176610,4194 +176707,3035 @@ entities: rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26157 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26158 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26159 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26161 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26162 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26163 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26164 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26165 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26166 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26167 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ReinforcedWindow entities: + - uid: 21788 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 - uid: 26168 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26169 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26170 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26171 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26172 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26174 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26175 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26176 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26177 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26178 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26179 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,50.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26180 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26181 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26182 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26183 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26184 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26185 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26186 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26187 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26188 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26189 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26190 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26191 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26192 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26193 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26194 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26195 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26196 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26197 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26198 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26199 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26200 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26201 components: - type: Transform pos: 24.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26202 components: - type: Transform pos: 26.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26203 components: - type: Transform pos: 25.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26204 components: - type: Transform pos: 25.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26205 components: - type: Transform pos: -86.5,82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26206 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26207 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26208 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26209 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26210 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26211 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26212 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26213 components: - type: Transform pos: -14.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26214 components: - type: Transform pos: -15.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26215 components: - type: Transform pos: -12.5,15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26216 components: - type: Transform pos: -12.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26217 components: - type: Transform pos: 8.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26218 components: - type: Transform pos: 7.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26219 components: - type: Transform pos: 9.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26220 components: - type: Transform pos: -10.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26221 components: - type: Transform pos: -10.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26222 components: - type: Transform pos: -10.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26223 components: - type: Transform pos: -33.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26224 components: - type: Transform pos: -30.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26225 components: - type: Transform pos: -33.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26226 components: - type: Transform pos: -30.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26227 components: - type: Transform pos: -39.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26228 components: - type: Transform pos: -37.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26229 components: - type: Transform pos: -33.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26230 components: - type: Transform pos: -32.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26231 components: - type: Transform pos: -31.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26232 components: - type: Transform pos: -30.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26233 components: - type: Transform pos: -29.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26234 components: - type: Transform pos: -27.5,40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26235 components: - type: Transform pos: -25.5,40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26236 components: - type: Transform pos: -19.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26237 components: - type: Transform pos: -19.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26238 components: - type: Transform pos: -19.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26239 components: - type: Transform pos: -19.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26240 components: - type: Transform pos: -19.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26241 components: - type: Transform pos: -19.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26242 components: - type: Transform pos: -19.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26243 components: - type: Transform pos: -19.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26244 components: - type: Transform pos: -19.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26245 components: - type: Transform pos: -19.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26246 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26247 components: - type: Transform pos: -21.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26248 components: - type: Transform pos: -21.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26249 components: - type: Transform pos: -21.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26250 components: - type: Transform pos: -21.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26251 components: - type: Transform pos: -21.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26252 components: - type: Transform pos: -21.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26253 components: - type: Transform pos: -21.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26254 components: - type: Transform pos: -21.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26255 components: - type: Transform pos: -26.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26256 components: - type: Transform pos: -25.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26257 components: - type: Transform pos: -25.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26258 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26259 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26260 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26261 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26262 components: - type: Transform pos: -26.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26263 components: - type: Transform pos: -26.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26264 components: - type: Transform pos: -26.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26265 components: - type: Transform pos: -26.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26266 components: - type: Transform pos: -49.5,30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26267 components: - type: Transform pos: -49.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26268 components: - type: Transform pos: -47.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26269 components: - type: Transform pos: -45.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26270 components: - type: Transform pos: -60.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26271 components: - type: Transform pos: -60.5,35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26272 components: - type: Transform pos: -60.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26273 components: - type: Transform pos: -85.5,74.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26274 components: - type: Transform pos: -54.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26275 components: - type: Transform pos: -54.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26276 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26277 components: - type: Transform pos: 50.5,30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26278 components: - type: Transform pos: -68.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26279 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26280 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26281 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26282 components: - type: Transform pos: -62.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26283 components: - type: Transform pos: -62.5,-33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26284 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26285 components: - type: Transform pos: -61.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26286 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26287 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26288 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26289 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26290 components: - type: Transform pos: -55.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26291 components: - type: Transform pos: -45.5,-9.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26292 components: - type: Transform pos: -15.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26293 components: - type: Transform pos: -14.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26294 components: - type: Transform pos: -13.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26295 components: - type: Transform pos: -12.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26296 components: - type: Transform pos: -12.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26297 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26298 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26299 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26300 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26301 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26302 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26303 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26304 components: - type: Transform pos: -27.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26305 components: - type: Transform pos: -27.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26306 components: - type: Transform pos: -7.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26307 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26308 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26309 components: - type: Transform pos: -4.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26310 components: - type: Transform pos: -3.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26311 components: - type: Transform pos: -2.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26312 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26313 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26314 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26315 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26316 components: - type: Transform pos: 4.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26317 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26318 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26319 components: - type: Transform pos: 2.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26320 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26321 components: - type: Transform pos: 7.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26322 components: - type: Transform pos: 8.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26323 components: - type: Transform pos: -1.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26324 components: - type: Transform pos: -1.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26325 components: - type: Transform pos: -1.5,-36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26326 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26327 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26328 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26329 components: - type: Transform pos: -6.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26330 components: - type: Transform pos: -8.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26331 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26332 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26333 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26334 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26335 components: - type: Transform pos: -4.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26336 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26337 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26338 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26339 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26340 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26341 components: - type: Transform pos: -25.5,-65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26342 components: - type: Transform pos: -24.5,-65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26343 components: - type: Transform pos: -23.5,-65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26344 components: - type: Transform pos: -22.5,-65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26345 components: - type: Transform pos: -16.5,-67.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26346 components: - type: Transform pos: -15.5,-67.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26347 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26348 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26349 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26350 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26351 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26352 components: - type: Transform pos: -2.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26353 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26354 components: - type: Transform pos: -4.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26355 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26356 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26357 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26358 components: - type: Transform pos: -11.5,-79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26359 components: - type: Transform pos: -11.5,-80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26360 components: - type: Transform pos: -11.5,-81.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26361 components: - type: Transform pos: -11.5,-82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26362 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26363 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26364 components: - type: Transform pos: -5.5,-80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26365 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26366 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26367 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26368 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26369 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26370 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26371 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26372 components: - type: Transform pos: 12.5,-82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26373 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26374 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26375 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26376 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26377 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26378 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26379 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26380 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26381 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26382 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26383 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26384 components: - type: Transform pos: 16.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26385 components: - type: Transform pos: 52.5,-50.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26386 components: - type: Transform pos: 47.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26387 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26388 components: - type: Transform pos: 75.5,-5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26389 components: - type: Transform pos: -78.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26390 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26391 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26392 components: - type: Transform pos: 18.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26393 components: - type: Transform pos: 18.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26394 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26395 components: - type: Transform pos: 20.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26396 components: - type: Transform pos: 21.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26397 components: - type: Transform pos: 73.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26398 components: - type: Transform pos: -73.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26399 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26400 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26401 components: - type: Transform pos: 26.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26402 components: - type: Transform pos: 26.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26403 components: - type: Transform pos: 26.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26404 components: - type: Transform pos: 29.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26405 components: - type: Transform pos: 34.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26406 components: - type: Transform pos: 33.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26407 components: - type: Transform pos: 32.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26408 components: - type: Transform pos: 28.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26409 components: - type: Transform pos: 11.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26410 components: - type: Transform pos: 12.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26411 components: - type: Transform pos: 11.5,20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26412 components: - type: Transform pos: 11.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26413 components: - type: Transform pos: 13.5,15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26414 components: - type: Transform pos: 13.5,14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26415 components: - type: Transform pos: 14.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26416 components: - type: Transform pos: 13.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26417 components: - type: Transform pos: 14.5,12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26418 components: - type: Transform pos: 15.5,12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26419 components: - type: Transform pos: 38.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26420 components: - type: Transform pos: 39.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26421 components: - type: Transform pos: 40.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26422 components: - type: Transform pos: -39.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26423 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26424 components: - type: Transform pos: 39.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26425 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26426 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26427 components: - type: Transform pos: 74.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26428 components: - type: Transform pos: 75.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26429 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26430 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26431 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26432 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26433 components: - type: Transform pos: 71.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26434 components: - type: Transform pos: 69.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26435 components: - type: Transform pos: 68.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26436 components: - type: Transform pos: 67.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26437 components: - type: Transform pos: 66.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26438 components: - type: Transform pos: 65.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26439 components: - type: Transform pos: 59.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26440 components: - type: Transform pos: 57.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26441 components: - type: Transform pos: 68.5,15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26442 components: - type: Transform pos: 68.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26443 components: - type: Transform pos: 68.5,17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26444 components: - type: Transform pos: -45.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26445 components: - type: Transform pos: 37.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26446 components: - type: Transform pos: 45.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26447 components: - type: Transform pos: 44.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26448 components: - type: Transform pos: 43.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26449 components: - type: Transform pos: 36.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26450 components: - type: Transform pos: 35.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26451 components: - type: Transform pos: 34.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26452 components: - type: Transform pos: 33.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26453 components: - type: Transform pos: 33.5,64.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26454 components: - type: Transform pos: 18.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26455 components: - type: Transform pos: 19.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26456 components: - type: Transform pos: 20.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26457 components: - type: Transform pos: 21.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26458 components: - type: Transform pos: 14.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26459 components: - type: Transform pos: 13.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26460 components: - type: Transform pos: 14.5,68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26461 components: - type: Transform pos: 13.5,68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26462 components: - type: Transform pos: 16.5,69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26463 components: - type: Transform pos: 16.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26464 components: - type: Transform pos: 16.5,67.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26465 components: - type: Transform pos: 16.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26466 components: - type: Transform pos: 52.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26467 components: - type: Transform pos: -7.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26468 components: - type: Transform pos: -6.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26469 components: - type: Transform pos: 3.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26470 components: - type: Transform pos: 2.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26471 components: - type: Transform pos: 1.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26472 components: - type: Transform pos: 0.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26473 components: - type: Transform pos: -0.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26474 components: - type: Transform pos: -1.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26475 components: - type: Transform pos: -2.5,70.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26476 components: - type: Transform pos: 13.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26477 components: - type: Transform pos: 27.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26478 components: - type: Transform pos: 27.5,52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26479 components: - type: Transform pos: -1.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26480 components: - type: Transform pos: -1.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26481 components: - type: Transform pos: -22.5,69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26482 components: - type: Transform pos: -21.5,69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26483 components: - type: Transform pos: 25.5,-36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26484 components: - type: Transform pos: 25.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26485 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26486 components: - type: Transform pos: 35.5,-33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26487 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26488 components: - type: Transform pos: 25.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26489 components: - type: Transform pos: 57.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26490 components: - type: Transform pos: 59.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26491 components: - type: Transform pos: 50.5,-55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26492 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26493 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26494 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26495 components: - type: Transform pos: 41.5,-59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26496 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26497 components: - type: Transform pos: 51.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26498 components: - type: Transform pos: 50.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26499 components: - type: Transform pos: -19.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26500 components: - type: Transform pos: -18.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26501 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26502 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26503 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26504 components: - type: Transform pos: -30.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26505 components: - type: Transform pos: -30.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26506 components: - type: Transform pos: 73.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26507 components: - type: Transform pos: -39.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26508 components: - type: Transform pos: -40.5,-9.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26510 components: - type: Transform pos: -53.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26511 components: - type: Transform pos: -39.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26512 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26513 components: - type: Transform pos: -54.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26514 components: - type: Transform pos: -7.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26515 components: - type: Transform pos: 8.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26516 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,23.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26517 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26518 components: - type: Transform pos: 55.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26519 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,87.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26520 components: - type: Transform pos: -85.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26521 components: - type: Transform pos: -85.5,75.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26522 components: - type: Transform pos: -86.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26523 components: - type: Transform pos: -85.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26525 components: - type: Transform pos: 12.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26526 components: - type: Transform pos: 14.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26527 components: - type: Transform pos: -41.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26528 components: - type: Transform pos: -41.5,8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26529 components: - type: Transform pos: 73.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26530 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26531 components: - type: Transform pos: 74.5,-5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26532 components: - type: Transform pos: 66.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26533 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26534 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26535 components: - type: Transform pos: 38.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26536 components: - type: Transform pos: 39.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26537 components: - type: Transform pos: 40.5,64.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26538 components: - type: Transform pos: 41.5,63.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26539 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26540 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26541 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26542 components: - type: Transform pos: 66.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26543 components: - type: Transform pos: 65.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26544 components: - type: Transform pos: 27.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26545 components: - type: Transform pos: 27.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26546 components: - type: Transform pos: 39.5,64.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26547 components: - type: Transform pos: 40.5,63.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26548 components: - type: Transform pos: 41.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26549 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26550 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26551 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26552 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26553 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26554 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26555 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26556 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26557 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26558 components: - type: Transform pos: 37.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26559 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26560 components: - type: Transform pos: 66.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26561 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26562 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26563 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26564 components: - type: Transform pos: 51.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26565 components: - type: Transform pos: 52.5,-51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26566 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26567 components: - type: Transform pos: 49.5,-55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26568 components: - type: Transform pos: 52.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26569 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26570 components: - type: Transform pos: -10.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26571 components: - type: Transform pos: -10.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26572 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26573 components: - type: Transform pos: -8.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26574 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26575 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26576 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26577 components: - type: Transform pos: 18.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26578 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26579 components: - type: Transform pos: 11.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26580 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26581 components: - type: Transform pos: 9.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26582 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26583 components: - type: Transform pos: 8.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26584 components: - type: Transform pos: -14.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26585 components: - type: Transform pos: 50.5,29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26586 components: - type: Transform pos: -15.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26587 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26588 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26589 components: - type: Transform pos: -17.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26590 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26591 components: - type: Transform pos: 50.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26592 components: - type: Transform pos: 60.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26593 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26594 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26595 components: - type: Transform pos: 58.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26596 components: - type: Transform pos: 75.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26597 components: - type: Transform pos: 59.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26598 components: - type: Transform pos: 59.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26599 components: - type: Transform pos: 74.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26600 components: - type: Transform pos: 70.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26601 components: - type: Transform pos: 69.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26602 components: - type: Transform pos: 58.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26603 components: - type: Transform pos: 59.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26604 components: - type: Transform pos: 54.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26605 components: - type: Transform pos: 55.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26606 components: - type: Transform pos: 57.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26607 components: - type: Transform pos: 75.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26608 components: - type: Transform pos: 54.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26609 components: - type: Transform pos: 59.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26610 components: - type: Transform pos: 16.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26611 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26612 components: - type: Transform pos: 57.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26613 components: - type: Transform pos: -15.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26614 components: - type: Transform pos: 18.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26615 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26616 components: - type: Transform pos: -7.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26617 components: - type: Transform pos: -8.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26618 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26619 components: - type: Transform pos: -14.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26620 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26621 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26622 components: - type: Transform pos: 10.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26623 components: - type: Transform pos: 11.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26624 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26625 components: - type: Transform pos: 73.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26626 components: - type: Transform pos: 71.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26627 components: - type: Transform pos: 37.5,17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26628 components: - type: Transform pos: 7.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26629 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26630 components: - type: Transform pos: 60.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26631 components: - type: Transform pos: -79.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26632 components: - type: Transform pos: 66.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26633 components: - type: Transform pos: -44.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26634 components: - type: Transform pos: 65.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26635 components: - type: Transform pos: 74.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26636 components: - type: Transform pos: 48.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26637 components: - type: Transform pos: -72.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26638 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26639 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26640 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26641 components: - type: Transform pos: 62.5,22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26642 components: - type: Transform pos: 48.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26643 components: - type: Transform pos: 62.5,18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26644 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26645 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26646 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26647 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26648 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26649 components: - type: Transform pos: 68.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26650 components: - type: Transform pos: 68.5,22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26651 components: - type: Transform pos: 68.5,23.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26652 components: - type: Transform pos: 67.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26653 components: - type: Transform pos: 65.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26654 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26655 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26656 components: - type: Transform pos: 73.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26657 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26658 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26659 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26660 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26661 components: - type: Transform pos: 75.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26662 components: - type: Transform pos: 73.5,-19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26663 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26664 components: - type: Transform pos: 73.5,-23.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26665 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26666 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26667 components: - type: Transform pos: 74.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26668 components: - type: Transform pos: -84.5,83.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26669 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26670 components: - type: Transform pos: 29.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26671 components: - type: Transform pos: 77.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26672 components: - type: Transform pos: 77.5,40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26673 components: - type: Transform pos: 75.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26674 components: - type: Transform pos: 30.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26675 components: - type: Transform pos: 76.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26676 components: - type: Transform pos: 77.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26677 components: - type: Transform pos: -85.5,83.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26678 components: - type: Transform pos: -83.5,83.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26679 components: - type: Transform pos: 77.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26680 components: - type: Transform pos: -13.5,35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26681 components: - type: Transform pos: -82.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26682 components: - type: Transform pos: -82.5,82.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26683 components: - type: Transform pos: -82.5,81.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26684 components: - type: Transform pos: -83.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26685 components: - type: Transform pos: -84.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26686 components: - type: Transform pos: -85.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26687 components: - type: Transform pos: -15.5,35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26688 components: - type: Transform pos: 74.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26689 components: - type: Transform pos: 75.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26690 components: - type: Transform pos: 74.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26691 components: - type: Transform pos: 66.5,-33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26692 components: - type: Transform pos: -72.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26693 components: - type: Transform pos: -75.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26694 components: - type: Transform pos: -77.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26695 components: - type: Transform pos: -75.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26696 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,86.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26697 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,85.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26698 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26699 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,78.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26700 components: - type: Transform pos: -71.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26701 components: - type: Transform pos: -70.5,80.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26702 components: - type: Transform pos: -70.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26703 components: - type: Transform pos: -71.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26704 components: - type: Transform pos: -73.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26705 components: - type: Transform pos: -77.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26706 components: - type: Transform pos: -78.5,84.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26707 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,83.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26708 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26709 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26710 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26711 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26712 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26713 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26714 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26715 components: - type: Transform pos: -41.5,-41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26716 components: - type: Transform pos: -76.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26717 components: - type: Transform pos: -41.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26718 components: - type: Transform pos: -40.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26719 components: - type: Transform pos: -46.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26720 components: - type: Transform pos: 30.5,-9.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26721 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26722 components: - type: Transform pos: 31.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26723 components: - type: Transform pos: 33.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26724 components: - type: Transform pos: 30.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26725 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26726 components: - type: Transform pos: 40.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26727 components: - type: Transform pos: 41.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26728 components: - type: Transform pos: -23.5,69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26729 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26730 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26731 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26732 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26733 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26734 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26735 components: - type: Transform pos: 3.5,12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26736 components: - type: Transform pos: -2.5,12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26737 components: - type: Transform pos: -72.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ReinforcedWindowDiagonal entities: - uid: 26738 @@ -180805,15 +179743,11 @@ entities: - type: Transform pos: 11.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26739 components: - type: Transform pos: 14.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: RemoteSignaller entities: - uid: 26740 @@ -180829,7 +179763,7 @@ entities: pos: -21.5,-19.5 parent: 2 - type: DnaServer - serverId: 284 + serverId: 285 - proto: RevolverCapGun entities: - uid: 16774 @@ -182290,89 +181224,65 @@ entities: - type: Transform pos: 57.5,14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26964 components: - type: Transform pos: 58.5,14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26965 components: - type: Transform pos: -63.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26966 components: - type: Transform pos: -63.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26967 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26968 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26969 components: - type: Transform pos: 27.5,15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26970 components: - type: Transform pos: 27.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26971 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26972 components: - type: Transform pos: 12.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26973 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26974 components: - type: Transform pos: 11.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ShuttersNormalOpen entities: - uid: 26975 @@ -182380,590 +181290,430 @@ entities: - type: Transform pos: 25.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26976 components: - type: Transform pos: 26.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26977 components: - type: Transform pos: 24.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26978 components: - type: Transform pos: 25.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26979 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26980 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26981 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26982 components: - type: Transform pos: -39.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26983 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26984 components: - type: Transform pos: -52.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26985 components: - type: Transform pos: -53.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26986 components: - type: Transform pos: -71.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26987 components: - type: Transform pos: -70.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26988 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26989 components: - type: Transform pos: 12.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26990 components: - type: Transform pos: 44.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26991 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26992 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26993 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26994 components: - type: Transform pos: 45.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26995 components: - type: Transform pos: 14.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26996 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26997 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26998 components: - type: Transform pos: 43.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 26999 components: - type: Transform pos: 41.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27000 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27001 components: - type: Transform pos: 40.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27002 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27003 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27004 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27005 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27006 components: - type: Transform pos: -1.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27007 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27008 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27009 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27010 components: - type: Transform pos: 67.5,43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27011 components: - type: Transform pos: 54.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27012 components: - type: Transform pos: 54.5,52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27013 components: - type: Transform pos: 54.5,53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27014 components: - type: Transform pos: 67.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27015 components: - type: Transform pos: 67.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27016 components: - type: Transform pos: -8.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27017 components: - type: Transform pos: -6.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27018 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27019 components: - type: Transform pos: -3.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27020 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27021 components: - type: Transform pos: -3.5,-49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27022 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27023 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27024 components: - type: Transform pos: -15.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27025 components: - type: Transform pos: -14.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27026 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27027 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27028 components: - type: Transform pos: 7.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27029 components: - type: Transform pos: 8.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27030 components: - type: Transform pos: 9.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27031 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27032 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27033 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27034 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27035 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27036 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27037 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27038 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27040 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27041 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27042 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27043 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27044 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27045 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27046 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27047 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27048 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27049 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27051 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27052 components: - type: Transform pos: 38.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27053 components: - type: Transform pos: 39.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27054 components: - type: Transform pos: 40.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ShuttersRadiation entities: - uid: 27055 @@ -182972,24 +181722,18 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27056 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27057 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ShuttersRadiationOpen entities: - uid: 27058 @@ -182998,156 +181742,114 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27059 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27060 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27061 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27062 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27063 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27064 components: - type: Transform pos: -1.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27065 components: - type: Transform pos: 2.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27066 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27067 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27068 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27069 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27070 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27071 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27072 components: - type: Transform pos: 0.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27073 components: - type: Transform pos: -0.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27074 components: - type: Transform pos: 1.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27075 components: - type: Transform pos: 39.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27076 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27077 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27078 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ShuttersWindowOpen entities: - uid: 27079 @@ -183156,82 +181858,60 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,63.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27080 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27081 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27082 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27083 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27084 components: - type: Transform pos: 56.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27085 components: - type: Transform pos: 56.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27086 components: - type: Transform pos: 56.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27087 components: - type: Transform pos: 60.5,1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27088 components: - type: Transform pos: 60.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 27089 components: - type: Transform pos: 60.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ShuttleConsoleCircuitboard entities: - uid: 27090 @@ -183247,56 +181927,42 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34867 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34868 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34869 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34870 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34871 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34872 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - proto: ShuttleWindowDiagonal entities: - uid: 34873 @@ -183304,16 +181970,12 @@ entities: - type: Transform pos: 2.5,2.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34874 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - proto: SignAi entities: - uid: 27091 @@ -187244,7 +185906,7 @@ entities: - type: Transform pos: -31.795568,-0.041350782 parent: 2 -- proto: SpacemenFigureSpawner +- proto: SpacemenFigurineSpawner90 entities: - uid: 27569 components: @@ -187637,33 +186299,6 @@ entities: - type: Transform pos: -12.5,67.5 parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 27633 - components: - - type: Transform - pos: -30.5,51.5 - parent: 2 - - uid: 27634 - components: - - type: Transform - pos: -33.5,48.5 - parent: 2 - - uid: 27635 - components: - - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 27636 - components: - - type: Transform - pos: -31.5,52.5 - parent: 2 - - uid: 27637 - components: - - type: Transform - pos: -29.5,48.5 - parent: 2 - proto: SpawnPointBrigmedic entities: - uid: 27638 @@ -188931,6 +187566,35 @@ entities: - type: Transform pos: 3.5,58.5 parent: 2 +- proto: SpawnPointShaftMiner + entities: + - uid: 401 + components: + - type: Transform + pos: -48.5,-50.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 +- proto: SpawnPointShaftMinerMedic + entities: + - uid: 27633 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 27636 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 27875 @@ -189069,6 +187733,23 @@ entities: - type: Transform pos: 48.5,43.5 parent: 2 +- proto: SpawnPointWardenHelper + entities: + - uid: 15523 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 16882 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 - proto: SpawnVendingMachineRestockFoodDrink entities: - uid: 27901 @@ -189088,13 +187769,6 @@ entities: - type: Transform pos: 48.365585,-30.60006 parent: 2 -- proto: SpicyPorkRamenNoodles - entities: - - uid: 27904 - components: - - type: Transform - pos: -47.485367,-7.416152 - parent: 2 - proto: SpiderWeb entities: - uid: 27905 @@ -198339,140 +197013,104 @@ entities: - type: Transform pos: 21.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29328 components: - type: Transform pos: 21.5,-23.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29329 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29330 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29331 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29332 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29333 components: - type: Transform pos: 30.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29334 components: - type: Transform pos: 31.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29335 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29336 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29337 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29338 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29339 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29340 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,50.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29341 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29342 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29343 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 29344 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: ToiletDirtyWater entities: - uid: 29345 @@ -198786,6 +197424,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: TowelColorWhite entities: - uid: 29400 @@ -198793,16 +197435,28 @@ entities: - type: Transform pos: 33.51191,-44.570076 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29401 components: - type: Transform pos: 33.51191,-44.30445 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29402 components: - type: Transform pos: 33.51191,-44.445076 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: ToyFigurineAtmosTech entities: - uid: 29403 @@ -198990,6 +197644,13 @@ entities: - type: Transform pos: 6.460308,60.560043 parent: 2 +- proto: ToyFigurineOwlman + entities: + - uid: 29444 + components: + - type: Transform + pos: 68.77031,5.5521803 + parent: 2 - proto: ToyFigurineParamedic entities: - uid: 29431 @@ -199089,13 +197750,6 @@ entities: - type: Transform pos: 72.76296,7.211225 parent: 2 -- proto: ToyOwlman - entities: - - uid: 29444 - components: - - type: Transform - pos: 68.77031,5.5521803 - parent: 2 - proto: ToyRubberDuck entities: - uid: 29445 @@ -199103,28 +197757,6 @@ entities: - type: Transform pos: 11.295883,-38.66879 parent: 2 -- proto: ToySpawner - entities: - - uid: 29446 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 29447 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 2 - - uid: 29448 - components: - - type: Transform - pos: -16.5,-60.5 - parent: 2 - - uid: 29449 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 2 - proto: TrackingImplanter entities: - uid: 29450 @@ -199554,11 +198186,19 @@ entities: - type: Transform pos: 62.511093,-35.538185 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29499 components: - type: Transform pos: 62.511093,-35.538185 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: UniformShortsRedWithTop entities: - uid: 29500 @@ -199566,11 +198206,19 @@ entities: - type: Transform pos: 62.49547,-35.49131 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - uid: 29501 components: - type: Transform pos: 62.49547,-35.49131 parent: 2 + - type: ContainerContainer + containers: + clothing_upgrades: !type:Container + ents: [] - proto: Vaccinator entities: - uid: 29502 @@ -200047,6 +198695,53 @@ entities: - type: Transform pos: -51.5,-48.5 parent: 2 + - type: UtilityVendor + cardSlot: + priority: 0 + swap: True + blacklist: null + insertSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + ejectSound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg + disableEject: False + insertOnInteract: True + ejectOnInteract: False + ejectOnUse: False + insertVerbText: null + ejectVerbText: null + ejectOnDeconstruct: True + ejectOnBreak: False + whitelistFailPopup: null + lockedFailPopup: null + insertSuccessPopup: null + whitelist: + requireAll: False + tags: null + sizes: null + components: + - PointsCard + - type: ContainerContainer + containers: + vendor_card: !type:ContainerSlot {} - proto: VendingMachineSciDrobe entities: - uid: 29577 @@ -224487,29 +223182,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: WarpPointBombing - entities: - - uid: 34223 - components: - - type: Transform - pos: 44.5,57.5 - parent: 2 - - type: WarpPoint - location: каюта гсб - - uid: 34224 - components: - - type: Transform - pos: 78.5,23.5 - parent: 2 - - type: WarpPoint - location: карцер тюрьмы - - uid: 34225 - components: - - type: Transform - pos: -87.5,73.5 - parent: 2 - - type: WarpPoint - location: Телекомы - proto: WashingMachine entities: - uid: 34226 @@ -225393,115 +224065,85 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34359 components: - type: Transform pos: -3.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34360 components: - type: Transform pos: -32.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34361 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34362 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34363 components: - type: Transform pos: 7.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34364 components: - type: Transform pos: 8.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34365 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34366 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34367 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34368 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34369 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34370 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34371 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34372 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorHydroponicsLocked entities: - uid: 34373 @@ -225510,16 +224152,12 @@ entities: rot: 3.141592653589793 rad pos: -13.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34374 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,67.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 34375 @@ -225528,16 +224166,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34376 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34377 components: - type: Transform @@ -225546,32 +224180,24 @@ entities: parent: 2 - type: AccessReader accessListsOriginal: [] - - type: DeltaPressure - gridUid: 2 - uid: 34378 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34379 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,61.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34380 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorKitchenLocked entities: - uid: 34381 @@ -225579,8 +224205,6 @@ entities: - type: Transform pos: -10.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecure entities: - uid: 34382 @@ -225589,113 +224213,83 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34383 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34384 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34385 components: - type: Transform pos: -32.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34386 components: - type: Transform pos: -31.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34387 components: - type: Transform pos: -46.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34388 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34389 components: - type: Transform pos: 1.5,29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34390 components: - type: Transform pos: 0.5,29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34391 components: - type: Transform pos: -0.5,29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34392 components: - type: Transform pos: 58.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34393 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34394 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34395 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34396 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - type: AccessReader access: - - HeadOfSecurity @@ -225705,56 +224299,42 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34398 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34399 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34400 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34401 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34402 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34403 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 34404 @@ -225762,8 +224342,6 @@ entities: - type: Transform pos: 48.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 34405 @@ -225771,52 +224349,38 @@ entities: - type: Transform pos: -53.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34406 components: - type: Transform pos: -52.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34407 components: - type: Transform pos: -54.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34408 components: - type: Transform pos: -51.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34409 components: - type: Transform pos: -50.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34410 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34411 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureBrigLocked entities: - uid: 34412 @@ -225825,46 +224389,34 @@ entities: rot: 3.141592653589793 rad pos: 26.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34413 components: - type: Transform pos: 25.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34414 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34415 components: - type: Transform pos: 26.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34416 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34417 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureCargoLocked entities: - uid: 34418 @@ -225873,15 +224425,11 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34419 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 34420 @@ -225890,39 +224438,29 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34421 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34422 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34423 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34424 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureCommandLocked entities: - uid: 34425 @@ -225930,146 +224468,108 @@ entities: - type: Transform pos: -86.5,75.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34426 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34427 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34428 components: - type: Transform pos: -22.5,-20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34429 components: - type: Transform pos: 58.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34430 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34431 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34432 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34433 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34434 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34435 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34436 components: - type: Transform pos: -88.5,75.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34437 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,71.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34438 components: - type: Transform pos: -87.5,75.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34439 components: - type: Transform pos: -90.5,74.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34440 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,72.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34441 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34442 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34443 components: - type: Transform pos: -88.5,63.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 34444 @@ -226078,54 +224578,40 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34445 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34446 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34447 components: - type: Transform pos: -32.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34448 components: - type: Transform pos: -31.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34449 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34450 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 34451 @@ -226134,8 +224620,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureMedicalLocked entities: - uid: 34452 @@ -226143,84 +224627,62 @@ entities: - type: Transform pos: 37.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34453 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34454 components: - type: Transform pos: 28.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34455 components: - type: Transform pos: 33.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34456 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34457 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34458 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34459 components: - type: Transform pos: 34.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34460 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34461 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34462 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureSalvageLocked entities: - uid: 34463 @@ -226229,15 +224691,11 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34464 components: - type: Transform pos: -43.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureScienceLocked entities: - uid: 34465 @@ -226246,109 +224704,81 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34466 components: - type: Transform pos: -11.5,-30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34467 components: - type: Transform pos: -12.5,-30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34468 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34469 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34470 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34471 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34472 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34473 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34474 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34475 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34476 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34477 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34478 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 34479 @@ -226357,8 +224787,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindoorSecureSecurityLocked entities: - uid: 34480 @@ -226366,134 +224794,100 @@ entities: - type: Transform pos: 28.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34481 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34482 components: - type: Transform pos: 63.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34483 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34484 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34485 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34486 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34487 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34488 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34489 components: - type: Transform pos: 81.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34490 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34491 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34492 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34910 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34911 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34912 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - uid: 34913 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 34785 - - type: DeltaPressure - gridUid: 34785 - proto: WindoorServiceLocked entities: - uid: 34493 @@ -226502,24 +224896,18 @@ entities: rot: 3.141592653589793 rad pos: 8.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34494 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34495 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: Window entities: - uid: 34496 @@ -226527,397 +224915,287 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34497 components: - type: Transform pos: -24.5,-48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34498 components: - type: Transform pos: -19.5,-51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34499 components: - type: Transform pos: -22.5,-51.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34500 components: - type: Transform pos: 31.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34501 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34502 components: - type: Transform pos: 67.5,0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34503 components: - type: Transform pos: 68.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34504 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34505 components: - type: Transform pos: -3.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34506 components: - type: Transform pos: -2.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34507 components: - type: Transform pos: 0.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34508 components: - type: Transform pos: -14.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34509 components: - type: Transform pos: -12.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34510 components: - type: Transform pos: 26.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34511 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34512 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34513 components: - type: Transform pos: 17.5,46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34514 components: - type: Transform pos: 17.5,47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34515 components: - type: Transform pos: 18.5,45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34516 components: - type: Transform pos: 3.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34517 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34518 components: - type: Transform pos: 5.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34519 components: - type: Transform pos: -4.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34520 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34521 components: - type: Transform pos: -5.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34522 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34523 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34524 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34525 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34526 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34527 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34528 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34529 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34530 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34531 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34532 components: - type: Transform pos: 9.5,-57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34533 components: - type: Transform pos: 9.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34534 components: - type: Transform pos: 11.5,-58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34535 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34536 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34537 components: - type: Transform pos: 67.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34538 components: - type: Transform pos: 51.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34539 components: - type: Transform pos: 51.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34540 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34541 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34542 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34543 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34544 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34545 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34546 components: - type: Transform pos: -7.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34547 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34548 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34549 components: - type: Transform pos: 4.5,55.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34550 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindowDirectional entities: - uid: 34551 @@ -226925,183 +225203,137 @@ entities: - type: Transform pos: -49.5,-6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34552 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34553 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34554 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34555 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34556 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34557 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34558 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-14.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34559 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34560 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34561 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34562 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34563 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34564 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,49.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34565 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34566 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34567 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34568 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,63.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34569 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34570 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34571 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34572 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34573 components: - type: Transform pos: -5.5,62.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindowFrostedDirectional entities: - uid: 34574 @@ -227110,80 +225342,60 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-21.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34575 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34576 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34577 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34578 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34579 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34580 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34581 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34582 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34583 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: WindowReinforcedDirectional entities: - uid: 34584 @@ -227191,1077 +225403,795 @@ entities: - type: Transform pos: 36.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34585 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34586 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34587 components: - type: Transform pos: -12.5,22.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34588 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34589 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34590 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34591 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34592 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,2.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34593 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34594 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34595 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34596 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34597 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34598 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,6.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34599 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34600 components: - type: Transform pos: 29.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34601 components: - type: Transform pos: 27.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34602 components: - type: Transform pos: 32.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34603 components: - type: Transform pos: 34.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34604 components: - type: Transform pos: 26.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34605 components: - type: Transform pos: 31.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34606 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34607 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34608 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34609 components: - type: Transform pos: -23.5,-20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34610 components: - type: Transform pos: -21.5,-20.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34611 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-31.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34612 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34613 components: - type: Transform pos: 31.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34614 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34615 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34616 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34617 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34618 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34619 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34620 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34621 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34622 components: - type: Transform pos: 62.5,7.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34623 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,8.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34624 components: - type: Transform pos: 18.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34625 components: - type: Transform pos: 19.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34626 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34627 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34628 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34629 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34630 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34631 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34632 components: - type: Transform pos: 22.5,59.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34633 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,57.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34634 components: - type: Transform pos: 10.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34635 components: - type: Transform pos: 10.5,-45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34636 components: - type: Transform pos: 10.5,-46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34637 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34638 components: - type: Transform pos: 10.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34639 components: - type: Transform pos: 10.5,-42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34640 components: - type: Transform pos: 10.5,-41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34641 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34642 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34643 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34644 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34645 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34646 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34647 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-45.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34648 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-46.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34649 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34650 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34651 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,68.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34652 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,66.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34653 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,65.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34654 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34655 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-15.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34656 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34657 components: - type: Transform pos: -65.5,-16.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34658 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34659 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-12.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34660 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34661 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,56.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34662 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,58.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34663 components: - type: Transform pos: 10.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34664 components: - type: Transform pos: 48.5,13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34665 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34666 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34667 components: - type: Transform pos: 34.5,-4.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34668 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,5.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34669 components: - type: Transform pos: -64.5,17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34670 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34671 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,69.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34672 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34673 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34674 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,48.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34675 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,52.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34676 components: - type: Transform pos: 27.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34677 components: - type: Transform pos: 29.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34678 components: - type: Transform pos: 30.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34679 components: - type: Transform pos: 80.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34680 components: - type: Transform pos: 82.5,27.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34681 components: - type: Transform pos: 25.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34682 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34683 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34684 components: - type: Transform pos: 63.5,-29.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34685 components: - type: Transform pos: 63.5,-28.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34686 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34687 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34688 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-11.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34689 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-13.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34690 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,26.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34691 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,25.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34692 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34693 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-24.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34694 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34695 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,85.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34696 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,85.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34697 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,79.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34698 components: - type: Transform pos: -35.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34699 components: - type: Transform pos: -33.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34700 components: - type: Transform pos: -34.5,-37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34701 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34702 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34703 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34704 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34705 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-40.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34706 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34707 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34708 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34709 components: - type: Transform pos: 30.5,19.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34710 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,18.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34711 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,17.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34712 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34713 components: - type: Transform pos: 35.5,42.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34714 components: - type: Transform pos: 36.5,41.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34715 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34716 components: - type: Transform pos: 42.5,33.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34717 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34718 components: - type: Transform pos: 43.5,32.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34719 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34720 components: - type: Transform pos: 41.5,35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34721 components: - type: Transform pos: 39.5,37.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34722 components: - type: Transform pos: 40.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34723 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,36.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - uid: 34724 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,35.5 parent: 2 - - type: DeltaPressure - gridUid: 2 - proto: Wirecutter entities: - uid: 12395 diff --git a/Resources/Prototypes/Access/cargo.yml b/Resources/Prototypes/Access/cargo.yml index 692726f1efe..cff39b9b863 100644 --- a/Resources/Prototypes/Access/cargo.yml +++ b/Resources/Prototypes/Access/cargo.yml @@ -14,5 +14,6 @@ id: Cargo tags: - Quartermaster + - LavalandAvanpost # Corvax-Wega-Lavaland - Salvage - Cargo diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index eeb671a983d..6ff3f4d2a15 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -20,6 +20,7 @@ - Engineering - Medical - Quartermaster + - LavalandAvanpost # Corvax-Wega-Lavaland - Salvage - Cargo - Research diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 5e67f42663f..f0516f49a8a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -14,7 +14,7 @@ - id: ClothingHandsKnuckleDustersQM - id: PrinterDocFlatpack # Corvax-Printer - id: FundingAllocationComputerFlatpack # Corvax-Wega - + - id: LavalandShuttleComputerCircuitboard # Corvax-Wega-Lavaland - type: entity id: LockerQuarterMasterFilled diff --git a/Resources/Prototypes/Corvax/Roles/Jobs/Security/pilot.yml b/Resources/Prototypes/Corvax/Roles/Jobs/Security/pilot.yml index 1f67b1c1507..2518da276e5 100644 --- a/Resources/Prototypes/Corvax/Roles/Jobs/Security/pilot.yml +++ b/Resources/Prototypes/Corvax/Roles/Jobs/Security/pilot.yml @@ -21,6 +21,7 @@ - Brig - Maintenance - Service + - LavalandAvanpost # Corvax-Wega-Lavaland - External - Cryogenics special: diff --git a/Resources/Prototypes/Corvax/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Corvax/Roles/Jobs/Security/senior_officer.yml index c95c92479b1..1918fc556c0 100644 --- a/Resources/Prototypes/Corvax/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Corvax/Roles/Jobs/Security/senior_officer.yml @@ -27,6 +27,7 @@ - Brig - Maintenance - Service + - LavalandAvanpost # Corvax-Wega-Lavaland - External special: - !type:AddImplantSpecial diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index c5e4cca8ce2..67450c3ad3f 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -160,6 +160,17 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + # Corvax-Wega-Lavaland-start + - type: Construction + graph: GoliathCloak + node: cloack + - type: Tag + tags: + - WhitelistChameleon + - GoliathCloak + - ClothMade + - Recyclable + # Corvax-Wega-Lavaland-end - type: entity parent: ClothingNeckBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 898a68f51e5..27d13044b83 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -469,12 +469,14 @@ - type: Armor modifiers: coefficients: - Blunt: 0.6 - Slash: 0.8 - Piercing: 0.4 + # Corvax-Wega-Lavaland-Edit-start + Blunt: 0.3 + Slash: 0.3 + Piercing: 0.3 + # Corvax-Wega-Lavaland-Edit-end - type: ClothingSpeedModifier - walkModifier: 0.8 - sprintModifier: 0.8 + walkModifier: 0.9 # Corvax-Wega-Lavaland-Edit + sprintModifier: 0.9 # Corvax-Wega-Lavaland-Edit - type: HeldSpeedModifier - type: ExplosionResistance damageCoefficient: 0.4 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index c2e69a906bf..131f5117ed1 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -42,6 +42,11 @@ - type: Clothing sprite: Clothing/Shoes/Boots/explorer.rsi - type: Matchbox + # Corvax-Wega-Dirtable-start + - type: Dirtable + dirtState: salvageboots + equippedDirtState: equipped-shoes + # Corvax-Wega-Dirtable-end - type: entity parent: ClothingShoesBaseButcherable diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml index a6a79895cc7..e7c30c2a8e5 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -1,6 +1,6 @@ - type: entity abstract: true - parent: [ Clothing, ClothingUniformDamageableBase ] # Corvax-Wega-Edit + parent: [ Clothing, ClothingUniformDamageableBase, BaseUpgradableClothingUniform ] # Corvax-Wega-Edit id: UnsensoredClothingUniformBase components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml index a5f002f221b..b23dcba05ca 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/spawners.yml @@ -538,8 +538,8 @@ table: !type:GroupSelector children: - id: MobGoliath - weight: 45 + weight: 5 # Corvax-Wega-Lavaland-Edit - id: MobHivelord - weight: 35 + weight: 55 # Corvax-Wega-Lavaland-Edit - id: MobBasilisk - weight: 20 + weight: 40 # Corvax-Wega-Lavaland-Edit diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index f0a48a65772..45352c4e554 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -28,167 +28,169 @@ tags: - DoorBumpOpener -- type: entity - id: MobGoliath - parent: [ BaseMobAsteroid, MobBloodstream ] - name: goliath - description: A massive beast that uses long tentacles to ensnare its prey, threatening them is not advised under any conditions. - components: - - type: Sprite - sprite: Mobs/Aliens/Asteroid/goliath.rsi - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: goliath - - type: DamageStateVisuals - states: - Alive: - Base: goliath - Dead: - Base: goliath_dead - - type: MovementSpeedModifier - baseWalkSpeed : 2.00 - baseSprintSpeed : 2.00 - - type: Bloodstream - bloodReferenceSolution: - reagents: - - ReagentId: Blood - Quantity: 350 - - type: MobThresholds - thresholds: - 0: Alive - 150: Dead - - type: MeleeWeapon - soundHit: - path: "/Audio/Weapons/smash.ogg" - angle: 0 - attackRate: 0.75 - animation: WeaponArcPunch - damage: - types: - Slash: 10 - Piercing: 10 - - type: NpcFactionMember - factions: - - SimpleHostile - - type: HTN - constantlyReplan: false - rootTask: - task: GoliathCompound - blackboard: - VisionRadius: !type:Single - 6 - AggroVisionRadius: !type:Single - 10 - NavSmash: !type:Bool - true - - type: NPCUseActionOnTarget - actionId: ActionGoliathTentacle - - type: Tag - tags: - - CannotSuicide - - Goliath - - FootstepSound - - type: NoSlip - - type: Butcherable - spawned: - - id: FoodMeatGoliath - amount: 3 - - id: MaterialGoliathHide1 - amount: 3 +# Corvax-Wega-Lavaland-Edit-start +# - type: entity +# id: MobGoliath +# parent: [ BaseMobAsteroid, MobBloodstream ] +# name: goliath +# description: A massive beast that uses long tentacles to ensnare its prey, threatening them is not advised under any conditions. +# components: +# - type: Sprite +# sprite: Mobs/Aliens/Asteroid/goliath.rsi +# layers: +# - map: ["enum.DamageStateVisualLayers.Base"] +# state: goliath +# - type: DamageStateVisuals +# states: +# Alive: +# Base: goliath +# Dead: +# Base: goliath_dead +# - type: MovementSpeedModifier +# baseWalkSpeed : 2.00 +# baseSprintSpeed : 2.00 +# - type: Bloodstream +# bloodReferenceSolution: +# reagents: +# - ReagentId: Blood +# Quantity: 350 +# - type: MobThresholds +# thresholds: +# 0: Alive +# 150: Dead +# - type: MeleeWeapon +# soundHit: +# path: "/Audio/Weapons/smash.ogg" +# angle: 0 +# attackRate: 0.75 +# animation: WeaponArcPunch +# damage: +# types: +# Slash: 10 +# Piercing: 10 +# - type: NpcFactionMember +# factions: +# - SimpleHostile +# - type: HTN +# constantlyReplan: false +# rootTask: +# task: GoliathCompound +# blackboard: +# VisionRadius: !type:Single +# 6 +# AggroVisionRadius: !type:Single +# 10 +# NavSmash: !type:Bool +# true +# - type: NPCUseActionOnTarget +# actionId: ActionGoliathTentacle +# - type: Tag +# tags: +# - CannotSuicide +# - Goliath +# - FootstepSound +# - type: NoSlip +# - type: Butcherable +# spawned: +# - id: FoodMeatGoliath +# amount: 3 +# - id: MaterialGoliathHide1 +# amount: 3 -- type: entity - parent: BaseAction - id: ActionGoliathTentacle - name: "[color=red]Tentacle Slam[/color]" - description: Use your tentacles to grab and stun a target player! - components: - - type: Action - raiseOnUser: true - icon: - sprite: Mobs/Aliens/Asteroid/goliath.rsi - state: goliath_tentacle_spawn - iconOn: - sprite: Mobs/Aliens/Asteroid/goliath.rsi - state: goliath_tentacle_wiggle - sound: - path: "/Audio/Weapons/slash.ogg" - useDelay: 8 - - type: TargetAction - range: 10 - - type: WorldTargetAction - event: !type:GoliathSummonTentacleAction +# - type: entity +# parent: BaseAction +# id: ActionGoliathTentacle +# name: "[color=red]Tentacle Slam[/color]" +# description: Use your tentacles to grab and stun a target player! +# components: +# - type: Action +# raiseOnUser: true +# icon: +# sprite: Mobs/Aliens/Asteroid/goliath.rsi +# state: goliath_tentacle_spawn +# iconOn: +# sprite: Mobs/Aliens/Asteroid/goliath.rsi +# state: goliath_tentacle_wiggle +# sound: +# path: "/Audio/Weapons/slash.ogg" +# useDelay: 8 +# - type: TargetAction +# range: 10 +# - type: WorldTargetAction +# event: !type:GoliathSummonTentacleAction -- type: entity - id: GoliathTentacle - name: tentacle - components: - - type: Transform - anchored: True - - type: Physics - bodyType: Static - canCollide: true - - type: InteractionOutline - - type: Sprite - sprite: Mobs/Aliens/Asteroid/goliath.rsi - layers: - - state: goliath_tentacle_wiggle - - type: StunOnContact - blacklist: - tags: - - Goliath - - type: Fixtures - fixtures: - fix: - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - mask: - - Impassable - layer: - - Impassable - hard: false - - type: TimedDespawn #do this shit by hand because of fucking course. - lifetime: 0.4 - - type: SpawnOnDespawn - prototype: EffectGoliathTentacleRetract +# - type: entity +# id: GoliathTentacle +# name: tentacle +# components: +# - type: Transform +# anchored: True +# - type: Physics +# bodyType: Static +# canCollide: true +# - type: InteractionOutline +# - type: Sprite +# sprite: Mobs/Aliens/Asteroid/goliath.rsi +# layers: +# - state: goliath_tentacle_wiggle +# - type: StunOnContact +# blacklist: +# tags: +# - Goliath +# - type: Fixtures +# fixtures: +# fix: +# shape: +# !type:PhysShapeAabb +# bounds: "-0.45,-0.45,0.45,0.45" +# mask: +# - Impassable +# layer: +# - Impassable +# hard: false +# - type: TimedDespawn #do this shit by hand because of fucking course. +# lifetime: 0.4 +# - type: SpawnOnDespawn +# prototype: EffectGoliathTentacleRetract -- type: entity - id: BaseEffectGoliathTentacleSpawn - categories: [ HideSpawnMenu ] - name: tentacle - abstract: true - components: - - type: Transform - anchored: True - - type: Physics - bodyType: Static - canCollide: false - - type: Sprite - sprite: Mobs/Aliens/Asteroid/goliath.rsi - - type: InteractionOutline - - type: TimedDespawn - lifetime: 0.7 +# - type: entity +# id: BaseEffectGoliathTentacleSpawn +# categories: [ HideSpawnMenu ] +# name: tentacle +# abstract: true +# components: +# - type: Transform +# anchored: True +# - type: Physics +# bodyType: Static +# canCollide: false +# - type: Sprite +# sprite: Mobs/Aliens/Asteroid/goliath.rsi +# - type: InteractionOutline +# - type: TimedDespawn +# lifetime: 0.7 -- type: entity - id: EffectGoliathTentacleSpawn - parent: BaseEffectGoliathTentacleSpawn - categories: [ HideSpawnMenu ] - name: tentacle - components: - - type: Sprite - state: goliath_tentacle_spawn - - type: SpawnOnDespawn - prototype: GoliathTentacle +# - type: entity +# id: EffectGoliathTentacleSpawn +# parent: BaseEffectGoliathTentacleSpawn +# categories: [ HideSpawnMenu ] +# name: tentacle +# components: +# - type: Sprite +# state: goliath_tentacle_spawn +# - type: SpawnOnDespawn +# prototype: GoliathTentacle -- type: entity - id: EffectGoliathTentacleRetract - parent: BaseEffectGoliathTentacleSpawn - categories: [ HideSpawnMenu ] - components: - - type: Sprite - state: goliath_tentacle_retract - - type: EffectVisuals - - type: AnimationPlayer +# - type: entity +# id: EffectGoliathTentacleRetract +# parent: BaseEffectGoliathTentacleSpawn +# categories: [ HideSpawnMenu ] +# components: +# - type: Sprite +# state: goliath_tentacle_retract +# - type: EffectVisuals +# - type: AnimationPlayer +# Corvax-Wega-Lavaland-Edit-end - type: entity id: MobHivelord diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml index 1f3faf21554..0fb3a4d3b04 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml @@ -1,150 +1,152 @@ -- type: entity - name: watcher - id: MobWatcherBase - parent: [ SimpleSpaceMobBase, FlyingMobBase ] - abstract: true - description: It's like it's staring right through you. - components: - - type: NpcFactionMember - factions: - - SimpleHostile - - type: HTN - rootTask: - task: SimpleRangedHostileCompound - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Aliens/Lavaland/watcher.rsi - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: base - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: unshaded - shader: unshaded - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.30 - density: 80 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer - - type: DamageStateVisuals - states: - Alive: - Base: base - BaseUnshaded: unshaded - Dead: - Base: dead - BaseUnshaded: dead-unshaded - - type: MobThresholds - thresholds: - 0: Alive - 50: Dead - - type: Butcherable - spawned: - - id: DiamondOre1 - amount: 1 - - type: MovementSpeedModifier - baseWalkSpeed: 5 - baseSprintSpeed: 7 - - type: BatteryAmmoProvider - proto: WatcherBolt - fireCost: 50 - - type: BatterySelfRecharger - autoRechargeRate: 50 - - type: Battery - maxCharge: 1000 - startingCharge: 1000 - - type: Gun - fireRate: 0.5 - useKey: false - selectedMode: SemiAuto - availableModes: - - SemiAuto - soundGunshot: /Audio/Weapons/Guns/Gunshots/taser2.ogg - - type: CombatMode - - type: InteractionPopup - successChance: 0.3 - interactSuccessString: petting-success-slimes - interactFailureString: petting-failure-generic - interactSuccessSound: - path: /Audio/Animals/lizard_happy.ogg +# Corvax-Wega-Lavaland-Edit-start +# - type: entity +# name: watcher +# id: MobWatcherBase +# parent: [ SimpleSpaceMobBase, FlyingMobBase ] +# abstract: true +# description: It's like it's staring right through you. +# components: +# - type: NpcFactionMember +# factions: +# - SimpleHostile +# - type: HTN +# rootTask: +# task: SimpleRangedHostileCompound +# - type: Sprite +# drawdepth: Mobs +# sprite: Mobs/Aliens/Lavaland/watcher.rsi +# layers: +# - map: [ "enum.DamageStateVisualLayers.Base" ] +# state: base +# - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] +# state: unshaded +# shader: unshaded +# - type: Fixtures +# fixtures: +# fix1: +# shape: +# !type:PhysShapeCircle +# radius: 0.30 +# density: 80 +# mask: +# - FlyingMobMask +# layer: +# - FlyingMobLayer +# - type: DamageStateVisuals +# states: +# Alive: +# Base: base +# BaseUnshaded: unshaded +# Dead: +# Base: dead +# BaseUnshaded: dead-unshaded +# - type: MobThresholds +# thresholds: +# 0: Alive +# 50: Dead +# - type: Butcherable +# spawned: +# - id: DiamondOre1 +# amount: 1 +# - type: MovementSpeedModifier +# baseWalkSpeed: 5 +# baseSprintSpeed: 7 +# - type: BatteryAmmoProvider +# proto: WatcherBolt +# fireCost: 50 +# - type: BatterySelfRecharger +# autoRechargeRate: 50 +# - type: Battery +# maxCharge: 1000 +# startingCharge: 1000 +# - type: Gun +# fireRate: 0.5 +# useKey: false +# selectedMode: SemiAuto +# availableModes: +# - SemiAuto +# soundGunshot: /Audio/Weapons/Guns/Gunshots/taser2.ogg +# - type: CombatMode +# - type: InteractionPopup +# successChance: 0.3 +# interactSuccessString: petting-success-slimes +# interactFailureString: petting-failure-generic +# interactSuccessSound: +# path: /Audio/Animals/lizard_happy.ogg -- type: entity - id: MobWatcherLavaland - parent: MobWatcherBase - components: - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: base - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: unshaded - shader: unshaded - color: red - - type: PointLight - radius: 1 - energy: 3 - color: red +# - type: entity +# id: MobWatcherLavaland +# parent: MobWatcherBase +# components: +# - type: Sprite +# layers: +# - map: [ "enum.DamageStateVisualLayers.Base" ] +# state: base +# - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] +# state: unshaded +# shader: unshaded +# color: red +# - type: PointLight +# radius: 1 +# energy: 3 +# color: red -- type: entity - id: MobWatcherIcewing - parent: MobWatcherBase - name: icewing watcher - components: - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: base - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: unshaded - shader: unshaded - color: deepskyblue - - type: PointLight - radius: 1 - energy: 3 - color: deepskyblue +# - type: entity +# id: MobWatcherIcewing +# parent: MobWatcherBase +# name: icewing watcher +# components: +# - type: Sprite +# layers: +# - map: [ "enum.DamageStateVisualLayers.Base" ] +# state: base +# - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] +# state: unshaded +# shader: unshaded +# color: deepskyblue +# - type: PointLight +# radius: 1 +# energy: 3 +# color: deepskyblue -- type: entity - id: MobWatcherMagmawing - parent: MobWatcherBase - name: magmawing watcher - components: - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: base - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: unshaded - shader: unshaded - color: orangered - - type: PointLight - radius: 1 - energy: 3 - color: orangered - - type: BatteryAmmoProvider - proto: WatcherBoltMagmawing - fireCost: 50 +# - type: entity +# id: MobWatcherMagmawing +# parent: MobWatcherBase +# name: magmawing watcher +# components: +# - type: Sprite +# layers: +# - map: [ "enum.DamageStateVisualLayers.Base" ] +# state: base +# - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] +# state: unshaded +# shader: unshaded +# color: orangered +# - type: PointLight +# radius: 1 +# energy: 3 +# color: orangered +# - type: BatteryAmmoProvider +# proto: WatcherBoltMagmawing +# fireCost: 50 -- type: entity - id: MobWatcherPride - parent: MobWatcherBase - name: pride watcher - suffix: Admeme - description: This rare subspecies only appears in June. - components: - - type: Sprite - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: base - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: unshaded - shader: unshaded - - type: PointLight - radius: 1 - energy: 3 - - type: RgbLightController - layers: [ 1 ] +# - type: entity +# id: MobWatcherPride +# parent: MobWatcherBase +# name: pride watcher +# suffix: Admeme +# description: This rare subspecies only appears in June. +# components: +# - type: Sprite +# layers: +# - map: [ "enum.DamageStateVisualLayers.Base" ] +# state: base +# - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] +# state: unshaded +# shader: unshaded +# - type: PointLight +# radius: 1 +# energy: 3 +# - type: RgbLightController +# layers: [ 1 ] +# Corvax-Wega-Lavaland-Edit-end diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 0da401d9f86..cff33707aca 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -301,6 +301,7 @@ - type: FireVisuals alternateState: Standing - type: StunVisuals + - type: LegionReversible # Corvax-Wega-Lavaland - type: entity save: false diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index ff6b7f24d28..0cebfc327d5 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -148,6 +148,7 @@ - type: LightningTarget priority: 2 lightningExplode: false + - type: LavalandVisitor # Corvax-Wega-Lavaland # Used for mobs that can enter combat mode and can attack. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 6ab69bcee97..032e8d7d685 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -518,12 +518,12 @@ appearanceDataInit: enum.PdaVisuals.PdaType: !type:String - pda-miner + pda-salvage-specialist # Corvax-Wega-Lavaland-Edit - type: PdaBorderColor borderColor: "#af9366" - accentVColor: "#8900c9" + accentHColor: "#8900c9" # Corvax-Wega-Lavaland-Edit - type: Icon - state: pda-miner + state: pda-salvage-specialist # Corvax-Wega-Lavaland-Edit - type: CartridgeLoader uiKey: enum.PdaUiKey.Key preinstalled: diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 6d5bd964be3..3435b24543b 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -749,6 +749,12 @@ Quantity: 3 - type: Item heldPrefix: bones + # Corvax-Wega-Lavaland-start + - type: Tag + tags: + - RawMaterial + - MaterialsThrophy + # Corvax-Wega-Lavaland-end - type: entity parent: MaterialBones diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index 708d175a51e..0a23219bb8b 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -9,6 +9,7 @@ - type: Item sprite: Objects/Materials/ore.rsi size: Normal + - type: OreValue # Corvax-Wega-Lavaland - type: Tag tags: - Ore diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index eb9b7f75502..43abfad61a1 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -27,6 +27,7 @@ stealGroup: IDCard - type: EdibleMatter # Corvax-Wega-Add canBeEaten: false # Corvax-Wega-Add + - type: PointsCard # Corvax-Wega-Lavaland #IDs with layers diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml index e7e3a19837f..0508a1382c5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml @@ -25,6 +25,8 @@ tags: - ArtifactFragment - Ore + - Gems # Corvax-Wega-Lavaland + - MagmiteAlloy # Corvax-Wega-Lavaland - type: Dumpable ## Corvax-Wega-Start @@ -49,6 +51,7 @@ tags: - ArtifactFragment - Ore + - Gems # Corvax-Wega-Lavaland - type: Sprite sprite: Objects/Specific/Mining/ore_bag.rsi # Corvax-Wega-Start @@ -73,4 +76,4 @@ True: { state: orebag_on } False: { state: orebag_off } # Corvax-Wega-End - - type: Dumpable \ No newline at end of file + - type: Dumpable diff --git a/Resources/Prototypes/Entities/Objects/Tools/gps.yml b/Resources/Prototypes/Entities/Objects/Tools/gps.yml index a5c6ce40979..a50f598f4c1 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gps.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gps.yml @@ -12,10 +12,20 @@ - type: Item sprite: Objects/Devices/gps.rsi - type: HandheldGPS + handheld: true # Corvax-Wega-Lavaland - type: PhysicalComposition materialComposition: Steel: 400 Glass: 150 + # Corvax-Wega-Lavaland-start + - type: HandheldGpsUi + - type: ActivatableUI + key: enum.GpsUiKey.Key + - type: UserInterface + interfaces: + enum.GpsUiKey.Key: + type: GpsBoundUserInterface + # Corvax-Wega-Lavaland-end - type: Tag tags: - GPS diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 5fa73879bd8..16555d6a1ef 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -551,12 +551,13 @@ impactEffect: BulletImpactEffectKinetic damage: types: - Blunt: 15 + Blunt: 10 # Corvax-Wega-Lavaland-Edit Structural: 30 # Short lifespan - type: TimedDespawn lifetime: 0.22 # roughly 5.5 tiles - type: GatheringProjectile + - type: ProjectilePressure # Corvax-Wega-Lavaland - type: entity id: BulletKineticShuttle @@ -610,6 +611,7 @@ types: Blunt: 18 Slash: 4 + - type: ProjectilePressure # Corvax-Wega-Lavaland - type: Projectile impactEffect: BulletImpactEffectKinetic damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml index ca56ae0c6cc..874638dc71c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml @@ -60,6 +60,7 @@ SheetSteel1: min: 3 max: 5 + - type: NPCIgnoringOptimize # Corvax-Wega-Add its turret lol - type: HTN rootTask: task: TurretCompound diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index a279916cf80..fdb98ca1d7f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -106,6 +106,18 @@ color: "#ffeead" enabled: false radius: 4 + # Corvax-Wega-Lavaland-start + - type: Appearance + - type: ToggleableVisuals + spriteLayer: light + - type: ItemTogglePointLight + - type: GenericVisualizer + visuals: + enum.AmmoVisuals.HasAmmo: + empty-icon: + True: { visible: False } + False: { visible: True } + # Corvax-Wega-Lavaland-end # Very high burst damage if you land a mark, while also providing a small amount of healing. - type: entity @@ -117,7 +129,16 @@ - Pickaxe - type: Sprite sprite: Objects/Weapons/Melee/crusher.rsi - state: icon + # Corvax-Wega-Lavaland-Edit-start + layers: + - state: icon + # - state: icon-lit + # shader: unshaded + # visible: false + - state: icon-uncharged + visible: false + map: [ "empty-icon" ] + # Corvax-Wega-Lavaland-Edit-end - type: Item size: Ginormous sprite: Objects/Weapons/Melee/crusher-inhands.rsi @@ -131,6 +152,21 @@ - type: UseDelayOnShoot - type: UseDelay delay: 0.9 + # Corvax-Wega-Lavaland-start + - type: TrophyHuntingTool + - type: UpgradeableCrusher + whitelist: + tags: + - CrusherUpgrade + - type: ContainerContainer + containers: + crusher_upgrades: !type:Container + - type: Tool + qualities: + - Slicing + useSound: + path: /Audio/Items/Culinary/chop.ogg + # Corvax-Wega-Lavaland-end - type: LeechOnMarker leech: groups: @@ -176,7 +212,13 @@ components: - type: Sprite sprite: Objects/Weapons/Melee/crusher_dagger.rsi - state: icon + # Corvax-Wega-Lavaland-Edit-start + layers: + - state: icon + # - state: icon-lit + # shader: unshaded + # visible: false + # Corvax-Wega-Lavaland-Edit-end - type: MeleeWeapon autoAttack: true wideAnimationRotation: -135 diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index e0aaee0d6c4..e6bea7004d4 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -29,6 +29,7 @@ - BaseStationAllEventsEligible - BaseStationNanotrasen - BaseStationDeliveries + - BaseStationLavaland # Corvax-Wega-Lavaland categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 618597c8088..a789f22d8ee 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -608,6 +608,7 @@ staticPacks: - OreSmelting - RGlassSmelting + - type: OreProcessorPoints # Corvax-Wega-Lavaland - type: entity parent: OreProcessor diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 92ac513345d..31ebdbe9fed 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -1470,26 +1470,78 @@ name: Salvage Vendor description: A dwarf's best friend! components: - - type: VendingMachine - pack: SalvageEquipmentInventory - offState: off - brokenState: broken - normalState: normal-unshaded - denyState: deny-unshaded + # Corvax-Wega-Lavaland-Edit-start + # - type: VendingMachine + # pack: SalvageEquipmentInventory + # offState: off + # brokenState: broken + # normalState: normal-unshaded + # denyState: deny-unshaded + # Corvax-Wega-Lavaland-Edit-end - type: Sprite sprite: Structures/Machines/VendingMachines/mining.rsi layers: - state: "off" map: ["enum.VendingMachineVisualLayers.Base"] - - state: "off" - map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - shader: unshaded + # - state: "off" + # map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + # shader: unshaded - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: PointLight radius: 1.5 energy: 3.0 color: "#b89f25" + - type: ActivatableUI + key: enum.UtilityVendorUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + enum.UtilityVendorUiKey.Key: + type: UtilityVendorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + # Corvax-Wega-Lavaland-start + - type: Voucher + typeVoucher: Salvage + - type: UtilityVendor + categories: + - UtilityBasic + - UtilityGear + - UtilityConsumables + - UtilityDiggingTools + - UtilityMisc + - type: ItemSlots + slots: + vendor_card: + whitelist: + components: + - PointsCard + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:EmptyContainersBehaviour + containers: + - vendor_card + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:EmptyContainersBehaviour + containers: + - vendor_card + - !type:DoActsBehavior + acts: ["Breakage"] + - !type:EjectVendorItems + # Corvax-Wega-Lavaland-end - type: AccessReader access: [["Salvage"]] - type: GuideHelp diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index a955f6e2057..fcfe0c6bbe5 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1392,6 +1392,13 @@ !type:DamageTrigger damage: 1000 behaviors: + # Corvax-Wega-Lavaland-start + - !type:SpawnEntitiesBehavior + spawn: + CultGirder: + min: 1 + max: 1 + # Corvax-Wega-Lavaland-end - !type:DoActsBehavior acts: [ "Destruction" ] - type: IconSmooth diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index 1d806e2f67e..a7b3c9f4def 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -24,9 +24,18 @@ # Corvax-Wega-Vehicles-start - !type:Damage requiredComponent: Vehicle + blacklistedComponent: Boat damageType: Blunt amount: 500 # Corvax-Wega-Vehicles-end + # Corvax-Wega-Lavaland-start + blacklist: + components: + - LavaWalking + - type: SpeedModifierContacts + walkSpeedModifier: 0.4 + sprintSpeedModifier: 0.4 + # Corvax-Wega-Lavaland-end - type: Transform anchored: true - type: SyncSprite @@ -62,3 +71,4 @@ - type: Tag tags: - HideContextMenu + - CanSwim # Corvax-Wega-Lavaland diff --git a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml index c28add27dfd..25776064c9e 100644 --- a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml +++ b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml @@ -24,9 +24,15 @@ # Corvax-Wega-Vehicles-start - !type:Damage requiredComponent: Vehicle + blacklistedComponent: Boat damageType: Blunt amount: 500 # Corvax-Wega-Vehicles-end + # Corvax-Wega-Lavaland-start + blacklist: + components: + - LavaWalking + # Corvax-Wega-Lavaland-end - type: Transform anchored: true - type: SyncSprite @@ -60,3 +66,4 @@ - type: Tag tags: - HideContextMenu + - CanSwim diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 16a2d548714..18c33f13335 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -64,3 +64,6 @@ effects: - !type:Extinguish - !type:WashDirt # Corvax-Wega-Dirtable + - type: Tag + tags: + - CanSwim diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/armor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/armor.yml index 269dd615f7f..c317e0b57ee 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/armor.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/armor.yml @@ -1,16 +1,17 @@ -- type: constructionGraph - id: BoneArmor - start: start - graph: - - node: start - edges: - - to: armor - steps: - - material: Bones - amount: 6 - doAfter: 2 - - node: armor - entity: ClothingOuterArmorBone +# Corvax-Wega-Edit +# - type: constructionGraph +# id: BoneArmor +# start: start +# graph: +# - node: start +# edges: +# - to: armor +# steps: +# - material: Bones +# amount: 6 +# doAfter: 2 +# - node: armor +# entity: ClothingOuterArmorBone - type: constructionGraph id: BoneHelmet diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml b/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml index a93578c3ece..44a738cb177 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml @@ -23,6 +23,11 @@ - MineralScannerEmpty - AdvancedMineralScannerEmpty - OreBagOfHolding + # Corvax-Wega-Lavaland-start + - WeaponPlasmaCutter + - WeaponPlasmaCutterAdv + - WeaponIndustrialFanPlasmaCutter + # Corvax-Wega-Lavaland-end - type: latheRecipePack id: CargoBoards diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 5fca9c9f475..eaa03f3c220 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -16,6 +16,7 @@ - ClothingMaskWeldingGas - ClothingShoesBootsJump - LegSyntheticJump # Corvax-Wega-Androids + - WeaponPlasmaCutter # Corvax-Wega-Lavaland - type: technology id: SpaceScanning @@ -187,6 +188,8 @@ - OreBagOfHolding - MiningDrillDiamond - AdvancedMineralScannerEmpty + - WeaponPlasmaCutterAdv # Corvax-Wega-Lavaland + - WeaponIndustrialFanPlasmaCutter # Corvax-Wega-Lavaland - BorgModuleAdvancedMining - SalvageExpeditionsComputerCircuitboard # Corvax-Cringe diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index dcf7add35ea..3145045fdf8 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -11,6 +11,7 @@ - Maintenance extendedAccess: - Salvage + - LavalandAvanpost # Corvax-Wega-Lavaland special: - !type:GiveItemOnHolidaySpecial holiday: BoxingDay diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index baa6b37def3..1e706f1fcc5 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -27,6 +27,7 @@ access: - Cargo - Salvage + - LavalandAvanpost # Corvax-Wega-Lavaland - Quartermaster - Maintenance - External diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml index c4dca0d6520..1eea7e5d453 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml @@ -13,6 +13,7 @@ access: - Cargo - Salvage + - LavalandAvanpost # Corvax-Wega-Lavaland - Maintenance - External @@ -22,9 +23,12 @@ jumpsuit: ClothingUniformJumpsuitSalvageSpecialist id: SalvagePDA ears: ClothingHeadsetCargo - #storage: - #back: - #- Stuff + # Corvax-Wega-Lavaland-Edit-start + storage: + back: + - SalvageVoucherCard + # Corvax-Wega-Lavaland-Edit-end + # - Stuff - type: chameleonOutfit id: SalvageSpecialistChameleonOutfit diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index 2a614030c19..7a3872bb772 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -14,6 +14,7 @@ access: - Medical - Maintenance + - LavalandAvanpost # Corvax-Wega-Lavaland extendedAccess: - Chemistry # Corvax-Wega-Surgery-start diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 90888564cb7..865108b6cc1 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -21,6 +21,7 @@ - Maintenance - Detective - Cryogenics + - LavalandAvanpost # Corvax-Wega-Lavaland - External special: - !type:AddImplantSpecial diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 29ae1ff2e6b..3e92eea1b60 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -32,6 +32,7 @@ - Security - Armory - Maintenance + - LavalandAvanpost # Corvax-Wega-Lavaland - External - Detective - Cryogenics diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index bf2843bf377..745803e81cd 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -22,6 +22,7 @@ - Security - Brig - Maintenance + - LavalandAvanpost # Corvax-Wega-Lavaland - External - Cryogenics special: diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index c491c8ba89c..25c479f8bdf 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -19,6 +19,7 @@ - Security - Brig - Maintenance + - LavalandAvanpost # Corvax-Wega-Lavaland - External - Cryogenics # Corvax-Wega-SubRoles-start diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index b5274bdb7a7..dbb138d10e2 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -26,6 +26,7 @@ - Brig - Armory - Maintenance + - LavalandAvanpost # Corvax-Wega-Lavaland - External - Detective - Cryogenics diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 6f6cdf62ffc..04d866b9893 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -8,6 +8,8 @@ - Quartermaster - SalvageSpecialist - Postman # Corvax-Wega-Postman + - ShaftMiner # Corvax-Wega-Lavaland + - ShaftMinerMedic # Corvax-Wega-Lavaland - type: department id: Civilian diff --git a/Resources/Prototypes/_Wega/Access/cargo.yml b/Resources/Prototypes/_Wega/Access/cargo.yml new file mode 100644 index 00000000000..24f6f62b7f5 --- /dev/null +++ b/Resources/Prototypes/_Wega/Access/cargo.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: LavalandAvanpost + name: id-card-access-level-lavaland-avanpost diff --git a/Resources/Prototypes/_Wega/Access/misc.yml b/Resources/Prototypes/_Wega/Access/misc.yml index a1e82564fb6..4fb9d5e344f 100644 --- a/Resources/Prototypes/_Wega/Access/misc.yml +++ b/Resources/Prototypes/_Wega/Access/misc.yml @@ -20,6 +20,7 @@ - Maintenance - Medical - Research + - LavalandAvanpost - Salvage - Security - Service diff --git a/Resources/Prototypes/_Wega/Actions/lavaland.yml b/Resources/Prototypes/_Wega/Actions/lavaland.yml new file mode 100644 index 00000000000..0660d84c174 --- /dev/null +++ b/Resources/Prototypes/_Wega/Actions/lavaland.yml @@ -0,0 +1,430 @@ +- type: entity + parent: BaseAction + id: ActionFireSelf + name: fire self + description: "" + components: + - type: Action + useDelay: 30 + itemIconStyle: BigAction + icon: + sprite: Effects/fire.rsi + state: fire + - type: InstantAction + event: !type:FireSelfActionEvent + +- type: entity + parent: BaseAction + id: BecomeToDrakeAction + name: become drake + description: "" + components: + - type: Action + itemIconStyle: BigAction + icon: + sprite: Effects/fire.rsi + state: fire + - type: InstantAction + event: !type:BecomeToDrakeActionEvent + +- type: entity + parent: BaseAction + id: DrakeReturnBackAction + name: return back + description: "" + components: + - type: Action + itemIconStyle: BigAction + icon: + sprite: Effects/fire.rsi + state: fire + - type: InstantAction + event: !type:DrakeReturnBackActionEvent + +- type: entity + parent: BaseAction + id: ActionGoliathTentacle + name: "[color=red]Tentacle Slam[/color]" + description: Use your tentacles to grab and stun a target player! + components: + - type: Action + raiseOnUser: true + icon: + sprite: Mobs/Aliens/Asteroid/goliath.rsi + state: goliath_tentacle_spawn + iconOn: + sprite: Mobs/Aliens/Asteroid/goliath.rsi + state: goliath_tentacle_wiggle + sound: + path: "/Audio/Weapons/slash.ogg" + useDelay: 12 + - type: TargetAction + range: 7 + - type: WorldTargetAction + event: !type:GoliathSummonTentacleAction + +- type: entity + parent: BaseAction + id: ActionLegionSummon + name: Summon Skull + description: "" + components: + - type: Action + raiseOnUser: true + icon: + sprite: _Wega/Mobs/Lavaland/legionskull.rsi + state: legion_head_1 + useDelay: 5 + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:LegionSummonSkullAction + +- type: entity + parent: BaseAction + id: ActionHierophantBlink + name: Blink + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Objects/Weapons/Melee/hierophant_club.rsi + state: icon + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:HierophantBlinkActionEvent + +- type: entity + parent: BaseAction + id: ActionHierophantCross + name: Cross + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Objects/Weapons/Melee/hierophant_club.rsi + state: icon + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:HierophantCrossActionEvent + +- type: entity + parent: BaseAction + id: ActionHierophantChaser + name: Chaser + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Objects/Weapons/Melee/hierophant_club.rsi + state: icon + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:HierophantChaserActionEvent + +- type: entity + parent: BaseAction + id: ActionHierophantDamageArea + name: Damage Area + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Objects/Weapons/Melee/hierophant_club.rsi + state: icon + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:HierophantDamageAreaActionEvent + +- type: entity + parent: BaseAction + id: ActionMegaLegion + name: Mega Legion attack + description: "" + components: + - type: Action + raiseOnUser: true + icon: + sprite: _Wega/Mobs/Lavaland/legionskull.rsi + state: legion_head_1 + useDelay: 1.5 + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:MegaLegionAction + +- type: entity + parent: BaseAction + id: ActionBloodDrunkMinerDash + name: Dash + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 10 + icon: + sprite: Interface/Actions/jump.rsi + state: icon + - type: TargetAction + range: 10 + - type: WorldTargetAction + event: !type:BloodDrunkMinerDashAction + +- type: entity + parent: BaseAction + id: ActionColossusFraction + name: Fraction + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 5 + icon: + sprite: _Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: throwing_knife + sound: + path: "/Audio/_Wega/Effects/narsie_attack.ogg" + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:ColossusFractionActionEvent + +- type: entity + parent: BaseAction + id: ActionColossusCross + name: Cross + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 5 + icon: + sprite: _Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: throwing_knife + sound: + path: "/Audio/_Wega/Effects/narsie_attack.ogg" + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:ColossusCrossActionEvent + +- type: entity + parent: BaseAction + id: ActionColossusSpiral + name: Spiral + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 5 + icon: + sprite: _Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: throwing_knife + sound: + path: "/Audio/_Wega/Effects/narsie_attack.ogg" + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:ColossusSpiralActionEvent + +- type: entity + parent: BaseAction + id: ActionColossusTripleFraction + name: Triple Fraction + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 5 + icon: + sprite: _Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi + state: throwing_knife + sound: + path: "/Audio/_Wega/Effects/narsie_attack.ogg" + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:ColossusTripleFractionActionEvent + +- type: entity + parent: BaseAction + id: ActionAshDrakeConeFire + name: Cone Fire + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 8 + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:AshDrakeConeFireActionEvent + +- type: entity + parent: BaseAction + id: ActionAshDrakeBreathingFire + name: Breathing Fire + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 8 + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:AshDrakeBreathingFireActionEvent + +- type: entity + parent: BaseAction + id: ActionAshDrakeLava + name: Lava + description: "" + components: + - type: Action + raiseOnUser: true + useDelay: 20 + icon: + sprite: Tiles/Planet/lava.rsi + state: lava + - type: TargetAction + range: 10 + - type: EntityTargetAction + event: !type:AshDrakeLavaActionEvent + landingDamage: + groups: + Brute: 75 + healingSpec: + groups: + Brute: -250 + +- type: entity + parent: BaseAction + id: ActionBubblegumRage + name: RAGE + description: Become temporarily invulnerable and attack faster! + components: + - type: Action + raiseOnUser: true + useDelay: 7 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 20 + - type: EntityTargetAction + event: !type:BubblegumRageActionEvent + +- type: entity + parent: BaseAction + id: ActionBubblegumBloodDive + name: Blood Dive + description: Submerge into blood and emerge near your target! + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 20 + - type: EntityTargetAction + event: !type:BubblegumBloodDiveActionEvent + +- type: entity + parent: BaseAction + id: ActionBubblegumTripleDash + name: Triple Dash + description: Perform three consecutive charges at your target! + components: + - type: Action + raiseOnUser: true + useDelay: 8 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 15 + - type: EntityTargetAction + event: !type:BubblegumTripleDashActionEvent + dashDamage: + types: + Blunt: 30 + +- type: entity + parent: BaseAction + id: ActionBubblegumIllusionDash + name: Illusion Dash + description: Summon illusions to surround and charge your target! + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:BubblegumIllusionDashActionEvent + illusionDamage: + types: + Blunt: 15 + +- type: entity + parent: BaseAction + id: ActionBubblegumPentagramDash + name: Pentagram Dash + description: Surround your target with four illusions and charge from all sides! + components: + - type: Action + raiseOnUser: true + useDelay: 6 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:BubblegumPentagramDashActionEvent + illusionDamage: + types: + Blunt: 15 + +- type: entity + parent: BaseAction + id: ActionBubblegumChaoticIllusionDash + name: Chaotic Illusion Dash + description: Summon random illusions to charge from unpredictable directions! + components: + - type: Action + raiseOnUser: true + useDelay: 20 + icon: + sprite: _Wega/Effects/bubblegumeffects.rsi + state: hand + - type: TargetAction + range: 12 + - type: EntityTargetAction + event: !type:BubblegumChaoticIllusionDashActionEvent + illusionDamage: + types: + Blunt: 15 diff --git a/Resources/Prototypes/_Wega/Body/Organs/ashwalker.yml b/Resources/Prototypes/_Wega/Body/Organs/ashwalker.yml new file mode 100644 index 00000000000..041f09a9ff0 --- /dev/null +++ b/Resources/Prototypes/_Wega/Body/Organs/ashwalker.yml @@ -0,0 +1,28 @@ +- type: entity + id: OrganAshWalkerLungs + parent: OrganHumanLungs + name: lungs + description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." + components: + - type: Metabolizer + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Human ] + groups: + - id: Gas + rateModifier: 35.0 + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 10 + Lung: + maxVol: 35.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 diff --git a/Resources/Prototypes/_Wega/Body/Parts/ashwalker.yml b/Resources/Prototypes/_Wega/Body/Parts/ashwalker.yml new file mode 100644 index 00000000000..482f14491f1 --- /dev/null +++ b/Resources/Prototypes/_Wega/Body/Parts/ashwalker.yml @@ -0,0 +1,25 @@ +- type: entity + id: LeftLegAshWalker + name: "left human leg" + parent: [PartReptilian, BaseLeftLeg] + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: Mobs/Species/Reptilian/parts.rsi + state: "l_leg" + - type: MovementBodyPart + walkSpeed: 3.675 + sprintSpeed: 6.615 + +- type: entity + id: RightLegAshWalker + name: "right human leg" + parent: [PartReptilian, BaseRightLeg] + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: Mobs/Species/Reptilian/parts.rsi + state: "r_leg" + - type: MovementBodyPart + walkSpeed: 3.675 + sprintSpeed: 6.615 diff --git a/Resources/Prototypes/_Wega/Body/Prototypes/ashwalker.yml b/Resources/Prototypes/_Wega/Body/Prototypes/ashwalker.yml new file mode 100644 index 00000000000..87bd3050beb --- /dev/null +++ b/Resources/Prototypes/_Wega/Body/Prototypes/ashwalker.yml @@ -0,0 +1,49 @@ +- type: body + name: "ashwalker" + id: AshWalker + root: torso + slots: + head: + part: HeadReptilian + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoReptilian + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganReptilianStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + connections: + - right_arm + - left_arm + - right_leg + - left_leg + right_arm: + part: RightArmReptilian + connections: + - right_hand + left_arm: + part: LeftArmReptilian + connections: + - left_hand + right_hand: + part: RightHandReptilian + left_hand: + part: LeftHandReptilian + right_leg: + part: RightLegAshWalker + connections: + - right_foot + left_leg: + part: LeftLegAshWalker + connections: + - left_foot + right_foot: + part: RightFootReptilian + left_foot: + part: LeftFootReptilian diff --git a/Resources/Prototypes/_Wega/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/_Wega/Catalog/Fills/Backpacks/duffelbag.yml index 8a969025eae..723f66a834d 100644 --- a/Resources/Prototypes/_Wega/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/_Wega/Catalog/Fills/Backpacks/duffelbag.yml @@ -21,6 +21,7 @@ amount: 2 - id: MicroManipulatorStockPart amount: 3 + - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateFilledXC67 @@ -44,3 +45,20 @@ - id: WeaponSniperHristovAdvanced - id: MagazineHristovAdvanced amount: 4 + +- type: entity + parent: ClothingBackpackDuffelSalvage + id: ClothingBackpackDuffelSalvageBaseKit + suffix: Kit + components: + - type: StorageFill + contents: + - id: WeaponProtoKineticAccelerator + - id: SurvivalKnife + - id: ClothingOuterArmorExplorerSuit + - id: FlashlightSeclite + - id: ClothingEyesGlassesMeson + - id: MineralScanner + - id: ClothingMaskGasExplorer + - id: MinerIDCard + - id: SurvivalMedipen diff --git a/Resources/Prototypes/_Wega/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/_Wega/Catalog/Fills/Boxes/general.yml new file mode 100644 index 00000000000..b7f132a89ac --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/Fills/Boxes/general.yml @@ -0,0 +1,20 @@ +- type: entity + parent: BoxCardboard + id: BoxHandheldBeacons + name: beacons box + components: + - type: Sprite + layers: + - state: box + - type: Storage + grid: + - 0,0,5,3 + whitelist: + tags: + - HandheldBeacon + - type: EntityTableContainerFill + containers: + storagebase: !type:AllSelector + children: + - id: HandheldBeacon + amount: 24 diff --git a/Resources/Prototypes/_Wega/Catalog/Fills/Crates/lavaland.yml b/Resources/Prototypes/_Wega/Catalog/Fills/Crates/lavaland.yml new file mode 100644 index 00000000000..bc48c1ec984 --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/Fills/Crates/lavaland.yml @@ -0,0 +1,129 @@ +# Basic +- type: entity + parent: CrateNecropolis + id: CrateNecropolisFilled + suffix: Filled + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: BasicNecropolisCrateTable + +- type: entityTable + id: BasicNecropolisCrateTable + table: !type:GroupSelector + children: + - id: BloodCultSoulStone + - id: DarkShard + - id: ClothingHandsGlovesConcussiveGauntlets + - id: WeaponPossessedBlade + - id: ClothingOuterArmorCult + - id: DrinkUnholyFlaskFull + - id: ArmBlade + - id: RodOfAsclepius + - id: CardTarotNotEnchanted + - id: ShipInBottle + - id: DustyShard + - id: CubeRed # He will create the second cube himself + - id: PKAUpgradeFireRate + - id: PKAUpgradeDamage + - id: PKAUpgradeLifesteal + - !type:NestedSelector + tableId: MagmiteGearTable + +- type: entityTable + id: MagmiteGearTable + table: !type:GroupSelector + children: + - id: WeaponMagmiteProtoKineticAccelerator + - id: WeaponMagmiteCrusher + - id: WeaponMagmiteCrusherGlaive + - id: WeaponMagmitePlasmaCutter + - id: WeaponMagmiteFanPlasmaCutter + +# Ash Drake +- type: entity + parent: CrateNecropolis + id: CrateNecropolisAshDrakeFilled + categories: [ HideSpawnMenu ] + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: AshDrakeNecropolisCrateTable + +- type: entityTable + id: AshDrakeNecropolisCrateTable + table: !type:GroupSelector + children: + - id: WeaponSpectralBlade + - id: LavaStaffRod + - id: BottleDragonBlood + - !type:NestedSelector + tableId: FireDrakeTable + +- type: entityTable + id: FireDrakeTable + table: !type:AllSelector + children: + - id: FireSelfSpellbook + - id: WeaponWandFireball + +# Colossus +- type: entity + parent: CrateNecropolis + id: CrateNecropolisColossusFilled + categories: [ HideSpawnMenu ] + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: ColossusNecropolisCrateTable + +- type: entityTable + id: ColossusNecropolisCrateTable + table: !type:AllSelector + children: + - id: GemHollowCrystal + - !type:NestedSelector + tableId: ColossusRewardsTable + +- type: entityTable + id: ColossusRewardsTable + table: !type:GroupSelector + children: + - id: DivineVocalCordsImplant + +# Bubblegum +- type: entity + parent: CrateNecropolis + id: CrateNecropolisBubblegumFilled + categories: [ HideSpawnMenu ] + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: BubblegumNecropolisCrateTable + +- type: entityTable + id: BubblegumNecropolisCrateTable + table: !type:AllSelector + children: + - id: GemBloodStone + - !type:NestedSelector + tableId: BubblegumRewardsTable + +- type: entityTable + id: BubblegumRewardsTable + table: !type:GroupSelector + children: + - id: WeaponSpellBlade + - !type:NestedSelector + tableId: HostileEnvTable + +- type: entityTable + id: HostileEnvTable + table: !type:AllSelector + children: + - id: ClothingOuterArmorHostileEnv + - id: ClothingHeadHelmetHostileEnv diff --git a/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/cargo.yml new file mode 100644 index 00000000000..98329192f84 --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/cargo.yml @@ -0,0 +1,29 @@ +- type: entity + parent: LockerSalvageSpecialist + id: LockerSalvageSpecialistLavalandFilled + suffix: Filled, Lavaland + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: LockerFillSalvageSpecialistLavaland + +- type: entityTable + id: LockerFillSalvageSpecialistLavaland + table: !type:AllSelector + children: + - id: Pickaxe + - id: ClothingHeadsetMining + - id: FlashlightSeclite + - id: HandheldGPSBasic + - id: PlantBag + - id: OreBag + - id: MineralScanner + - id: ClothingEyesGlassesMeson + - id: WeaponProtoKineticAccelerator + - id: SurvivalMedipen + - id: HandCapsule + - id: Flare + prob: 0.3 + rolls: !type:ConstantNumberSelector + value: 3 diff --git a/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/suit_storage.yml index fdaf3ef0307..c20a7c3188d 100644 --- a/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_Wega/Catalog/Fills/Lockers/suit_storage.yml @@ -1,3 +1,4 @@ +#Blue Shield - type: entity id: SuitStorageBlueShield parent: SuitStorageBase @@ -9,3 +10,24 @@ tableId: FillBlueShieldOfficerHardsuit - type: AccessReader access: [["Command"]] + +#Explorer Suit +- type: entity + id: SuitStorageExplorerSuit + parent: SuitStorageBase + suffix: Explorer Suit + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: FillSuitStorageExplorerSuit + - type: AccessReader + access: [["Salvage"]] + +- type: entityTable + id: FillSuitStorageExplorerSuit + table: !type:AllSelector + children: + - id: OxygenTankFilled + - id: ClothingOuterArmorExplorerSuit + - id: ClothingMaskGasExplorer diff --git a/Resources/Prototypes/_Wega/Catalog/VendingMachines/tankdispenser.yml b/Resources/Prototypes/_Wega/Catalog/VendingMachines/tankdispenser.yml new file mode 100644 index 00000000000..f7feebb7665 --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/VendingMachines/tankdispenser.yml @@ -0,0 +1,4 @@ +- type: vendingMachineInventory + id: TankDispenserExtO2Inventory + startingInventory: + OxygenTankFilled: 20 diff --git a/Resources/Prototypes/_Wega/Catalog/Voucher/salvage.yml b/Resources/Prototypes/_Wega/Catalog/Voucher/salvage.yml new file mode 100644 index 00000000000..59797bdc04f --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/Voucher/salvage.yml @@ -0,0 +1,32 @@ +- type: voucherKit + id: SurvivalExplorerKit + name: voucher-explorer-kit-name + description: voucher-explorer-kit-desc + items: + - id: ClothingBeltSecondSalvageWebbing + - id: HandCapsule + +- type: voucherKit + id: SurvivalFultonKit + name: voucher-fulton-kit-name + description: voucher-fulton-kit-desc + icon: { sprite: Objects/Tools/fulton.rsi, state: "extraction_pack" } + items: + - id: FultonBeacon + - id: Fulton + +- type: voucherKit + id: SurvivalCrusherKit + name: voucher-crusher-kit-name + description: voucher-crusher-kit-desc + items: + - id: WeaponCrusher + - id: FireExtinguisher + +- type: voucherKit + id: SurvivalBaseKit + name: voucher-base-kit-name + description: voucher-base-kit-desc + items: + - id: ClothingBackpackDuffelSalvageBaseKit + - id: OreBag diff --git a/Resources/Prototypes/_Wega/Catalog/utility_categories.yml b/Resources/Prototypes/_Wega/Catalog/utility_categories.yml new file mode 100644 index 00000000000..e4b1dd19fdf --- /dev/null +++ b/Resources/Prototypes/_Wega/Catalog/utility_categories.yml @@ -0,0 +1,74 @@ +- type: utilityVendorCategory + id: UtilityBasic + name: utility-vendor-category-basic + priority: 1 + inventory: + Flare: 50 + Crowbar: 100 + FlashlightLantern: 100 + HandheldGPSBasic: 200 + RadioHandheld: 200 + Floodlight: 400 + +- type: utilityVendorCategory + id: UtilityGear + name: utility-vendor-category-gear + priority: 2 + inventory: + MineralScanner: 800 + AdvancedMineralScanner: 3000 + ClothingBeltSecondSalvageWebbing: 500 + OreBag: 400 + TrofeiBag: 400 + FultonBeacon: 500 + TrackingImplanter: 200 + ClothingBackpackDuffelSalvageBaseKit: 2000 + JetpackMiningFilled: 2000 + ClothingShoesBootsJump: 2500 + ClothingOuterHardsuitSalvage: 2500 + +- type: utilityVendorCategory + id: UtilityConsumables + name: utility-vendor-category-consumables + priority: 3 + inventory: + HandheldBeacon: 20 + BoxHandheldBeacons: 500 + FireExtinguisherMini: 400 + MedkitBruteFilled: 600 + MedkitBurnFilled: 600 + SeismicCharge: 500 + Fulton: 1000 + WormholeJaunter: 900 + TransferCard500: 500 + HandCapsule: 700 + ChemistryBottleStabilizingSerumP: 600 + SurvivalMedipen: 800 + +- type: utilityVendorCategory + id: UtilityDiggingTools + name: utility-vendor-category-digging + priority: 4 + inventory: + Pickaxe: 100 + WeaponGrapplingGun: 500 + WeaponCrusher: 750 + WeaponProtoKineticAccelerator: 750 + PKAUpgradeRange: 1000 + PKAUpgradeDamage: 1000 + PKAUpgradeFireRate: 1000 + PKAUpgradeAoE: 2000 + WeaponPlasmaCutterEmpty: 1500 + +- type: utilityVendorCategory + id: UtilityMisc + name: utility-vendor-category-misc + priority: 12 + inventory: + DrinkAbsintheBottleFull: 500 + Cigar: 100 + ClothingEyesGlassesGar: 500 + HandLuxuriousCapsule: 3000 + Soap: 200 + SpaceCash1000: 2000 + DrinkWhiskeyBottleFull: 500 diff --git a/Resources/Prototypes/_Wega/Damage/modifier_sets.yml b/Resources/Prototypes/_Wega/Damage/modifier_sets.yml index 82217aafd1a..8854cc09462 100644 --- a/Resources/Prototypes/_Wega/Damage/modifier_sets.yml +++ b/Resources/Prototypes/_Wega/Damage/modifier_sets.yml @@ -81,3 +81,9 @@ Slash: 0.5 Structural: 0.5 Holy: 0.5 + +- type: damageModifierSet + id: Hierophant + coefficients: + Piercing: 0.1 + Heat: 0.5 diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories.yml new file mode 100644 index 00000000000..434af515eb8 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories.yml @@ -0,0 +1,53 @@ +- type: entity + parent: BaseClothingAccessories + id: AccessoriesClothingBoneTalisman + name: bone talisman + description: "A crude talisman woven from bones and sinew. Offers minor protection against brute force and heat." + components: + - type: Sprite + sprite: _Wega/Clothing/Accessories/bone_talisman.rsi + state: icon + - type: ClothingUpgrade + tags: [ BoneTalismanUpgrade ] + examineText: clothing-upgrade-examine-text-bone-talisman + sprite: { sprite: _Wega/Clothing/Accessories/bone_talisman.rsi, state: equipped-ACCESSORIES } + - type: ClothingAccessoriesProtection + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Heat: 0.95 + - type: Construction + graph: BoneTalisman + node: talisman + - type: Tag + tags: + - UniformUpgrade + - BoneTalismanUpgrade + +- type: entity + parent: BaseClothingAccessories + id: AccessoriesClothingSkullCodpiece + name: skull codpiece + description: "The bleached skull of some unfortunate creature, repurposed as groin armor. Offers minor protection against brute force and heat." + components: + - type: Sprite + sprite: _Wega/Clothing/Accessories/skull_codpiece.rsi + state: icon + - type: ClothingUpgrade + tags: [ SkullCodpieceUpgrade ] + examineText: clothing-upgrade-examine-text-skull-codpiece + sprite: { sprite: _Wega/Clothing/Accessories/skull_codpiece.rsi, state: equipped-ACCESSORIES } + - type: ClothingAccessoriesProtection + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Heat: 0.95 + - type: Construction + graph: SkullCodpiece + node: codpiece + - type: Tag + tags: + - UniformUpgrade + - SkullCodpieceUpgrade diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories_base.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories_base.yml new file mode 100644 index 00000000000..0d44c19fc47 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Accessories/accessories_base.yml @@ -0,0 +1,8 @@ +- type: entity + parent: BaseItem + id: BaseClothingAccessories + abstract: true + components: + - type: Item + size: Small + - type: ClothingUpgrade diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Belt/belts.yml index 9429a4d14ca..bbc15c22884 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Belt/belts.yml @@ -21,3 +21,14 @@ state: sheath - type: Clothing sprite: _Wega/Clothing/Belt/sheriff_sheath.rsi + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltSecondSalvageWebbing + name: salvage rig + description: "A universal unloading system for working in space and beyond." + components: + - type: Sprite + sprite: _Wega/Clothing/Belt/salvagewebbing.rsi + - type: Clothing + sprite: _Wega/Clothing/Belt/salvagewebbing.rsi diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Hands/bracers.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Hands/bracers.yml new file mode 100644 index 00000000000..e2706e6e276 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Hands/bracers.yml @@ -0,0 +1,27 @@ +- type: entity + parent: Clothing + id: ClothingHandsBoneBracers + name: bone bracers + description: "Wrist guards made from bone plates. Offers minor protection to your arms without restricting movement." + components: + - type: Sprite + sprite: _Wega/Clothing/Hands/bone_bracers.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Hands/bone_bracers.rsi + slots: [gloves] + - type: Item + size: Small + storedRotation: -90 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Heat: 0.9 + - type: Construction + graph: BoneBracers + node: bracers + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Hands/gloves.yml index 76a9a27c525..6767507ee5e 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Hands/gloves.yml @@ -47,3 +47,33 @@ sprite: _Wega/Clothing/Hands/sheriff_gloves.rsi - type: Clothing sprite: _Wega/Clothing/Hands/sheriff_gloves.rsi + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesConcussiveGauntlets + name: concussive gauntlets + description: Pickaxes... for your hands! + components: + - type: Sprite + sprite: _Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi + - type: Clothing + sprite: _Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi + - type: MeleeWeapon + autoAttack: true + angle: 0 + wideAnimationRotation: -90 + soundHit: + path: "/Audio/Items/drill_hit.ogg" + attackRate: 4 + damage: + groups: + Brute: 6 + types: + Structural: 30 + mustBeEquippedToUse: true + - type: Fiber + fiberMaterial: fibers-durathread + fiberColor: fibers-blue + - type: FingerprintMask + - type: StaticPrice + price: 2500 diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Head/helmets.yml new file mode 100644 index 00000000000..f71bdd62e9c --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Head/helmets.yml @@ -0,0 +1,26 @@ +- type: entity + parent: ClothingHeadHelmetBase + id: ClothingHeadHelmetHostileEnv + name: H.E.C.K. helmet + description: "Experimental Kinetic Protective Sheathed Helmet: a helmet specifically designed to protect against a wide range of Lasis hazards. Apparently, its previous owner didn't have enough." + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Helmets/hostile_env.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Helmets/hostile_env.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Caustic: 0.6 + - type: ClothingAshStormProtection + modifier: 0.1 + - type: EyeProtection + protectionTime: 5 + - type: FlashImmunity + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Head/hoods.yml index 67f42e3c5ef..f266d367edb 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Head/hoods.yml @@ -59,4 +59,126 @@ sprite: _Wega/Clothing/Head/Hoods/Coat/postmanhood.rsi - type: Clothing sprite: _Wega/Clothing/Head/Hoods/Coat/postmanhood.rsi - \ No newline at end of file + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodExplorer + name: explorer hood + description: It's quite thick and covering, don't you need it? + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.8 + Caustic: 0.65 + - type: ClothingAshStormProtection + modifier: 0.05 + - type: Dirtable + dirtState: explorer-hood + equippedDirtState: equipped-explorer-hood + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingHeadHatHoodExplorer + id: ClothingHeadHatHoodExplorerKhaki + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi + +- type: entity + parent: ClothingHeadHatHoodExplorer + id: ClothingHeadHatHoodExplorerMedical + name: explorer hood medical + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.75 + Heat: 0.6 + Caustic: 0.5 + +- type: entity + parent: ClothingHeadHatHoodExplorer + id: ClothingHeadHatHoodExplorerBDM + categories: [ HideSpawnMenu ] + components: + - type: Unremoveable + - type: DeleteOnDrop + - type: Dirtable + currentDirtLevel: 100 + dirtColor: "#880000" + +- type: entity + parent: ClothingHeadHatHoodExplorer + id: ClothingHeadHatHoodExplorerReinforced + name: reinforced explorer hood + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.75 + Heat: 0.6 + Caustic: 0.5 + +- type: entity + parent: ClothingHeadHatHoodExplorerReinforced + id: ClothingHeadHatHoodExplorerKhakiReinforced + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodPathfinder + name: pathfinder hood + description: It's quite thick and covering, don't you need it? + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi + - type: ClothingAshStormProtection + modifier: 0.2 + - type: Dirtable + dirtState: explorer-hood + equippedDirtState: equipped-explorer-hood + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Neck/misc.yml index 5599d2e2fc4..86b25faaaee 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Neck/misc.yml @@ -2,7 +2,7 @@ parent: ClothingNeckBase id: ClothingNeckWingsTail name: demon wings - description: "Oh no!" + description: "Oh no!" components: - type: Sprite sprite: _Wega/Clothing/Neck/Misc/demonicwings.rsi @@ -18,4 +18,149 @@ - type: Sprite sprite: _Wega/Clothing/Neck/Misc/wingsagel.rsi - type: Clothing - sprite: _Wega/Clothing/Neck/Misc/wingsagel.rsi \ No newline at end of file + sprite: _Wega/Clothing/Neck/Misc/wingsagel.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceRuby + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Ruby + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_r.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_r.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceEmerald + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Emerald + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_e.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_e.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceTopaz + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Topaz + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_t.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_t.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceRuperium + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Ruperium + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_rup.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_rup.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceFrozenDiamond + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Frozen Diamond + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_f.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_f.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceHardenedShell + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Hardened shell + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_h.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_h.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceStabilizedBaroxuldium + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Stabilized baroxuldium + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_sb.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_sb.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceCompactedDilithium + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Compacted dilithium + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_sb.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_sb.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceDragonPearls + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Dragon Pearls + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_dp.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_dp.rsi + # - type: DragonAmulet + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceHollowCrystal + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Hollow Crystal + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_hol.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_hol.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceBloodstone + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: The Bloodstone + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_b.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_b.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckNecklaceBluespaceData + name: necklace + description: "How I long to be wrapped in a golden chain." + suffix: Bluespace data Crystal + components: + - type: Sprite + sprite: _Wega/Clothing/Neck/Misc/necklace_bd.rsi + - type: Clothing + sprite: _Wega/Clothing/Neck/Misc/necklace_bd.rsi diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/armor.yml index 5e99b1a23a5..81bd8da6703 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/armor.yml @@ -61,3 +61,177 @@ sprite: _Wega/Clothing/OuterClothing/Armor/captain_carapace_white.rsi - type: Clothing sprite: _Wega/Clothing/OuterClothing/Armor/captain_carapace_white.rsi + +- type: entity + parent: [ ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseCargoContraband ] + id: ClothingOuterArmorExplorerSuit + name: explorer suit + description: This is a durable and reinforced type of armor designed for survival in extreme conditions. + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.75 + Heat: 0.7 + Caustic: 0.85 + - type: ExplosionResistance + damageCoefficient: 0.6 + - type: FireProtection + reduction: 0.4 + - type: TemperatureProtection + heatingCoefficient: 0.5 + - type: ClothingAshStormProtection + modifier: 0.2 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodExplorer + requiredSlot: + - outerClothing + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: Dirtable + dirtState: explorersuit + equippedDirtState: equipped-explorersuit + - type: Tag + tags: + - ExplorerSuit + - WhitelistChameleon + +- type: entity + parent: ClothingOuterArmorExplorerSuit + id: ClothingOuterArmorExplorerSuitKhaki + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodExplorerKhaki + - type: Tag + tags: + - ExplorerSuitKhaki + - WhitelistChameleon + +- type: entity + parent: ClothingOuterArmorExplorerSuit + id: ClothingOuterArmorExplorerSuitMedical + name: explorer suit medical + description: A better version of the regular armor, in one copy, for an assistant on the fields of death and stupidity. + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.55 + Heat: 0.5 + Caustic: 0.75 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: FireProtection + reduction: 0.5 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodExplorerMedical + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingOuterArmorExplorerSuit + id: ClothingOuterArmorExplorerSuitBDM + categories: [ HideSpawnMenu ] + components: + - type: Unremoveable + - type: DeleteOnDrop + - type: SpawnOnDelete + prototype: ClothingOuterArmorExplorerSuit + - type: Dirtable + currentDirtLevel: 100 + dirtColor: "#880000" + +- type: entity + parent: ClothingOuterArmorExplorerSuit + id: ClothingOuterArmorExplorerSuitReinforced + name: reinforced explorer suit + description: A self-improved version of regular armor. Gives its user more room for error. + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.55 + Heat: 0.5 + Caustic: 0.75 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: FireProtection + reduction: 0.5 + - type: TemperatureProtection + heatingCoefficient: 0.4 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodExplorerReinforced + - type: Construction + graph: ExplorerSuitReinforced + node: explorerSuit + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingOuterArmorExplorerSuitReinforced + id: ClothingOuterArmorExplorerSuitKhakiReinforced + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi + state: icon + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodExplorerKhakiReinforced + - type: Construction + graph: ExplorerSuitKhakiReinforced + node: explorerSuit + +- type: entity + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + id: ClothingOuterArmorHostileEnv + name: H.E.C.K. suit + description: "Experimental Kinetic Protective Sheathed Suit: A suit specifically designed to protect against a wide range of Lasee hazards. Apparently, this was not enough for its previous owner." + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Armor/hostile_env.rsi + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Armor/hostile_env.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.3 + Slash: 0.3 + Piercing: 0.6 + Heat: 0.9 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: FireProtection + reduction: 0.5 + - type: ClothingAshStormProtection + modifier: 0.4 diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/coats.yml index fec6f8e54c3..2210f1bd0e7 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/OuterClothing/coats.yml @@ -102,3 +102,27 @@ sprite: _Wega/Clothing/OuterClothing/Coats/captain_white.rsi - type: Clothing sprite: _Wega/Clothing/OuterClothing/Coats/captain_white.rsi + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterCoatPathfinderCloak + name: pathfinder cloak + description: "A thick cloak made of tendons and skins, designed to protect its wearer from adverse weather conditions." + components: + - type: Sprite + sprite: _Wega/Clothing/OuterClothing/Coats/pathcloack.rsi + - type: Clothing + sprite: _Wega/Clothing/OuterClothing/Coats/pathcloack.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodPathfinder + requiredSlot: + - outerClothing + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: ClothingAshStormProtection + modifier: 0.8 + - type: Construction + graph: PathfinderCloak + node: cloack diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/base_clothinguniforms.yml index 00425009d35..6ce7c4c61e2 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -48,3 +48,12 @@ - type: SuitSensor randomMode: false mode: SensorCords + +- type: entity + abstract: true + id: BaseUpgradableClothingUniform + components: + - type: UpgradeableClothing + whitelist: + tags: + - UniformUpgrade diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpskirt.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpskirt.yml index f1954e918f8..12749e5a79f 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpskirt.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpskirt.yml @@ -252,3 +252,25 @@ sprite: _Wega/Clothing/Uniforms/Jumpskirt/white_captain.rsi - type: Clothing sprite: _Wega/Clothing/Uniforms/Jumpskirt/white_captain.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtExplorer + name: explorer jumpskirt + description: "It is thick and comfortable, designed for heavy work in difficult conditions." + components: + - type: Sprite + sprite: _Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi + - type: Clothing + sprite: _Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtExplorerKhaki + name: explorer jumpskirt + description: "It is thick and comfortable, designed for heavy work in difficult conditions." + components: + - type: Sprite + sprite: _Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi + - type: Clothing + sprite: _Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi diff --git a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpsuits.yml index 88144976178..31ed3f43bfe 100644 --- a/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/_Wega/Entities/Clothing/Uniforms/jumpsuits.yml @@ -357,3 +357,25 @@ sprite: _Wega/Clothing/Uniforms/Jumpsuit/sheriff.rsi - type: Clothing sprite: _Wega/Clothing/Uniforms/Jumpsuit/sheriff.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitExplorer + name: explorer jumpsuit + description: "It is thick and comfortable, designed for heavy work in difficult conditions." + components: + - type: Sprite + sprite: _Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi + - type: Clothing + sprite: _Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitExplorerKhaki + name: explorer jumpsuit + description: "It is thick and comfortable, designed for heavy work in difficult conditions." + components: + - type: Sprite + sprite: _Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi + - type: Clothing + sprite: _Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi diff --git a/Resources/Prototypes/_Wega/Entities/Effects/lavaland.yml b/Resources/Prototypes/_Wega/Entities/Effects/lavaland.yml new file mode 100644 index 00000000000..2412e32ff8f --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Effects/lavaland.yml @@ -0,0 +1,422 @@ +- type: entity + id: FallingRockEffect + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + - type: Sprite + sprite: _Wega/Effects/falling.rsi + state: falling_rock + - type: Fade + fadeDuration: 4.5 + startColor: "#FFFFFF00" + targetColor: "#FFFFFFFF" + - type: TimedDespawn + lifetime: 5 + +- type: entity + id: GoliathTentacle + name: tentacle + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: true + - type: InteractionOutline + - type: Sprite + sprite: Mobs/Aliens/Asteroid/goliath.rsi + layers: + - state: goliath_tentacle_wiggle + - type: StunOnContact + duration: 6 + blacklist: + tags: + - Goliath + - type: Fixtures + fixtures: + fix: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + mask: + - Impassable + layer: + - Impassable + hard: false + - type: TimedDespawn #do this shit by hand because of fucking course. + lifetime: 0.4 + - type: SpawnOnDespawn + prototype: EffectGoliathTentacleRetract + +- type: entity + id: BaseEffectGoliathTentacleSpawn + categories: [ HideSpawnMenu ] + name: tentacle + abstract: true + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: false + - type: Sprite + sprite: Mobs/Aliens/Asteroid/goliath.rsi + - type: InteractionOutline + - type: TimedDespawn + lifetime: 0.7 + +- type: entity + id: EffectGoliathTentacleSpawn + parent: BaseEffectGoliathTentacleSpawn + categories: [ HideSpawnMenu ] + name: tentacle + components: + - type: Sprite + state: goliath_tentacle_spawn + - type: SpawnOnDespawn + prototype: GoliathTentacle + +- type: entity + id: EffectGoliathTentacleRetract + parent: BaseEffectGoliathTentacleSpawn + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: goliath_tentacle_retract + - type: EffectVisuals + - type: AnimationPlayer + +- type: entity + id: EffectMegaFaunaMarker + name: oh, no... + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + - type: InteractionOutline + - type: Sprite + noRot: true + sprite: _Wega/Effects/effects96x96.rsi + state: landing + - type: TimedDespawn + lifetime: 2 + +# Hierophant +- type: entity + id: EffectHierophantSquare + suffix: DO NOT MAP + name: hierophant square + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: Sprite + sprite: _Wega/Effects/hierophant_effects.rsi + state: hierophantblastbegin + - type: Transform + anchored: true + - type: TileEmission + color: "#9900FF" + - type: TimedDespawn + lifetime: 0.6 + - type: SpawnOnDespawn + prototype: EffectHierophantDamageField + +- type: entity + id: EffectHierophantDamageField + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Effects/hierophant_effects.rsi + state: hierophantblastend + - type: Transform + anchored: true + - type: TimedDespawn + lifetime: 0.325 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false + - type: TileEmission + color: "#9900FF" + - type: EmitSoundOnSpawn + positional: true + sound: + path: /Audio/_Wega/Mobs/Lavaland/hiero_blast.ogg + - type: TriggerOnCollide + fixtureID: fix1 + maxTriggers: 1 + - type: DamageOnTrigger + targetUser: true + damage: + types: + Blunt: 3 + Heat: 3 + blacklist: + components: + - HierophantBoss + +# Ash Drake +- type: entity + id: EffectAshDrakeFire + name: fire + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: true + - type: InteractionOutline + - type: Sprite + sprite: Effects/fire.rsi + color: "#a7000b" + state: "2" + - type: TriggerOnCollide + fixtureID: fix1 + maxTriggers: 1 + - type: IgniteOnCollide + fixtureId: fix1 + fireStacks: 1 + - type: DamageOnTrigger + targetUser: true + damage: + types: + Heat: 2.5 + blacklist: + components: + - AshDrakeBoss + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - Impassable + hard: false + - type: TimedDespawn + lifetime: 0.5 + +- type: entity + parent: EffectAshDrakeFire + id: EffectAshDrakeFireCircle + name: fire + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: DamageOnTrigger + targetUser: true + damage: + types: + Heat: 40 # MORE! MORE! + blacklist: + components: + - AshDrakeBoss + +- type: entity + parent: EffectAshDrakeFire + id: EffectAshDrakeFireWall + name: fire + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: TriggerOnCollide + fixtureID: fix1 + maxTriggers: null # Dont do this, please + - type: TimedDespawn + lifetime: 10 + +- type: entity + id: EffectAshDrakeCircle + name: oh, no... + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: true + - type: InteractionOutline + - type: Sprite + noRot: true + sprite: _Wega/Effects/drakeeffects.rsi + state: target_circle + - type: TimedDespawn + lifetime: 2 + - type: SpawnOnDespawn + prototype: EffectAshDrakeFireCircle + +- type: entity + id: EffectAshDrakeSafeMarker + name: over here! + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + - type: InteractionOutline + - type: Sprite + noRot: true + sprite: _Wega/Effects/drakeeffects.rsi + state: safe + - type: TimedDespawn + lifetime: 1.5 + +- type: entity + id: EffectAshDrakeShadow + name: here! + categories: [ HideSpawnMenu ] + components: + - type: Transform + anchored: True + - type: InteractionOutline + - type: Sprite + noRot: true + sprite: _Wega/Mobs/Lavaland/ashdrake.rsi + state: shadow + +- type: entity + parent: FloorLavaEntity + id: EffectAshDrakeFloorLavaTemp + name: lava + description: Don't jump in. It's not worth it, no matter how funny it is. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + noRot: true + - type: TimedDespawn + lifetime: 5 + +- type: entity + parent: FloorLavaEntity + id: EffectAshDrakeFloorLavaLessTemp + name: lava + description: Don't jump in. It's not worth it, no matter how funny it is. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + noRot: true + - type: TimedDespawn + lifetime: 1 + +# Bubblegum +- type: entity + id: EffectBubblegumHand + name: bubblegum hand + categories: [ HideSpawnMenu ] + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: true + - type: InteractionOutline + - type: Sprite + sprite: _Wega/Effects/bubblegumeffects.rsi + layers: + - state: hand + - type: Fixtures + fixtures: + fix: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + mask: + - Impassable + layer: + - Impassable + hard: false + - type: DamageOnTrigger + targetUser: true + damage: + types: + Blunt: 30 + blacklist: + components: + - BubblegumBoss + - type: TimedDespawn #do this shit by hand because of fucking course. + lifetime: 0.2 + - type: SpawnOnDespawn + prototype: EffectBubblegumHandOut + +- type: entity + id: BaseEffectBubblegumHandSpawn + categories: [ HideSpawnMenu ] + name: bubblegum hand + abstract: true + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: false + - type: Sprite + sprite: _Wega/Effects/bubblegumeffects.rsi + - type: InteractionOutline + - type: TimedDespawn + lifetime: 0.58 + +- type: entity + id: EffectBubblegumHandIn + parent: BaseEffectBubblegumHandSpawn + categories: [ HideSpawnMenu ] + name: bubblegum hand + components: + - type: Sprite + state: handin + - type: SpawnOnDespawn + prototype: EffectBubblegumHand + +- type: entity + id: EffectBubblegumHandOut + parent: BaseEffectBubblegumHandSpawn + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: handout + - type: EffectVisuals + - type: AnimationPlayer + +- type: entity + id: EffectBubblegumDashTrail + name: "..." + categories: [ HideSpawnMenu ] + components: + - type: InteractionOutline + - type: Sprite + sprite: _Wega/Mobs/Lavaland/bubblegum.rsi + state: bubblegum + noRot: true + - type: Fade + fadeDuration: 2 + - type: TimedDespawn + lifetime: 2 diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/bosses.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/bosses.yml new file mode 100644 index 00000000000..1574d3c9408 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/bosses.yml @@ -0,0 +1,85 @@ +- type: entity + parent: MarkerBase + id: SpawnMobBloodDrunkMinerLavaland + name: Blood Drunk Miner Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobBloodDrunkMiner + +- type: entity + parent: MarkerBase + id: SpawnMobHierophantLavaland + name: Hierophant Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: hierophant + sprite: _Wega/Mobs/Lavaland/hierophant.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobHierophant + +- type: entity + parent: MarkerBase + id: SpawnMegaLegionLavaland + name: Mega Legion Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobMegaLegion + +- type: entity + parent: MarkerBase + id: SpawnColossusLavaland + name: Colossus Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobColossus + +- type: entity + parent: MarkerBase + id: SpawnAshDrakeLavaland + name: Ash Drake Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAshDrake + +- type: entity + parent: MarkerBase + id: SpawnBubblegumLavaland + name: Bubblegum Spawner + suffix: Lavaland, DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobBubblegum diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/hostile.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/hostile.yml new file mode 100644 index 00000000000..ea6b9066091 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Mobs/hostile.yml @@ -0,0 +1,136 @@ +- type: entity + parent: MarkerBase + id: SpawnMobGoliathLavaland + name: Goliath Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: goliath1 + sprite: _Wega/Mobs/Lavaland/goliath.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobGoliath + +- type: entity + parent: MarkerBase + id: SpawnMobAncientGoliathLavaland + name: Goliath Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: goliath + sprite: Mobs/Aliens/Asteroid/goliath.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobAncientGoliath + +- type: entity + parent: MarkerBase + id: SpawnMobLegionLavaland + name: Legion Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: legion + sprite: _Wega/Mobs/Lavaland/legion.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobLegionLavaland + +- type: entity + parent: MarkerBase + id: SpawnMobMarrowWeaverLavaland + name: Marrow Weaver Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: weaver + sprite: _Wega/Mobs/Lavaland/weaver.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobMarrowWeaverLavaland + +- type: entity + parent: MarkerBase + id: SpawnMobFrostbiteWeaverLavaland + name: Frostbite Weaver Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: weaver_ice + sprite: _Wega/Mobs/Lavaland/weaver.rsi + - state: ai + - type: ConditionalSpawner + prototypes: + - MobFrostbiteWeaverLavaland + +# Inhabitants +- type: entity + parent: MarkerBase + id: SpawnInhabitantSquare + name: Inhabitant Square Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobHumanInhabitantSquare + +- type: entity + parent: MarkerBase + id: SpawnInhabitantHermit + name: Hermit Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobHumanInhabitantHermit + +- type: entity + parent: MarkerBase + id: SpawnInhabitantBeachGuy + name: Beach Guy Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobHumanInhabitantBeachGuy + +- type: entity + parent: MarkerBase + id: SpawnInhabitantTranslocatedVeterinarian + name: Translocated Veterinarian Spawner + suffix: Lavaland + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobHumanInhabitantTranslocatedVeterinarian diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/corpses.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/corpses.yml new file mode 100644 index 00000000000..2b59592819e --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/corpses.yml @@ -0,0 +1,11 @@ +- type: entity + id: RandomLegionCorpse + categories: [ HideSpawnMenu ] + components: + - type: RandomSpawner + prototypes: + - RandomCargoCorpseSpawner + - RandomMedicCorpseSpawner + - RandomServiceCorpseSpawner + - RandomEngineerCorpseSpawner + - RandomSecurityCorpseSpawner diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/mobs.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/mobs.yml new file mode 100644 index 00000000000..666cf6817fe --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/mobs.yml @@ -0,0 +1,69 @@ +- type: entityTable + id: LavalandAllMobs + table: !type:GroupSelector + children: + - !type:GroupSelector + weight: 25 + children: + - id: SpawnMobLegionLavaland + - !type:GroupSelector + weight: 25 + children: + - id: SpawnMobWatcherLavaland + - !type:GroupSelector + weight: 30 # Увеличил с 20 до 30 + children: + - id: SpawnMobGoliathLavaland + - !type:GroupSelector + weight: 8 + children: + - id: SpawnMobMarrowWeaverLavaland + - !type:GroupSelector + weight: 5 + children: + - id: SpawnMobFrostbiteWeaverLavaland + - !type:GroupSelector + weight: 6 + children: + - id: SpawnMobAncientGoliathLavaland + - !type:GroupSelector + weight: 6 + children: + - id: SpawnMobWatcherMagmawing + - !type:GroupSelector + weight: 2 + children: + - id: SpawnMobWatcherIcewing + - !type:GroupSelector + weight: 0.8 + children: + - id: SpawnMobBloodDrunkMinerLavaland + - !type:GroupSelector + weight: 0.2 + children: + - id: SpawnColossusLavaland + - !type:GroupSelector + weight: 0.2 + children: + - id: SpawnAshDrakeLavaland + - !type:GroupSelector + weight: 0.1 + children: + - id: SpawnBubblegumLavaland + # He might be wandering around Lavalend. + - !type:GroupSelector + weight: 0.2 + children: + - id: SpawnInhabitantTranslocatedVeterinarian + +- type: entity + parent: MarkerBase + id: SpawnerRandomLavalandMob + name: lavaland mob spawner + components: + - type: Sprite + layers: + - state: red + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: LavalandAllMobs diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/tendril.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/tendril.yml new file mode 100644 index 00000000000..d67ab272f49 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/Random/tendril.yml @@ -0,0 +1,21 @@ +- type: entity + parent: MarkerBase + id: SpawnerRandomNecropolisTendril + name: random tendril spawner + components: + - type: Sprite + layers: + - state: red + - sprite: _Wega/Structures/Specific/Lavaland/tendril.rsi + state: tendril + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NecropolisTendrils + +- type: entityTable + id: NecropolisTendrils + table: !type:GroupSelector + children: + - id: GoliathNecropolisTendril + - id: LegionNecropolisTendril + - id: WatchersNecropolisTendril diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/jobs.yml index 0630c487e4f..8615b1930cf 100644 --- a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/jobs.yml @@ -58,6 +58,30 @@ - state: green - state: postman +- type: entity + id: SpawnPointShaftMiner + parent: SpawnPointJobBase + name: shaftminer + components: + - type: SpawnPoint + job_id: ShaftMiner + - type: Sprite + layers: + - state: green + - state: salvagespecialist + +- type: entity + id: SpawnPointShaftMinerMedic + parent: SpawnPointJobBase + name: shaftminerMedic + components: + - type: SpawnPoint + job_id: ShaftMinerMedic + - type: Sprite + layers: + - state: green + - state: salvagespecialist + - type: entity id: SpawnPointWardenHelper parent: SpawnPointJobBase @@ -68,4 +92,4 @@ - type: Sprite layers: - state: green - - state: wardenhelper \ No newline at end of file + - state: wardenhelper diff --git a/Resources/Prototypes/_Wega/Entities/Markers/Spawners/slots.yml b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/slots.yml new file mode 100644 index 00000000000..9d3794f1cc7 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/Spawners/slots.yml @@ -0,0 +1,14 @@ +- type: entity + parent: MarkerBase + id: SpawnCursedSlotMachine + name: Cursed Slots Spawner + suffix: DO NOT MAP + components: + - type: Sprite + layers: + - state: green + - sprite: _Wega/Structures/Machines/slot_machine.rsi + state: base + - type: ConditionalSpawner + prototypes: + - CursedSlotMachine diff --git a/Resources/Prototypes/_Wega/Entities/Markers/signals.yml b/Resources/Prototypes/_Wega/Entities/Markers/signals.yml new file mode 100644 index 00000000000..26eb69ba980 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Markers/signals.yml @@ -0,0 +1,52 @@ +- type: entity + parent: MarkerBase + id: MarkerSignalBase + abstract: true + components: + - type: Sprite + layers: + - state: blue + - type: NavMapBeacon + defaultDesc: nav-map-beacon-lavaland-signal-building-desc + color: "#a46106" + +- type: entity + parent: MarkerSignalBase + id: MarkerHierophantSignal + name: hierophant signal + suffix: Lavaland + components: + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-hierophant + defaultDesc: nav-map-beacon-lavaland-signal-hierophant-desc + color: "#9900ff" + +- type: entity + parent: MarkerSignalBase + id: MarkerWinterReserveSignal + name: winter reserve signal + suffix: Lavaland + components: + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-winterreserve + color: "#ffffff" + +- type: entity + parent: MarkerSignalBase + id: MarkerBiosphereSignal + name: biosphere signal + suffix: Lavaland + components: + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-biosphere + color: "#89a932" + +- type: entity + parent: MarkerSignalBase + id: MarkerBeachSignal + name: beach signal + suffix: Lavaland + components: + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-beach + color: "#decfa0" diff --git a/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_fauna.yml b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_fauna.yml new file mode 100644 index 00000000000..89f349ae99a --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_fauna.yml @@ -0,0 +1,578 @@ +- type: entity + id: BaseMobLavaland + parent: + - BaseMob + - MobDamageable + - MobAtmosExposed + - MobCombat + suffix: AI + abstract: true + components: + - type: Reactive + groups: + Flammable: [Touch] + Extinguish: [Touch] + Acidic: [Touch, Ingestion] + - type: Climbing + - type: NameIdentifier + group: GenericNumber + - type: StatusEffects + allowed: + - Electrocution + - TemporaryBlindness + - RadiationProtection + - Adrenaline + - type: StandingState + - type: Tag + tags: + - DoorBumpOpener + - StunImmune + - type: LavalandVisitor + immuneToStorm: true + - type: Unrevivable # If his dead - his is dead + analyzable: false + - type: NPCAggression + - type: NpcFactionMember + factions: + - LavalandFauna + +#region Goldgrub +# /// +#endregion + +#region Goliath +- type: entity + id: BaseMobGoliath + parent: [ BaseMobLavaland, MobBloodstream ] + name: goliath + description: A massive beast that uses long tentacles to ensnare its prey, threatening them is not advised under any conditions. + abstract: true + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/goliath.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: goliath1 + - type: DamageStateVisuals + states: + Alive: + Base: goliath1 + Dead: + Base: goliath_dead + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 3 + - type: Bloodstream + bloodReferenceSolution: + reagents: + - ReagentId: Blood + Quantity: 350 + - type: MobThresholds + thresholds: + 0: Alive + 200: Dead + - type: MeleeWeapon + soundHit: + path: "/Audio/Weapons/smash.ogg" + angle: 0 + attackRate: 0.75 + animation: WeaponArcPunch + damage: + types: + Slash: 15 + - type: HTN + constantlyReplan: false + rootTask: + task: GoliathCompound + blackboard: + VisionRadius: !type:Single + 9 + AggroVisionRadius: !type:Single + 9 + NavSmash: !type:Bool + true + - type: NPCUseActionOnTarget + actionId: ActionGoliathTentacle + - type: Tag + tags: + - CannotSuicide + - Goliath + - FootstepSound + - StunImmune + - type: NoSlip + - type: Butcherable + spawned: + - id: FoodMeatGoliath + amount: 2 + - id: MaterialGoliathHide1 + amount: 2 + - id: MaterialBones1 + amount: 2 + - type: TrophyHunter + trophy: TrophyLavalandGoliathTentacle + +- type: entity + id: MobGoliath + parent: BaseMobGoliath + name: goliath + description: A massive beast that uses long tentacles to ensnare its prey, threatening them is not advised under any conditions. + components: + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + goliath1: "" + goliath2: "" + +- type: entity + id: MobAncientGoliath + parent: BaseMobGoliath + name: ancient goliath + description: A very ancient creature that has existed since time immemorial due to its ability to stay young. + components: + - type: Sprite + sprite: Mobs/Aliens/Asteroid/goliath.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: goliath + - type: DamageStateVisuals + states: + Alive: + Base: goliath + Dead: + Base: goliath_dead + - type: MobThresholds + thresholds: + 0: Alive + 400: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 2.235 + baseSprintSpeed: 2.235 + - type: TrophyHunter + trophy: TrophyLavalandAncientGoliathTentacle + dropChance: 0.45 # More chance because he ancient +#endregion + +#region Legion +- type: entity + parent: BaseMobLavaland + id: MobLegion + name: legion + description: "A terrible creature covered in dusty skulls with burning red eyes." + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/legion.rsi + state: legion + - type: MobThresholds + thresholds: + 0: Alive + 75: Dead + - type: NoSlip + - type: Damageable + damageContainer: Biological + damageModifierSet: Skeleton + - type: MovementSpeedModifier + baseWalkSpeed: 3.735 + baseSprintSpeed: 3.735 + - type: LegionFauna + - type: HTN + rootTask: + task: LegionBehaviorCompound + blackboard: + VisionRadius: !type:Single + 9 + AggroVisionRadius: !type:Single + 9 + - type: NPCUseActionOnTarget + actionId: ActionLegionSummon + - type: Tag + tags: + - CannotSuicide + - DoorBumpOpener + - FootstepSound + - StunImmune + +- type: entity + parent: MobLegion + id: MobLegionLavaland + name: legion + description: "A terrible creature covered in dusty skulls with burning red eyes." + components: + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + RandomLegionCorpse: + min: 1 + max: 1 + LegionCore: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: TrophyHunter + trophy: TrophyLavalandLegionSkull + +# And here it is small XD +- type: entity + parent: MobLegion + id: MobLegionDwarf + components: + - type: Sprite + state: dwarf_legion + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 5.625 + baseSprintSpeed: 5.625 + +- type: entity + parent: BaseMobLavaland + id: MobLegionSkull + name: legion skull + description: "While you're wondering why... WHY ARE THERE SO MANY OF THEM, AAAAAAAAAAAA." + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/legionskull.rsi + state: legion_head_1 + - type: RandomSprite + available: + - 0: + legion_head_1: "" + legion_head_2: "" + legion_head_3: "" + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 130 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: NoSlip + - type: Damageable + damageContainer: Biological + damageModifierSet: Skeleton + - type: MovementSpeedModifier + baseWalkSpeed: 4.5 + baseSprintSpeed: 4.5 + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Slash: 5 + - type: TimedDespawn + lifetime: 30 + - type: HTN + rootTask: + task: SimpleHostileCompound +#endregion + +#region Watchers +- type: entity + name: watcher + id: MobWatcherBase + parent: [ BaseMobLavaland, FlyingMobBase ] + abstract: true + description: It's like it's staring right through you. + components: + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + blackboard: + VisionRadius: !type:Single + 2 + AggroVisionRadius: !type:Single + 9 + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/Lavaland/watcher.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 80 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: DamageStateVisuals + states: + Alive: + Base: base + BaseUnshaded: unshaded + Dead: + Base: dead + BaseUnshaded: dead-unshaded + - type: MobThresholds + thresholds: + 0: Alive + 200: Dead + - type: Butcherable + spawned: + - id: DiamondOre1 + amount: 2 + - id: MaterialBones1 + amount: 1 + - id: MaterialSinew1 + amount: 2 + - type: MovementSpeedModifier + baseWalkSpeed: 3.735 + baseSprintSpeed: 3.735 + - type: BatteryAmmoProvider + proto: WatcherBolt + fireCost: 50 + - type: BatterySelfRecharger + autoRechargeRate: 50 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: Gun + fireRate: 0.5 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: CombatMode + - type: InteractionPopup + successChance: 0.3 + interactSuccessString: petting-success-slimes + interactFailureString: petting-failure-generic + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + id: MobWatcherLavaland + parent: MobWatcherBase + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: red + - type: PointLight + radius: 1 + energy: 3 + color: red + - type: TrophyHunter + trophy: TrophyLavalandWatcherWing + +- type: entity + id: MobWatcherIcewing + parent: MobWatcherBase + name: icewing watcher + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: deepskyblue + - type: PointLight + radius: 1 + energy: 3 + color: deepskyblue + - type: MobThresholds + thresholds: + 0: Alive + 170: Dead + - type: Butcherable + spawned: + - id: DiamondOre1 + amount: 5 + - id: MaterialBones1 + amount: 1 + - type: TrophyHunter + trophy: TrophyLavalandIceWatcherWing + +- type: entity + id: MobWatcherMagmawing + parent: MobWatcherBase + name: magmawing watcher + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: orangered + - type: PointLight + radius: 1 + energy: 3 + color: orangered + - type: BatteryAmmoProvider + proto: WatcherBoltMagmawing + fireCost: 50 + - type: MobThresholds + thresholds: + 0: Alive + 225: Dead + - type: TrophyHunter + trophy: TrophyLavalandMagmaWatcherWing + +- type: entity + id: MobWatcherPride + parent: MobWatcherBase + name: pride watcher + suffix: Admeme + description: This rare subspecies only appears in June. + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + - type: PointLight + radius: 1 + energy: 3 + - type: RgbLightController + layers: [ 1 ] +#endregion + +#region Weavers +- type: entity + parent: BaseMobLavaland + id: MobMarrowWeaverLavaland + name: marrow weaver + description: "A disgusting giant spider with venom dripping from its jaws and purple chitin." + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/weaver.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: weaver + - type: DamageStateVisuals + states: + Alive: + Base: weaver + Dead: + Base: weaver_dead + - type: MobAnger + damageModifier: 1.4 + speedModifier: 1.2 + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Slash: 13 + - type: SolutionContainerManager + solutions: + melee: + reagents: + - ReagentId: Mechanotoxin + Quantity: 80 + - type: MeleeChemicalInjector + solution: melee + transferAmount: 1.5 + - type: MobThresholds + thresholds: + 0: Alive + 220: Dead + - type: Butcherable + spawned: + - id: UraniumOre1 + amount: 2 + - id: MaterialSinew1 + amount: 2 + - id: MaterialBones1 + amount: 3 + - id: MaterialChitin1 + amount: 4 + - type: TrophyHunter + trophy: TrophyLavalandMarrowWeaverPoisonFang + - type: ReplacementAccent + accent: xeno + - type: NoSlip + - type: IgnoreSpiderWeb + - type: Speech + speechVerb: Arachnid + speechSounds: Arachnid + allowedEmotes: ['Click', 'Chitter'] + - type: Vocal + sounds: + Male: UnisexArachnid + Female: UnisexArachnid + Unsexed: UnisexArachnid + - type: TypingIndicator + proto: spider + - type: NaturalNightVision + - type: VentCrawler + - type: MovementSpeedModifier + baseWalkSpeed: 3.735 + baseSprintSpeed: 3.735 + - type: HTN + rootTask: + task: SimpleHostileCompound + blackboard: + VisionRadius: !type:Single + 9 + AggroVisionRadius: !type:Single + 9 + +- type: entity + parent: MobMarrowWeaverLavaland + id: MobFrostbiteWeaverLavaland + name: frostbite weaver + description: "A disgusting giant spider with venom dripping from its jaws and blue chitin." + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: weaver_ice + - type: DamageStateVisuals + states: + Alive: + Base: weaver_ice + Dead: + Base: weaver_ice_dead + - type: SolutionContainerManager + solutions: + melee: + reagents: + - ReagentId: Cryoxadone + Quantity: 80 + - type: TrophyHunter + trophy: TrophyLavalandFrostbiteWeaverFrostGland +#endregion diff --git a/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_inhabitants.yml b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_inhabitants.yml new file mode 100644 index 00000000000..12af31480ae --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_inhabitants.yml @@ -0,0 +1,191 @@ +- type: entity + id: BaseMobInhabitants + abstract: true + components: + - type: NPCIgnoringOptimize + - type: RandomHumanoidAppearance + randomizeName: false + - type: Unrevivable + analyzable: false + +# Inhabitant Square +- type: entity + parent: [ BaseMobHuman, BaseMobInhabitants ] + id: MobHumanInhabitantSquare + name: inhabitant of the square + components: + - type: NpcFactionMember + factions: + - AllHostile + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: Loadout + prototypes: + - InhabitantSquareGear + +- type: startingGear + id: InhabitantSquareGear + equipment: + jumpsuit: ClothingUniformJumpsuitColorBlack + mask: ClothingMaskBreath + shoes: ClothingShoesBootsWinter + socks: ClothingUnderSocksBlackKnee + underwearbottom: ClothingUnderBottomGrey + head: ClothingHeadHatHoodWinterColorGray + outerClothing: ClothingOuterWinterColorGray + belt: DoubleEmergencyOxygenTankFilled + inhand: + - SpearReinforced + +# Hermit +- type: entity + parent: [ BaseMobHuman, BaseMobInhabitants ] + id: MobHumanInhabitantHermit + name: hermit + components: + - type: LavalandVisitor + immuneToStorm: true # Otherwise, he would have died in the first storm. + - type: Respirator # Formally, so that he feels good before the players arrive + saturation: 8.0 + suffocationThreshold: -6.0 + maxSaturation: 8.0 + minSaturation: -4.0 + suffocationCycleThreshold: 6 + updateIntervalMultiplier: 0.8 + - type: NpcFactionMember + factions: + - AllHostile + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: Loadout + prototypes: + - InhabitantHermitGear + +- type: startingGear + id: InhabitantHermitGear + equipment: + jumpsuit: ClothingUniformJumpsuitColorGrey + mask: ClothingMaskBreath + shoes: ClothingShoesColorBlack + underwearbottom: ClothingUnderBottomGrey + head: ClothingHeadHelmetEVA + outerClothing: ClothingOuterHardsuitEVA + suitstorage: OxygenTankFilled + +# Beach Guys +- type: entity + parent: [ BaseMobHuman, BaseMobInhabitants ] + id: MobHumanInhabitantBeachGuy + name: beach Guy + components: + - type: RandomHumanoidAppearance + randomizeName: true + - type: NpcFactionMember + factions: + - Passive + - type: HTN + rootTask: + task: IdleCompound + - type: Loadout + prototypes: + - InhabitantBeachGuyGear1 + - InhabitantBeachGuyGear2 + - InhabitantBeachGuyGear3 + - InhabitantBeachGuyGear4 + +- type: startingGear + id: InhabitantBeachGuyGear1 + equipment: + jumpsuit: ClothingUniformJumpsuitHawaiRed + eyes: ClothingEyesGlassesSunglasses + back: ClothingBackpackSatchel + pocket1: DrinkIcedBeerGlass + pocket2: FoodSnackRaisins + storage: + back: + - EmergencyOxygenTankFilled + - ClothingMaskBreath + +- type: startingGear + id: InhabitantBeachGuyGear2 + equipment: + jumpsuit: ClothingUniformJumpsuitHawaiBlue + eyes: ClothingEyesGlassesSunglasses + back: ClothingBackpackSatchel + pocket1: DrinkIcedBeerGlass + pocket2: FoodFrozenSnowcone + storage: + back: + - EmergencyOxygenTankFilled + - ClothingMaskBreath + +- type: startingGear + id: InhabitantBeachGuyGear3 + equipment: + jumpsuit: ClothingUniformJumpsuitHawaiBlack + eyes: ClothingEyesGlassesSunglasses + shoes: ClothingShoesSlippers + back: ClothingBackpackSatchel + pocket1: DrinkIcedBeerGlass + pocket2: FoodFrozenCornuto + storage: + back: + - EmergencyOxygenTankFilled + - ClothingMaskBreath + +- type: startingGear + id: InhabitantBeachGuyGear4 + equipment: + jumpsuit: ClothingUniformJumpsuitHawaiYellow + eyes: ClothingEyesGlassesSunglasses + back: ClothingBackpackSatchel + pocket1: DrinkIcedBeerGlass + pocket2: FoodSnackSus + storage: + back: + - EmergencyOxygenTankFilled + - ClothingMaskBreath + +# Veterinarian +- type: entity + parent: [ BaseMobHuman, BaseMobInhabitants ] + id: MobHumanInhabitantTranslocatedVeterinarian + name: veterinarian + components: + - type: RandomHumanoidAppearance + randomizeName: true + - type: NpcFactionMember + factions: + - Passive + - type: HTN + rootTask: + task: IdleCompound + - type: Loadout + prototypes: + - InhabitantTranslocatedVeterinarianGear + +- type: startingGear + id: InhabitantTranslocatedVeterinarianGear + equipment: + jumpsuit: ClothingUniformJumpsuitColorWhite + mask: ClothingMaskBreathMedical + shoes: ClothingShoesColorWhite + gloves: ClothingHandsGlovesLatex + underwearbottom: ClothingUnderBottomGrey + back: ClothingBackpackSatchelMedical + outerClothing: ClothingOuterCoatLabOpened + pocket1: EmergencyOxygenTankFilled + inhand: + - MedkitFilled + storage: + back: + - MedicatedSuture + - RegenerativeMesh + - Bloodpack + - Gauze + - SyringeSaline + - SyringeEphedrine + - BruteAutoInjector + - BurnAutoInjector diff --git a/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_megafauna.yml b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_megafauna.yml new file mode 100644 index 00000000000..49d9b97f68f --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Mobs/NPCs/lavaland_megafauna.yml @@ -0,0 +1,818 @@ +- type: entity + id: BaseMobMegafauna + abstract: true + components: + - type: Sprite + noRot: true + drawdepth: Mobs + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.75 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: RequireProjectileTarget + active: false + - type: Actions + - type: Clickable + - type: InteractionOutline + - type: LagCompensation + - type: NoSlip + - type: MobState + - type: CombatMode + - type: Damageable + damageContainer: Biological + - type: Megafauna + - type: NPCAggression + - type: NPCIgnoringOptimize + - type: NpcFactionMember + factions: + - LavalandFauna + - type: LavalandVisitor + immuneToStorm: true + - type: Unrevivable + analyzable: false + - type: Tag + tags: + - CannotSuicide + - DoorBumpOpener + - StunImmune + - SlowImmune + +- type: entity + parent: BaseMobMegafauna + id: BaseMobMegafaunaMover + abstract: true + components: + - type: InputMover + - type: Input + context: "human" + - type: MobMover + - type: MovementSpeedModifier + +#region Blood Drunk Miner +- type: entity + parent: [ BaseMobHuman, BaseMobMegafauna ] + id: MobBloodDrunkMiner + name: unknown miner + components: + - type: RandomHumanoidAppearance + randomizeName: false + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 1200 + behaviors: + - !type:GibBehavior { } + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 1500 + behaviors: + - !type:SpawnEntitiesBehavior + spawnInContainer: true + spawn: + Ash: + min: 1 + max: 1 + - !type:BurnBodyBehavior { } + - !type:PlaySoundBehavior + sound: + collection: MeatLaserImpact + - type: NpcFactionMember + factions: + - AllHostile + - type: Loadout + prototypes: + - BloodDrunkMinerGear + - type: InputMover + - type: MobMover + - type: ScaleVisuals + scale: 1.172, 1.172 + - type: MobThresholds + thresholds: + 0: Alive + 900: Dead + - type: SlowOnDamage + speedModifierThresholds: + 540: 0.7 + 720: 0.5 + 900: 0.3 + - type: Respirator + saturation: 8.0 + suffocationThreshold: -6.0 + maxSaturation: 8.0 + minSaturation: -4.0 + suffocationCycleThreshold: 6 + updateIntervalMultiplier: 0.8 + - type: BloodDrunkMiner + - type: NPCHandSwitcher + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: NPCUseActionOnTarget + actionId: ActionBloodDrunkMinerDash + - type: DnaModifier + upper: null + lowest: null + - type: TrophyHunter + trophy: TrophyLavalandBDMEye + dropChance: 1 # Guaranteed, since it's the boss + - type: Butcherable + spawned: + - id: FoodMeatHuman + amount: 5 + - id: GemStabilizedBaroxuldium + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-bdm + defaultDesc: nav-map-beacon-lavaland-signal-bdm-desc + color: "#a46106" + - type: Tag + tags: + - CannotSuicide + - DoorBumpOpener + - StunImmune + - SlowImmune + +- type: startingGear + id: BloodDrunkMinerGear + equipment: + jumpsuit: ClothingUniformJumpsuitExplorer + ears: ClothingHeadsetCargo + eyes: ClothingEyesGlassesMeson + mask: ClothingMaskGasExplorer + gloves: ClothingHandsGlovesCombat + shoes: ClothingShoesBootsSalvage + underwearbottom: ClothingUnderBottomGrey + head: ClothingHeadHatHoodExplorerBDM + outerClothing: ClothingOuterArmorExplorerSuitBDM + suitstorage: OxygenTankFilled + inhand: + - WeaponCleawingSaw + - WeaponProtoKineticAcceleratorBDM +#endregion + +#region Hierophant +- type: entity + parent: BaseMobMegafauna + id: MobHierophant + name: hierophant + description: "A huge, mysterious scepter made of alien metal and seemingly endowed with its own intelligence. Perhaps its purpose is to defend the structure it resides in." + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.6,0.35,0.6" + density: 50 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Hierophant + - type: Sprite + sprite: _Wega/Mobs/Lavaland/hierophant.rsi + state: hierophant + - type: MeleeWeapon + altDisarm: false + damage: + groups: + Brute: 20 + - type: MobThresholds + thresholds: + 0: Alive + 2500: Dead + - type: AmbientSound + sound: + path: "/Audio/_Wega/Mobs/Lavaland/hiero_bgm.ogg" + enabled: false + volume: 2 + range: 15 + - type: PointLight + color: "#9900ff" + castShadows: false + softness: 1 + radius: 2.5 + energy: 2.5 + - type: Megafauna + isActive: false + bossMusic: + path: "/Audio/_Wega/Mobs/Lavaland/hiero_bgm.ogg" + - type: HierophantBoss + rewards: + - HierophantClubRod + - GemCompactedDilithium + - type: HTN + rootTask: + task: HierophantBehaviorCompound + - type: NPCUseActionsOnTarget + actionIds: + - ActionHierophantBlink + - ActionHierophantCross + - ActionHierophantChaser + - ActionHierophantDamageArea + actionChances: + ActionHierophantBlink: 0.5 + ActionHierophantCross: 0.5 + ActionHierophantChaser: 0.5 + ActionHierophantDamageArea: 0.5 + - type: TrophyHunter + trophy: TrophyLavalandHierophantVortexTalisman + dropChance: 1 # Guaranteed, since it's the boss + collectSound: + path: "/Audio/Effects/singularity_collapse.ogg" # More Cinema + +- type: entity + id: MobHierophantChaser + name: hierophant chaser + categories: [ HideSpawnMenu ] + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: Transform + anchored: true + - type: HierophantChaser +#endregion + +#region Mega Legion +- type: entity + parent: BaseMobMegafaunaMover + id: BaseMobMegaLegion + name: legion + description: A massive floating skull that watches over the necropolis. + abstract: true + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 1 + density: 50 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Damageable + damageModifierSet: Skeleton + - type: MovementSpeedModifier + baseWalkSpeed: 4.2 + baseSprintSpeed: 4.2 + - type: HTN + rootTask: + task: MegaLegionBehaviorCompound + blackboard: + VisionRadius: !type:Single + 5 + AggroVisionRadius: !type:Single + 9 + - type: NPCUseActionsOnTarget # More Safety + actionIds: + - ActionMegaLegion + - type: DamageOtherOnHit + damage: + types: + Blunt: 25 + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-mega-legion + defaultDesc: nav-map-beacon-lavaland-signal-mega-legion-desc + color: "#e8d9b0" + - type: Megafauna + - type: LegionFauna + - type: LegionBoss + lootPrototypes: + MaterialBones1: 1 + CrateNecropolisFilled: 0.2 + LegionCore: 0.1 + rewards: + - CrowbarRed + - type: TrophyHunter + trophy: TrophyLavalandLegionSkull + +- type: entity + parent: BaseMobMegaLegion + id: MobMegaLegion + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion96.rsi + state: mega_legion + - type: MobThresholds + thresholds: + 0: Alive + 800: Dead + - type: DamageOtherOnHit + damage: + types: + Blunt: 20 + - type: LegionBoss + summonCount: 3 + lootPrototypes: + MaterialBones: 1 + CrateNecropolisFilled: 0.2 + LegionCore: 0.1 + +- type: entity + parent: BaseMobMegaLegion + id: MobMegaLegionSplitLeft + name: legion left part + description: "Oh, who would have known it would be so disgusting?" + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.75 + density: 40 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion64.rsi + state: mega_legion_right + - type: MovementSpeedModifier + baseWalkSpeed: 4.5 + baseSprintSpeed: 4.5 + - type: MobThresholds + thresholds: + 0: Alive + 400: Dead + - type: LegionSplit + nextSplit: MobMegaLegionSplitMedium + +- type: entity + parent: MobMegaLegionSplitLeft + id: MobMegaLegionSplitRight + name: legion right part + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion64.rsi + state: mega_legion_left + +- type: entity + parent: MobMegaLegionSplitLeft + id: MobMegaLegionSplitEye + name: legion eye + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion64.rsi + state: mega_legion_eye + +- type: entity + parent: BaseMobMegaLegion + id: MobMegaLegionSplitMedium + name: legion medium + description: "What, again..?" + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 30 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion.rsi + state: mega_legion + scale: "1.35, 1.35" + - type: MovementSpeedModifier + baseWalkSpeed: 5 + baseSprintSpeed: 5 + - type: MobThresholds + thresholds: + 0: Alive + 200: Dead + - type: DamageOtherOnHit + damage: + types: + Blunt: 15 + - type: LegionSplit + nextSplit: MobMegaLegionSplitSmall + - type: LegionBoss + summonCount: 1 + lootPrototypes: + MaterialBones1: 1 + CrateNecropolisFilled: 0.2 + LegionCore: 0.1 + +- type: entity + parent: BaseMobMegaLegion + id: MobMegaLegionSplitSmall + name: legion small + description: "When will it end!?" + components: + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 20 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: Sprite + sprite: _Wega/Mobs/Lavaland/mega_legion.rsi + state: mega_legion + - type: MovementSpeedModifier + baseWalkSpeed: 5.75 + baseSprintSpeed: 5.75 + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: DamageOtherOnHit + damage: + types: + Blunt: 10 + - type: LegionSplit + - type: LegionBoss + summonCount: 1 + lootPrototypes: + MaterialBones1: 1 + CrateNecropolisFilled: 0.2 + LegionCore: 0.1 +#endregion + +#region Colossus +- type: entity + parent: BaseMobMegafaunaMover + id: MobColossus + name: colossus + description: "A fallen angel who wanders the wastelands of Lavaland, punishing all those he deems impure." + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/colossus.rsi + state: colossus + - type: MeleeWeapon + altDisarm: false + attackRate: 0.25 + damage: + groups: + Brute: 40 + - type: RechargeBasicEntityAmmo + showExamineText: false + rechargeCooldown: 0.01 + rechargeSound: null + - type: BasicEntityAmmoProvider + proto: BulletColossus + capacity: 9999 + count: 9999 + - type: Gun + projectileSpeed: 4 + fireRate: 10 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + showExamineText: false + soundGunshot: null + soundEmpty: null + - type: Pullable + - type: MovementSpeedModifier + baseWalkSpeed: 1.125 + baseSprintSpeed: 1.125 + - type: MobThresholds + thresholds: + 0: Alive + 2500: Dead + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-colossus + defaultDesc: nav-map-beacon-lavaland-signal-colossus-desc + color: "#4daaff" + - type: ColossusBoss + rewards: + - CrateNecropolisColossusFilled + - type: HTN + rootTask: + task: MegafaunaBehaviorCompound + blackboard: + VisionRadius: !type:Single + 10 + AggroVisionRadius: !type:Single + 12 + - type: NPCUseActionsOnTarget + delayModifier: 0.5 + actionIds: + - ActionColossusFraction + - ActionColossusCross + - ActionColossusSpiral + - ActionColossusTripleFraction + actionChances: + ActionColossusFraction: 0.6 + ActionColossusCross: 0.4 + ActionColossusSpiral: 0.6 + ActionColossusTripleFraction: 0.5 + - type: TrophyHunter + trophy: TrophyLavalandColossusBlasterTubes + dropChance: 1 # Guaranteed, since it's the boss +#endregion + +#region Ash Drake +- type: entity + parent: [ BaseMobMegafaunaMover, MobBloodstream ] + id: MobAshDrake + name: ash drake + description: "A winged monster, the revered guardian of the Necropolis. A horror in flesh, it roams the barren wasteland, spewing streams of deadly flame." + components: + - type: Physics + bodyType: KinematicController + canCollide: false + - type: Sprite + sprite: _Wega/Mobs/Lavaland/ashdrake.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: dragon + - type: DamageStateVisuals + states: + Alive: + Base: dragon + Dead: + Base: dragon_dead + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + attackRate: 0.25 + damage: + type: + Slash: 40 + - type: RechargeBasicEntityAmmo + showExamineText: false + rechargeCooldown: 0.01 + rechargeSound: null + - type: BasicEntityAmmoProvider + proto: BulletAshDrakeFire + capacity: 9999 + count: 9999 + - type: Gun + projectileSpeed: 10 + fireRate: 10 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + showExamineText: false + soundGunshot: null + soundEmpty: null + - type: Pullable + - type: MovementSpeedModifier + baseWalkSpeed: 2.25 + baseSprintSpeed: 2.25 + - type: MobThresholds + thresholds: + 0: Alive + 2500: Dead + - type: Bloodstream + bloodlossDamage: + types: + Bloodloss: 0 + bloodReferenceSolution: + reagents: + - ReagentId: Blood + Quantity: 500 + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-ashdrake + defaultDesc: nav-map-beacon-lavaland-signal-ashdrake-desc + color: "#a7000b" + - type: AshDrakeBoss + - type: HTN + rootTask: + task: MegafaunaBehaviorCompound + blackboard: + VisionRadius: !type:Single + 18 + AggroVisionRadius: !type:Single + 18 + - type: NPCUseActionsOnTarget + delayModifier: 0.5 + actionIds: + - ActionAshDrakeConeFire + - ActionAshDrakeBreathingFire + - ActionAshDrakeLava + actionChances: + ActionAshDrakeConeFire: 0.75 + ActionAshDrakeBreathingFire: 0.6 + ActionAshDrakeLava: 0.1 + - type: TrophyHunter + trophy: TrophyLavalandAshDrakeSpike + dropChance: 1 # Guaranteed, since it's the boss + - type: Butcherable + spawned: + - id: FoodMeatDragon + amount: 3 + - id: DiamondOre1 + amount: 5 + - id: GemDragonPearls + - id: MaterialSinew1 + amount: 5 + - id: MaterialDragonHide1 + amount: 10 + - id: MaterialBones1 + amount: 30 + - id: CrateNecropolisAshDrakeFilled + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + enum.DamageStateVisualLayers.Base: + True: {visible: false} + False: {visible: true} + +- type: entity + parent: [ BaseMobMegafaunaMover, MobBloodstream ] + id: MobLowerAshDrake + name: ash drake + description: "A winged monster, the revered guardian of the Necropolis. A horror in flesh, it roams the barren wasteland, spewing streams of deadly flame." + suffix: Lower + components: + - type: Physics + bodyType: KinematicController + canCollide: false + - type: Sprite + sprite: _Wega/Mobs/Lavaland/ashdrake.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: dragon + - type: DamageStateVisuals + states: + Alive: + Base: dragon + Dead: + Base: dragon_dead + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + attackRate: 1 + damage: + type: + Slash: 10 + - type: RechargeBasicEntityAmmo + showExamineText: false + rechargeCooldown: 0.01 + rechargeSound: null + - type: BasicEntityAmmoProvider + proto: BulletAshDrakeFire + capacity: 9999 + count: 9999 + - type: Gun + projectileSpeed: 10 + fireRate: 1 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + showExamineText: false + soundGunshot: null + soundEmpty: null + - type: Pullable + - type: MovementSpeedModifier + baseWalkSpeed: 2.25 + baseSprintSpeed: 2.25 + - type: MobThresholds + thresholds: + 0: Alive + 500: Dead + - type: Bloodstream + bloodlossDamage: + types: + Bloodloss: 0 + bloodReferenceSolution: + reagents: + - ReagentId: Blood + Quantity: 500 +#endregion + +#region Bubblegum +- type: entity + parent: BaseMobMegafaunaMover + id: MobBubblegum + name: bubblegum + description: "The king of all the slaughter demons." + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/bubblegum.rsi + layers: + - map: ["base"] + state: bubblegum + - type: MeleeWeapon + altDisarm: false + attackRate: 0.25 + damage: + groups: + Brute: 40 + - type: Pullable + - type: MovementSpeedModifier + baseWalkSpeed: 2.25 + baseSprintSpeed: 2.25 + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepThud + - type: MobThresholds + thresholds: + 0: Alive + 2500: Dead + - type: NavMapBeacon + defaultText: nav-map-beacon-lavaland-signal-bubblegum + defaultDesc: nav-map-beacon-lavaland-signal-bubblegum-desc + color: "#880000" + - type: BubblegumBoss + rewards: + - CrateNecropolisBubblegumFilled + phase1Actions: + - ActionBubblegumRage + - ActionBubblegumBloodDive + - ActionBubblegumTripleDash + phase1Chances: + ActionBubblegumRage: 0.1 + ActionBubblegumBloodDive: 0.5 + ActionBubblegumTripleDash: 0.8 + phase2Actions: + - ActionBubblegumRage + - ActionBubblegumBloodDive + - ActionBubblegumIllusionDash + - ActionBubblegumPentagramDash + - ActionBubblegumChaoticIllusionDash + phase2Chances: + ActionBubblegumRage: 0.4 + ActionBubblegumBloodDive: 0.5 + ActionBubblegumIllusionDash: 0.67 + ActionBubblegumPentagramDash: 0.33 + ActionBubblegumChaoticIllusionDash: 0.75 + - type: HTN + rootTask: + task: MegafaunaBehaviorCompound + blackboard: + VisionRadius: !type:Single + 18 + AggroVisionRadius: !type:Single + 18 + - type: NPCUseActionsOnTarget + actionIds: + - ActionBubblegumRage + - ActionBubblegumBloodDive + - ActionBubblegumTripleDash + actionChances: + ActionBubblegumRage: 0.1 + ActionBubblegumBloodDive: 0.5 + ActionBubblegumTripleDash: 0.8 + - type: TrophyHunter + trophy: TrophyLavalandBubblegumDemonClaws + dropChance: 1 # Guaranteed, since it's the boss + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + base: + True: {color: red} + False: {color: white} + - type: Tag + tags: + - CannotSuicide + - DoorBumpOpener + - FootstepSound + - StunImmune + - SlowImmune + +- type: entity + id: MobBubblegumIllusion + name: bubblegum + description: "..." + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Mobs/Lavaland/bubblegum.rsi + state: bubblegum + noRot: true + - type: InteractionOutline + - type: BubblegumIllusion + - type: MobThresholds + thresholds: + 0: Alive + 2500: Dead +#endregion diff --git a/Resources/Prototypes/_Wega/Entities/Mobs/Player/ashwalker.yml b/Resources/Prototypes/_Wega/Entities/Mobs/Player/ashwalker.yml new file mode 100644 index 00000000000..443fc45742e --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Mobs/Player/ashwalker.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McAshWalker + parent: BaseMobAshWalker + id: MobAshWalker diff --git a/Resources/Prototypes/_Wega/Entities/Mobs/Species/ashwalker.yml b/Resources/Prototypes/_Wega/Entities/Mobs/Species/ashwalker.yml new file mode 100644 index 00000000000..062cbefa0cb --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Mobs/Species/ashwalker.yml @@ -0,0 +1,51 @@ +- type: entity + parent: BaseMobReptilian + id: BaseMobAshWalker + name: Urist McAshWalker + abstract: true + components: + - type: HumanoidAppearance + species: AshWalker + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + - type: Body + prototype: AshWalker + requiredLegs: 2 + - type: LavalandVisitor + immuneToStorm: true + - type: MovementSpeedModifier + baseWalkSpeed: 3.675 + baseSprintSpeed: 6.615 + - type: Respirator + saturation: 8.0 + suffocationThreshold: -6.0 + maxSaturation: 8.0 + minSaturation: -4.0 + suffocationCycleThreshold: 6 + updateIntervalMultiplier: 0.8 + damage: + types: + Asphyxiation: 5.0 + damageRecovery: + types: + Asphyxiation: -1.0 + # - type: DnaModifier + # upper: MobAshWalker + # lowest: Mob + +- type: entity + parent: MobReptilianDummy + id: MobAshWalkerDummy + categories: [ HideSpawnMenu ] + components: + - type: HumanoidAppearance + species: AshWalker + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + - type: Body + prototype: AshWalker + requiredLegs: 2 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/flora.yml b/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/flora.yml new file mode 100644 index 00000000000..51a36961a3f --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/flora.yml @@ -0,0 +1,90 @@ +- type: entity + parent: FoodProduceBase + id: FoodFloraCactusFruit + name: fruit of the barrel cactus + description: "A juicy fruit covered with thin thorns. Inside, there is a sweet and sour flesh that perfectly quenches your thirst." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Omnizine + Quantity: 2.5 + - ReagentId: Saline + Quantity: 2.5 + - type: Sprite + sprite: _Wega/Objects/Consumable/Food/flora.rsi + state: cactus_fruit + - type: Tag + tags: + - Fruit + +- type: entity + parent: FoodProduceBase + id: FoodFloraPolyporeMushroom + name: wood tinder box + description: "A tough, leathery mushroom that grows on tree trunks. It is inedible when raw, but dried and processed plates have long been used to make durable tinder and crafts." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 5 + - type: Sprite + sprite: _Wega/Objects/Consumable/Food/flora.rsi + state: mushroom_shavings + +- type: entity + parent: FoodProduceBase + id: FoodFloraInocybeMushroom + name: pale fire mushroom + description: "A fragile mushroom with a cone-shaped cap covered in cracks. It emits an unsettling, almost invisible glow. It is said that shamans use it to travel to other worlds, but the price for such an experience is terrible." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: THC + Quantity: 2.5 + - ReagentId: Amatoxin + Quantity: 2.5 + - type: Sprite + sprite: _Wega/Objects/Consumable/Food/flora.rsi + state: mushroom_cap + +- type: entity + parent: FoodProduceBase + id: FoodFloraPorciniMushroom + name: smoky boletus + description: "A strong, fleshy mushroom with a distinctive brown cap. When broken, it emits a subtle smell of smoke and old paper. It has a slight stimulating effect." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nicotine + Quantity: 2.5 + - ReagentId: Saline + Quantity: 2.5 + - type: Sprite + sprite: _Wega/Objects/Consumable/Food/flora.rsi + state: mushroom_leaf + +- type: entity + parent: FoodProduceBase + id: FoodFloraEmbershroom + name: charcoal-fire tinder fungus + description: "A heavy, almost stone-like mushroom with the color of a burnt-out coal. In the dark, its veins pulse with a faint red light. When consumed, it induces a sense of euphoria and causes the skin to glow with a residual light." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Vitamin + Quantity: 2.5 + - ReagentId: SpaceDrugs + Quantity: 2.5 + - type: Sprite + sprite: _Wega/Objects/Consumable/Food/flora.rsi + state: mushroom_stem diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/produce.yml index eb7e9ab81c7..255fb59aa98 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Consumable/Food/produce.yml @@ -77,6 +77,28 @@ - type: PotencyVisuals - type: Appearance +- type: entity + parent: BaseItem + id: FlowerFireBlossom + name: fire blossom + description: "Something beautiful." + components: + - type: Clothing + slots: + - HEAD + quickEquip: false + - type: Sprite + sprite: _Wega/Objects/Specific/Hydroponics/fireblossom.rsi + state: produce + - type: Produce + seedId: fireblossomflower + - type: PointLight + radius: 1.2 + energy: 2 + color: "#F54900" + - type: PotencyVisuals + - type: Appearance + - type: entity name: money cabbage description: "Money, money, MONEY!!" @@ -439,7 +461,7 @@ - Fruit - type: entity - name: lollipop + name: lollipop parent: FoodProduceBase id: FoodProduceLollipop description: "the most delicious lollipops!" @@ -470,7 +492,7 @@ - Lollipops - type: entity - name: lollipop + name: lollipop parent: FoodProduceBase id: FoodProduceLollipopRandom suffix: "random chemicals" @@ -502,7 +524,7 @@ - Lollipops - type: entity - name: lollipop + name: lollipop parent: FoodProduceBase id: FoodProduceLollipopMedical suffix: "medical chemicals" @@ -532,7 +554,7 @@ - Lollipops - type: entity - name: lollipop + name: lollipop parent: FoodProduceBase id: FoodProduceLollipopMedRandom suffix: "medical case" diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/_Wega/Entities/Objects/Devices/Circuitboards/computer.yml index 3f798f1ffe6..400de14d616 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Devices/Circuitboards/computer.yml @@ -19,3 +19,25 @@ state: cpu_engineering - type: ComputerBoard prototype: MiningMonitoringConsole + +- type: entity + parent: BaseComputerCircuitboard + id: LavalandShuttleComputerCircuitboard + name: lavaland shuttle console computer board + description: "The console board for the lavaland shuttle console." + components: + - type: Sprite + state: cpu_supply + - type: ComputerBoard + prototype: LavalandShuttleConsole + +- type: entity + parent: BaseComputerCircuitboard + id: LavalandPenalServitudeShuttleComputerCircuitboard + name: lavaland penal sarvitude shuttle console computer board + description: "The console board for the lavaland penal sarvitude shuttle console." + components: + - type: Sprite + state: cpu_security + - type: ComputerBoard + prototype: PenalServitudeLavalandShuttleConsole diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_Wega/Entities/Objects/Devices/pda.yml index 603463ad9c1..a8ff1a1b19e 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Devices/pda.yml @@ -134,6 +134,54 @@ - type: Icon state: pda-postman +- type: entity + parent: BasePDA + id: MinerPDA + name: miner PDA + description: Smells like ash. + components: + - type: Pda + id: MinerIDCard + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-miner + - type: PdaBorderColor + borderColor: "#af9366" + accentVColor: "#8900c9" + - type: Icon + state: pda-miner + +- type: entity + parent: BasePDA + id: MinerMedicPDA + name: miner medic PDA + description: Smells like ash and alcohol. + components: + - type: Pda + id: MinerMedicIDCard + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-miner-medic + - type: PdaBorderColor + borderColor: "#af9366" + accentHColor: "#5d99be" + accentVColor: "#8900c9" + - type: Icon + state: pda-miner-medic + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NanoTaskCartridge + - NewsReaderCartridge + - NanoChatCartridge # Corvax-Wega-NanoChat + - MedTekCartridge + - type: entity parent: BaseSecurityPDA id: WardenHelperPDA @@ -151,4 +199,4 @@ borderColor: "#A32D26" accentVColor: "#949137" - type: Icon - state: pda-warden \ No newline at end of file + state: pda-warden diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/_Wega/Entities/Objects/Devices/station_beacon.yml new file mode 100644 index 00000000000..07f2b093aea --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Devices/station_beacon.yml @@ -0,0 +1,92 @@ +- type: entity + parent: DefaultStationBeaconSupply + id: DefaultStationBeaconCargoLavalandAvanpost + suffix: Lavaland Avanpost + components: + - type: NavMapBeacon + defaultText: station-beacon-cargo-lavaland-avanpost + +- type: entity + parent: DefaultStationBeaconSecurity + id: DefaultStationBeaconSecurityPenalServitude + suffix: Penal Servitude + components: + - type: NavMapBeacon + defaultText: station-beacon-security-penal-servitude + +- type: entity + parent: BaseItem + id: HandheldBeacon + name: handheld beacon + description: "A small signal transmitter that needs to be deployed in order to work." + components: + - type: Sprite + sprite: _Wega/Objects/Devices/handheld_beacon.rsi + noRot: true + layers: + - state: off + map: ["base"] + - state: unshaded + map: ["beacon-on"] + shader: unshaded + visible: false + - type: ConfigurableNavMapBeacon + - type: HandheldBeacon + - type: NavMapBeacon + defaultText: nav-map-beacon-handheld-default + defaultDesc: nav-map-beacon-handheld-default-desc + color: "#66489c" + enabled: false + - type: ActivatableUI + key: enum.NavMapBeaconUiKey.Key + singleUser: true + - type: UserInterface + interfaces: + enum.NavMapBeaconUiKey.Key: + type: NavMapBeaconBoundUserInterface + - type: Item + size: Tiny + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: # for nukes + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + params: + volume: -8 + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + offset: 0 + - !type:DoActsBehavior + acts: ["Breakage"] + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + base: + True: {state: base} + False: {state: off} + enum.NavMapBeaconVisuals.Enabled: + beacon-on: + True: {visible: true} + False: {visible: false} + - type: Tag + tags: + - HandheldBeacon + - type: StaticPrice + price: 25 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Magic/books.yml b/Resources/Prototypes/_Wega/Entities/Objects/Magic/books.yml new file mode 100644 index 00000000000..e45ba803fdc --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Magic/books.yml @@ -0,0 +1,12 @@ +- type: entity + parent: BaseSpellbook + id: FireSelfSpellbook + name: fire self spellbook + components: + - type: Sprite + sprite: _Wega/Objects/Misc/books.rsi + layers: + - state: fireself + - type: Spellbook + spellActions: + ActionFireSelf: null diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/_Wega/Entities/Objects/Materials/Sheets/metal.yml index 451f503913c..cf7f586c9ce 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Materials/Sheets/metal.yml @@ -33,3 +33,42 @@ components: - type: Stack count: 1 + +- type: entity + parent: SheetOtherBase + id: SheetMagmite + name: magmite + suffix: Full + components: + - type: Material + - type: PhysicalComposition + materialComposition: + Magmite: 100 + - type: Stack + stackType: Magmite + baseLayer: base + layerStates: + - magmite + - magmite_2 + - magmite_3 + - type: Sprite + sprite: _Wega/Objects/Materials/Sheets/metal.rsi + state: magmite_3 + layers: + - state: magmite_3 + map: ["base"] + - type: Appearance + - type: Item + heldPrefix: magmite + - type: Tag + tags: + - MagmiteAlloy + +- type: entity + parent: SheetMagmite + id: SheetMagmite1 + name: magmite + suffix: Single + components: + - type: Stack + count: 1 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Materials/gems.yml b/Resources/Prototypes/_Wega/Entities/Objects/Materials/gems.yml new file mode 100644 index 00000000000..68976cbdfde --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Materials/gems.yml @@ -0,0 +1,287 @@ +- type: entity + id: BaseGem + parent: BaseItem + abstract: true + components: + - type: Sprite + sprite: _Wega/Objects/Materials/gems.rsi + - type: StaticPrice + - type: Damageable + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: PointsCapital + points: 100 + - type: Tag + tags: + - Gems + +- type: entity + id: GemRuby + parent: BaseGem + name: ruby + description: red and shiny. + components: + - type: Sprite + layers: + - state: ruby + - state: shine + - type: StaticPrice + price: 200 + +- type: entity + id: GemSapphire + parent: BaseGem + name: sapphire + description: blue and shiny. + components: + - type: Sprite + layers: + - state: sapphire + - state: shine + - type: StaticPrice + price: 200 + +- type: entity + id: GemEmerald + parent: BaseGem + name: emerald + description: green and shiny. + components: + - type: Sprite + layers: + - state: emerald + - state: shine + - type: StaticPrice + price: 200 + +- type: entity + id: GemTopaz + parent: BaseGem + name: topaz + description: orange and shiny. + components: + - type: Sprite + layers: + - state: topaz + - state: shine + - type: StaticPrice + price: 200 + +- type: entity + id: GemRuperiumBroken + parent: BaseGem + name: broken ruperium + description: green... + components: + - type: Sprite + state: rupee_broken + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - type: RadiationSource + intensity: 3 + - type: StaticPrice + price: 60 + +- type: entity + id: GemRuperium + parent: GemRuperiumBroken + name: ruperium + description: green and shiny. + components: + - type: Sprite + layers: + - state: rupee + - state: shine + - type: RadiationSource + enabled: false + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpawnEntitiesBehavior + spawn: + GemRuperiumBroken: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: PointsCapital + points: 500 + - type: StaticPrice + price: 1000 + +- type: entity + id: GemHardenedShell + parent: BaseGem + name: hardened shell + description: yellow and shiny. + components: + - type: Sprite + layers: + - state: magma + - state: shine + - type: PointLight + enabled: true + color: "#f08818" + radius: 1 + - type: ToolRefinable + refineResult: + - id: IngotGold30 + - type: PointsCapital + points: 700 + - type: StaticPrice + price: 1400 + +- type: entity + id: GemStabilizedBaroxuldium + parent: BaseGem + name: stabilized baroxuldium + description: purple and shiny. + components: + - type: Sprite + layers: + - state: phoron + - state: shine + - type: PointLight + enabled: true + color: "#9741d4" + radius: 1 + - type: ToolRefinable + refineResult: + - id: SheetPlasma30 + - type: PointsCapital + points: 1000 + - type: StaticPrice + price: 2000 + +- type: entity + id: GemCompactedDilithium + parent: BaseGem + name: compacted dilithium + description: purple and shiny. + components: + - type: Sprite + layers: + - state: purple + - state: shine + - type: HandheldGPS + - type: PointsCapital + points: 1200 + - type: StaticPrice + price: 2400 + +- type: entity + id: GemDragonPearls + parent: BaseGem + name: dragon pearls + description: yellow and shiny. + components: + - type: Sprite + layers: + - state: amber + - state: shine + - type: PointLight + enabled: true + color: "#ed7626" + radius: 1 + - type: PointsCapital + points: 1400 + - type: StaticPrice + price: 2800 + +- type: entity + id: GemHollowCrystal + parent: BaseGem + name: hollow crystal + description: blue and shiny. + components: + - type: Sprite + layers: + - state: void + - state: shine + - type: PointLight + enabled: true + color: "#4e52f7" + radius: 1 + - type: PointsCapital + points: 1600 + - type: StaticPrice + price: 3200 + +- type: entity + id: GemBloodStone + parent: BaseGem + name: blood stone + description: red and shiny. + components: + - type: Sprite + layers: + - state: red + - state: shine + - type: PointLight + enabled: true + color: "#df2d2d" + radius: 1 + - type: PointsCapital + points: 1800 + - type: StaticPrice + price: 3800 + +- type: entity + id: GemBluespaceDataCrystal + parent: BaseGem + name: bluespace data crystal + description: blue, glitters and dazzles. + components: + - type: Sprite + layers: + - state: data + - state: shine + - type: PointLight + enabled: true + color: "#5583f8" + radius: 4 + - type: PointsCapital + points: 2000 + - type: StaticPrice + price: 4000 + - type: Tag + tags: + - Gems + - DataCrystal diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/_Wega/Entities/Objects/Materials/materials.yml new file mode 100644 index 00000000000..900a46fd118 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Materials/materials.yml @@ -0,0 +1,125 @@ +- type: entity + parent: MaterialBase + id: MaterialSinew + name: sinew + description: "A real hunter's battle trophy." + suffix: Full + components: + - type: Sprite + sprite: _Wega/Objects/Materials/sinew.rsi + layers: + - state: sinew + map: [ "base" ] + - type: StaticPrice + price: 0 + - type: StackPrice + price: 500 + - type: Appearance + - type: Stack + stackType: Sinew + baseLayer: base + layerStates: + - sinew + - sinew_2 + - sinew_3 + - type: Item + size: Large + sprite: _Wega/Objects/Materials/sinew.rsi + shape: + - 0,0,1,1 + - type: Tag + tags: + - MaterialsThrophy + - Sinew + +- type: entity + parent: MaterialSinew + id: MaterialSinew1 + suffix: 1 + components: + - type: Stack + count: 1 + +- type: entity + parent: MaterialBase + id: MaterialChitin + name: chitin + description: "Chitin from some kind of arthropod, nothing more." + suffix: Full + components: + - type: Sprite + sprite: _Wega/Objects/Materials/chitin.rsi + layers: + - state: chitin + map: [ "base" ] + - type: StaticPrice + price: 0 + - type: StackPrice + price: 500 + - type: Appearance + - type: Stack + stackType: Chitin + baseLayer: base + layerStates: + - chitin + - chitin_2 + - chitin_3 + - type: Item + size: Large + sprite: _Wega/Objects/Materials/chitin.rsi + shape: + - 0,0,1,1 + - type: Tag + tags: + - MaterialsThrophy + - Chitin + +- type: entity + parent: MaterialChitin + id: MaterialChitin1 + suffix: 1 + components: + - type: Stack + count: 1 + +- type: entity + parent: MaterialBase + id: MaterialDragonHide + name: dragon hide + description: "Now that's a worthy catch. Proving who you are." + suffix: Full + components: + - type: Sprite + sprite: _Wega/Objects/Materials/dragon_hide.rsi + layers: + - state: dragon_hide + map: [ "base" ] + - type: StaticPrice + price: 0 + - type: StackPrice + price: 2000 + - type: Appearance + - type: Stack + stackType: DragonHide + baseLayer: base + layerStates: + - dragon_hide + - dragon_hide_2 + - dragon_hide_3 + - type: Item + size: Large + sprite: _Wega/Objects/Materials/dragon_hide.rsi + shape: + - 0,0,2,2 + - type: Tag + tags: + - MaterialsThrophy + - DragonHide + +- type: entity + parent: MaterialDragonHide + id: MaterialDragonHide1 + suffix: 1 + components: + - type: Stack + count: 1 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/_Wega/Entities/Objects/Materials/ore.yml new file mode 100644 index 00000000000..76027ce8a53 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Materials/ore.yml @@ -0,0 +1,31 @@ +- type: entity + parent: OreBase + id: MagmiteOre + name: magmite ore + suffix: Full + components: + - type: Stack + stackType: MagmiteOre + - type: Sprite + sprite: _Wega/Objects/Materials/ore.rsi + state: magmite + - type: Material + - type: PhysicalComposition + materialComposition: + RawMagmite: 100 + - type: PointLight + radius: 1.2 + energy: 0.8 + castShadows: false + color: "#df7126" + - type: Tag + tags: + - MagmiteAlloy + +- type: entity + parent: MagmiteOre + id: MagmiteOre1 + suffix: Single + components: + - type: Stack + count: 1 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Misc/capsule.yml b/Resources/Prototypes/_Wega/Entities/Objects/Misc/capsule.yml new file mode 100644 index 00000000000..1ca759e21c0 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Misc/capsule.yml @@ -0,0 +1,24 @@ +- type: entity + parent: BaseItem + id: HandCapsule + name: hand capsule + description: "Your good friend, who saves you when you need it." + components: + - type: Sprite + sprite: _Wega/Objects/Misc/capsule.rsi + state: capsule + - type: HandCapsule + capsulePath: "/Maps/_Wega/Lavaland/capsule.yml" + - type: UseDelay + delay: 5 + +- type: entity + parent: HandCapsule + id: HandLuxuriousCapsule + name: luxurious hand capsule + description: "Your good friend, who saves you when you need it. But more serious." + components: + - type: Sprite + state: gold_capsule + - type: HandCapsule + capsulePath: "/Maps/_Wega/Lavaland/luxuriouscapsule.yml" diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_Wega/Entities/Objects/Misc/identification_cards.yml index 40ffebb2c66..69752f3501f 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Misc/identification_cards.yml @@ -151,6 +151,42 @@ - type: PresetIdCard job: Postman +- type: entity + parent: IDCardStandard + id: MinerIDCard + name: miner ID card + components: + - type: Sprite + layers: + - state: default + - state: stripe_top + color: "#b18644" + - state: stripe_bottom + color: "#5b4523" + - sprite: Interface/Misc/job_icons.rsi + offset: *wega-icon-offset + state: ShaftMiner + - type: PresetIdCard + job: ShaftMiner + +- type: entity + parent: IDCardStandard + id: MinerMedicIDCard + name: miner medic ID card + components: + - type: Sprite + layers: + - state: default + - state: stripe_top + color: "#5d99be" + - state: stripe_bottom + color: "#5b4523" + - sprite: *wega-icon-rsi + offset: *wega-icon-offset + state: ShaftMinerMedic + - type: PresetIdCard + job: ShaftMinerMedic + - type: entity parent: IDCardStandard id: WardenHelperIDCard @@ -167,4 +203,4 @@ offset: *wega-icon-offset state: WardenHelper - type: PresetIdCard - job: WardenHelper \ No newline at end of file + job: WardenHelper diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Hydroponics/seeds.yml index 586b2af1cb8..4b9586e71be 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -28,6 +28,16 @@ - type: Sprite sprite: _Wega/Objects/Specific/Hydroponics/clownflower.rsi +- type: entity + parent: SeedBase + name: packet of fire blossom seeds + id: FireBlossomFlowerSeeds + components: + - type: Seed + seedId: fireblossomflower + - type: Sprite + sprite: _Wega/Objects/Specific/Hydroponics/fireblossom.rsi + - type: entity parent: SeedBase name: packet of money cabbage seeds diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/artefacts.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/artefacts.yml new file mode 100644 index 00000000000..a59d5904b40 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/artefacts.yml @@ -0,0 +1,253 @@ +- type: entity + parent: BaseItem + id: DarkShard + name: dark shard + description: "It looks like something sinister." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/dark_shard.rsi + - type: Item + size: Large + - type: SpawnItemsOnUse + items: + - id: WeaponCursedKatana + sound: + path: /Audio/Effects/demon_dies.ogg + +- type: entity + parent: BaseItem + id: RodOfAsclepius + name: rod of asclepius + description: "An ancient medical symbol. Allows you to take the Hippocratic Oath, which grants a healing aura and surgical skills at the cost of renouncing violence." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/rod_asclepius.rsi + layers: + - state: icon_dormant + map: [ "enum.VisualLayers.Layer" ] + - type: Item + heldPrefix: dormant + size: Normal + - type: RodOfAsclepius + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + enum.VisualLayers.Layer: + True: {state: icon_active} + False: {state: icon_dormant} + +- type: entity + parent: BaseItem + id: ShipInBottle + name: ship in bottle + description: "A mysterious boat sealed in glass. It is said that it can sail through the hottest lava without a single paddle." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/boat_bottle.rsi + layers: + - state: bottle-close + map: [ "enum.VisualLayers.Layer" ] + - type: Item + sprite: _Wega/Objects/Specific/Lavaland/boat_bottle.rsi + storedRotation: 90 + - type: ShipInBottle + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + enum.VisualLayers.Layer: + True: {state: bottle-open} + False: {state: bottle-close} + +- type: entity + parent: BaseItem + id: DustyShard + name: dusty shard + description: "A glowing artifact that can summon a loyal miner-bodyguard. Be careful - your fate is linked to it." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/dusty_shard.rsi + state: icon + - type: GuardianCreator + guardianProto: MobHoloparasiteGuardian + +- type: entity + parent: BaseItem + id: CubeRed + name: red cube + description: "One of a pair of linked teleportation cubes. Using it will take you to the blue cube. Hide the second cube in a safe place!" + suffix: DO NOT MAP + components: + - type: Item + size: Small + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/cube.rsi + state: red + - type: LinkedCube + pairPrototype: CubeBlue + minTeleportDistance: 4 + isPrimary: true + +- type: entity + parent: BaseItem + id: CubeBlue + name: blue cube + description: "One of a pair of linked teleportation cubes. Using it will take you to the red cube. Don't lose touch with your partner!" + suffix: DO NOT MAP + components: + - type: Item + size: Small + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/cube.rsi + state: blue + - type: LinkedCube + pairPrototype: CubeRed + minTeleportDistance: 4 + +- type: entity + parent: BaseItem + id: HierophantClubRod + name: hierophant rod + description: The meek, mysterious artifact sparkles with energy, completely at your disposal, as if a vassal to its suzerain. + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/hierophant_club.rsi + state: icon + - type: Item + sprite: _Wega/Objects/Weapons/Melee/hierophant_club64.rsi + size: Normal + - type: UseDelay + delay: 3 + - type: MeleeWeapon + wideAnimationRotation: 90 + attackRate: 0.75 + damage: + types: + Blunt: 10 + - type: HierophantClub + - type: StaticPrice + price: 5000 + +- type: entity + parent: BaseItem + id: LavaStaffRod + name: staff of lava + description: "The power of fire and stones is in your hands!" + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/lavastaff.rsi + state: icon + - type: Clothing + sprite: _Wega/Objects/Specific/Lavaland/lavastaff.rsi + quickEquip: false + slots: + - Back + - SuitStorage + - type: Item + size: Normal + storedRotation: -45 + - type: MeleeWeapon + attackRate: 0.5 + damage: + types: + Heat: 15 + - type: UseDelay + delay: 10 + - type: LavaStaff + +- type: entity + parent: BaseItem + id: BottleDragonBlood + name: bottle of dragons blood + description: "You're not really going to drink that, are you?" + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/vial.rsi + state: icon + - type: DragonBlood + +- type: entity + parent: BaseItem + id: DivineVocalCordsImplant + name: divine vocal cords + description: "They carry the voice of the ancient god." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/voicegod.rsi + state: icon + - type: VoiceOfGodImplant + - type: SubdermalImplant + - type: Tag + tags: + - DivineVocalCordsImplant + +- type: entity + parent: BaseSword + id: WeaponSpectralBlade + name: spectral blade + description: "A rusty, dull blade. It doesn't look like it will deal much damage. It glows faintly." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/spectral_blade.rsi + - type: Item + storedRotation: -45 + - type: MeleeWeapon + attackRate: 1 + damage: + types: + Slash: 1 + - type: DisarmMalus + - type: SoulStorage + +- type: entity + parent: BaseSword + id: WeaponSpellBlade + name: spellblade + description: "A deadly combination of laziness and bloodlust, this blade allows the user to dismember their enemies without all the hard work of actually swinging the sword." + suffix: DO NOT MAP + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/spell_blade.rsi + - type: Clothing + sprite: _Wega/Objects/Weapons/Melee/spell_blade.rsi + quickEquip: false + slots: + - Back + - SuitStorage + - type: Item + storedRotation: -45 + shape: + - 0,0,1,2 + - type: MeleeWeapon + attackRate: 1 + damage: + types: + Slash: 25 + - type: Gun + soundGunshot: /Audio/Weapons/plasma_cutter.ogg + soundEmpty: null + fireRate: 1 + useKey: false + - type: AmmoCounter + - type: UseDelayOnShoot + - type: UseDelay + delay: 0.9 + - type: BasicEntityAmmoProvider + proto: ProjectileSpellStaff + capacity: 4 + count: 4 + - type: RechargeBasicEntityAmmo + rechargeCooldown: 5 + - type: Reflect + reflectProb: 0.5 + spread: 90 + - type: DisarmMalus diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/throphies.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/throphies.yml new file mode 100644 index 00000000000..9967e142c74 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/throphies.yml @@ -0,0 +1,233 @@ +- type: entity + parent: BaseItem + id: BaseTrophyLavaland + abstract: true + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/trophies.rsi + - type: Item + size: Small + - type: CrusherUpgrade + - type: StaticPrice + price: 250 + - type: Tag + tags: + - CrusherUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandLegionSkull + name: legion skull + description: "The fused skulls of many creatures, united into a single collective entity. Heavy and cold to the touch." + components: + - type: Sprite + state: skull + - type: CrusherUpgrade + tags: [ CrusherUpgradeLegion ] + examineText: crusher-upgrade-examine-text-legion + - type: CrusherLegionSkullUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandGoliathTentacle + name: goliath tentacle + description: "A muscular appendage covered in stone plates. It pulsates with the residual life force of a gigantic creature." + components: + - type: Sprite + state: tendril + - type: CrusherUpgrade + tags: [ CrusherUpgradeGoliath ] + examineText: crusher-upgrade-examine-text-goliath + - type: CrusherGoliathTentacleUpgrade + +- type: entity + parent: TrophyLavalandGoliathTentacle + id: TrophyLavalandAncientGoliathTentacle + name: goliath tentacle + description: "A petrified appendage of an ancient goliath. Its surface is riddled with the cracks of time, but its ancient power still lingers within." + components: + - type: Sprite + state: ancient_tendril + - type: CrusherUpgrade + tags: [ CrusherUpgradeAncientGoliath ] + examineText: crusher-upgrade-examine-text-ancient-goliath + - type: CrusherAncientGoliathTentacleUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandWatcherWing + name: watcher wing + description: "A semi-transparent membranous plane that shimmers with a pearly sheen. It seems almost weightless." + components: + - type: Sprite + state: wing + - type: CrusherUpgrade + tags: [ CrusherUpgradeWatcher ] + examineText: crusher-upgrade-examine-text-watcher + - type: CrusherWatcherWingUpgrade + +- type: entity + parent: TrophyLavalandWatcherWing + id: TrophyLavalandIceWatcherWing + name: ice watcher wing + description: "A crystal wing covered in frost. It exudes a slight chill, and ice patterns constantly form on its surface." + components: + - type: Sprite + state: ice_wing + - type: CrusherUpgrade + tags: [ CrusherUpgradeWatcher ] + examineText: crusher-upgrade-examine-text-ice-watcher + - type: CrusherWatcherWingUpgrade + resetsTime: 2.8 + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandMagmaWatcherWing + name: magma watcher wing + description: "A petrified lava form that still emits heat. Inside, you can see veins of molten rock." + components: + - type: Sprite + state: magma_wing + - type: CrusherUpgrade + tags: [ CrusherUpgradeMagmaWatcher ] + examineText: crusher-upgrade-examine-text-magma-watcher + - type: CrusherMagmaWingUpgrade + damage: + types: + Heat: 5 + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandMarrowWeaverPoisonFang + name: poison fang + description: "The curved fang of a marrow weaver, still slick with pale venom. A faint, chemical smell of marrow and decay clings to it." + components: + - type: Sprite + state: fang + - type: CrusherUpgrade + tags: [ CrusherUpgradeMarrowWeaverPoisonfang ] + examineText: crusher-upgrade-examine-text-marrow-weaver + - type: CrusherPoisonFangUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandFrostbiteWeaverFrostGland + name: frost gland + description: "A pulsating gland from a frostbite weaver, cold enough to numb your fingers. Pale blue ichor frosts the inside of its translucent membrane." + components: + - type: Sprite + state: ice_gland + - type: CrusherUpgrade + tags: [ CrusherUpgradeFrostbiteWeaverFrostGland ] + examineText: crusher-upgrade-examine-text-frostbite-weaver + - type: CrusherFrostGlandUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandBDMEye + name: eye of the blood drunk miner + description: "A cloudy, blood-red eye, with a look of insane rage in its depths. It felt wet and uncomfortably warm to the touch." + components: + - type: Sprite + state: eye + - type: CrusherUpgrade + tags: [ CrusherUpgradeBDM ] + examineText: crusher-upgrade-examine-text-blood-drunk-miner + - type: CrusherEyeBloodDrunkMinerUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandAshDrakeSpike + name: ash drake spike + description: "A massive spike of volcanic glass, streaked with ash. Razor-sharp and incredibly durable." + components: + - type: Sprite + state: spike + - type: Sharp + - type: CrusherUpgrade + tags: [ CrusherUpgradeAshDrake ] + examineText: crusher-upgrade-examine-text-ash-drake + - type: CrusherAshDrakeSpikeUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandBubblegumDemonClaws + name: demon claws + description: "Curved claws covered with a sticky substance. They emit a sweet, rotten smell." + components: + - type: Sprite + state: claws + - type: CrusherUpgrade + tags: [ CrusherUpgradeBubblegum ] + examineText: crusher-upgrade-examine-text-bubblegum + - type: CrusherDemonClawsUpgrade + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandColossusBlasterTubes + name: blaster tubes + description: "A set of oddly shaped metal tubes, still smelling of ozone and burnt. There's a soft hum coming from inside." + components: + - type: Sprite + state: tubes + - type: CrusherUpgrade + tags: [ CrusherUpgradeColossus ] + examineText: crusher-upgrade-examine-text-colossus + - type: CrusherBlasterTubesUpgrade + damage: + types: + Blunt: 10 + +- type: entity + parent: BaseTrophyLavaland + id: TrophyLavalandHierophantVortexTalisman + name: vortex talisman + description: "A cubic artifact made of dark material, with a purple nebula slowly rotating inside. When touched, it seems to vibrate at an inaudible frequency." + components: + - type: Sprite + state: vortex + - type: CrusherUpgrade + tags: [ CrusherUpgradeHierophant ] + examineText: crusher-upgrade-examine-text-hierophant + - type: CrusherVortexTalismanUpgrade + - type: PointLight + color: "#8f00ec" + energy: 40 + radius: 1.2 + +- type: entity + parent: BaseItem + id: LegionCore + name: legion core + description: "A mysterious core filled with some kind of energy. Does it seem to be fading away?" + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/legioncore.rsi + layers: + - state: icon_active + map: [ "enum.VisualLayers.Layer" ] + - type: Item + size: Small + - type: Damageable + damageContainer: Clothing + - type: Reactive + groups: + Special: [ Touch ] + - type: LegionCore + healAmount: + types: + Blunt: -25 + Heat: -25 + internals: + - ArterialBleeding + - ClosedFracture + - OpenFracture + - type: Appearance + - type: GenericVisualizer + visuals: + enum.VisualLayers.Enabled: + enum.VisualLayers.Layer: + True: {state: icon_active} + False: {state: icon_base} + - type: StaticPrice + price: 250 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/tools.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/tools.yml new file mode 100644 index 00000000000..50e26cea157 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/tools.yml @@ -0,0 +1,35 @@ +- type: entity + parent: BaseItem + id: WormholeJaunter + name: jaunter + description: "A tool that creates unstable portals. It can save you if you fall into a hole." + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/jaunter.rsi + state: icon + - type: Clothing + quickEquip: false + slots: [belt] + - type: Jaunter + - type: Item + size: Small + grid: + - 0,0,1,1 + +- type: entity + parent: BaseItem + id: BoneOar + name: bone oar + description: "A paddle made of bones." + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/oar.rsi + state: icon + - type: Item + size: Normal + - type: Construction + graph: BoneOar + node: oar + - type: Tag + tags: + - Oar diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/transfer.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/transfer.yml new file mode 100644 index 00000000000..a2e41a4b254 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Lavaland/transfer.yml @@ -0,0 +1,21 @@ +- type: entity + parent: BaseItem + id: TransferCard500 + name: A card for transferring points + description: "A special binary card that can transfer a certain number of points to a crew member's identification card." + suffix: 500 + components: + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/transfer.rsi + state: icon + - type: PointsCapital + cardTransfer: true + points: 500 + +- type: entity + parent: TransferCard500 + id: TransferCardDebug + suffix: DEBUG + components: + - type: PointsCapital + points: 999999 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/hypospray.yml index 92eecf398e0..2fd0b090245 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/hypospray.yml @@ -62,6 +62,38 @@ emptySpriteName: stimpen_empty - type: Injector solutionName: pen + +- type: entity + parent: ChemicalMedipen + id: SurvivalMedipen + name: survival medipen + description: "A cocktail of powerful healing chemicals. Contains everything you need to get out on your own in an emergency. Using more than one at a time can be dangerous!" + components: + - type: Sprite + sprite: /Textures/_Wega/Objects/Specific/Medical/medipen.rsi + layers: + - state: bluepen + map: [ "enum.SolutionContainerLayers.Fill" ] + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: bluepen_empty + - type: SolutionContainerManager + solutions: + pen: + maxVol: 40 + reagents: + - ReagentId: Leporazine + Quantity: 10 + - ReagentId: LavalandSerum + Quantity: 15 + - ReagentId: Epinephrine + Quantity: 10 + - ReagentId: Omnizine + Quantity: 5 + - type: Injector + solutionName: pen currentTransferAmount: null activeModeProtoId: HyposprayInjectMode allowedModes: @@ -109,4 +141,3 @@ - HyposprayInjectMode - type: StaticPrice price: 1500 - diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/surgery.yml index c34e00e2973..7f680b216cf 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/surgery.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Medical/surgery.yml @@ -52,11 +52,13 @@ components: - type: SolutionContainerManager solutions: - spray: + drink: maxVol: 100 reagents: - ReagentId: Ethanol Quantity: 100 + - type: Label + currentLabel: ethanol - type: Tag tags: - Spray @@ -75,7 +77,7 @@ sprite: _Wega/Objects/Specific/Medical/Surgery/bonesaw.rsi - type: Tool qualities: - - BoneSetter + - BoneSetter - Sawing - BoneGel - type: MeleeWeapon @@ -272,7 +274,7 @@ tags: - Itemborg - SurgeryTool - + - type: entity name: bone gel parent: BoneGel @@ -502,4 +504,4 @@ - type: Tag tags: - Itemborg - - SurgeryTool \ No newline at end of file + - SurgeryTool diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Salvage/trogei_bag.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Salvage/trogei_bag.yml index 0a5cfe79f56..727f11031e5 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Specific/Salvage/trogei_bag.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/Salvage/trogei_bag.yml @@ -23,6 +23,7 @@ areaInsert: true whitelist: tags: + - CrusherUpgrade - SalvageScrap - GoliathPlate - ToothSharkminnow @@ -30,7 +31,8 @@ - Ring - Coin - Kubok + - MaterialsThrophy components: - CursedMask - type: Dumpable - - type: MagnetPickup \ No newline at end of file + - type: MagnetPickup diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/chemistry-bottles.yml new file mode 100644 index 00000000000..4b9b9d74f8c --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/chemistry-bottles.yml @@ -0,0 +1,14 @@ +- type: entity + id: ChemistryBottleStabilizingSerumP + suffix: stabilizing serum + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-stabilizing-serum-potion + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: StabilizingSerumPotion + Quantity: 30 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Specific/vouchercards.yml b/Resources/Prototypes/_Wega/Entities/Objects/Specific/vouchercards.yml index 341794e2c47..613cf2bceda 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Specific/vouchercards.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Specific/vouchercards.yml @@ -27,3 +27,20 @@ - SecurityFirstAidKit - SecurityRiotsKit - SecuritySupervisionKit + +- type: entity + parent: BaseVoucherCard + id: SalvageVoucherCard + name: salvage voucher card + description: "Exchange it at a special terminal for a set of equipment for working in dangerous conditions." + components: + - type: Sprite + sprite: _Wega/Objects/Misc/vouchers.rsi + state: salvage + - type: VoucherCard + typeVoucher: Salvage + kits: + - SurvivalExplorerKit + - SurvivalFultonKit + - SurvivalCrusherKit + - SurvivalBaseKit diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Tools/pka_upgrade.yml b/Resources/Prototypes/_Wega/Entities/Objects/Tools/pka_upgrade.yml new file mode 100644 index 00000000000..f8aaa2100f0 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Tools/pka_upgrade.yml @@ -0,0 +1,32 @@ +- type: entity + id: PKAUpgradeAoE + parent: BasePKAUpgrade + name: PKA modkit (aoe) + components: + - type: Sprite + layers: + - state: base + - state: overlay-1 + color: "#ec9b2d" + - state: overlay-2 + color: "#a71010" + - state: overlay-3 + color: "#eb4c13" + - type: GunUpgrade + tags: [ GunUpgradeAoE ] + examineText: gun-upgrade-examine-text-aoe + - type: GunUpgradeAoE + +- type: entity + id: PKAUpgradeLifesteal + parent: BasePKAUpgrade + name: crystal of vampirism + components: + - type: Sprite + sprite: _Wega/Objects/Tools/upgrade.rsi + state: modkit_crystal + - type: GunUpgrade + tags: [ GunUpgradeLifesteal ] + examineText: gun-upgrade-examine-text-lifesteal + - type: GunUpgradeLifesteal + stealAmount: 2.5 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/_Wega/Entities/Objects/Vehicles/buckleable.yml index c7bb1d25023..d1a8565efa3 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Vehicles/buckleable.yml @@ -451,3 +451,72 @@ components: - type: Foldable folded: true + +- type: entity + parent: BaseVehicleRideable + id: VehicleBoat + name: goliath boat + description: "A boat made of wood and goliath's skin. You need an oar to use it." + components: + - type: Sprite + sprite: _Wega/Objects/Vehicles/boat.rsi + layers: + - state: boat + map: ["enum.VehicleVisualLayers.AutoAnimate"] + noRot: true + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 10 + max: 15 + MaterialGoliathHide1: + min: 1 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - type: Boat + - type: Vehicle + hasKey: true + southOver: true + northOver: true + northOverride: -0.1 + southOverride: 0.1 + - type: MovementSpeedModifier + baseAcceleration: 1 + baseFriction: 1 + baseWalkSpeed: 4.5 + baseSprintSpeed: 7 + - type: Strap + buckleOffset: "0.1, -0.05" + - type: Construction + graph: VehicleBoat + node: boat + +- type: entity + parent: VehicleBoat + id: VehicleDragonBoat + name: dragon boat + description: "A mysterious vessel that can glide effortlessly through molten lava. It requires no oars and seems to move of its own accord." + components: + - type: Sprite + layers: + - state: dragon_boat + map: ["enum.VehicleVisualLayers.AutoAnimate"] + noRot: true + - type: Boat + requiredOal: false diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Basic/pka.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Basic/pka.yml new file mode 100644 index 00000000000..3b8fefde636 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Basic/pka.yml @@ -0,0 +1,42 @@ +- type: entity + id: WeaponProtoKineticAcceleratorBDM + parent: WeaponProtoKineticAccelerator + categories: [ HideSpawnMenu ] + components: + - type: DeleteOnDrop + - type: SpawnOnDelete + prototype: WeaponProtoKineticAccelerator + - type: Gun + fireRate: 0.5 + selectedMode: SemiAuto + angleDecay: 0 + minAngle: 0 + maxAngle: 0 + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/kinetic_accel.ogg + projectileSpeed: 25 + +- type: entity + name: magmite proto-kinetic accelerator + id: WeaponMagmiteProtoKineticAccelerator + parent: WeaponProtoKineticAccelerator + description: Fires low-damage kinetic bolts at a short range. It has the largest capacity for improvements. + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi + layers: + - state: icon + - state: animation-icon + visible: false + map: [ "empty-icon" ] + - type: Item + sprite: _Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi + - type: Clothing + sprite: _Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi + - type: UpgradeableGun + maxUpgradeCount: 4 + whitelist: + tags: + - PKAUpgrade diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index cfb16d77dd2..e2438284f3c 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -118,3 +118,158 @@ - type: Tag tags: - Sidearm + +- type: entity + name: plasma cutter + parent: BaseWeaponBatterySmall + id: WeaponPlasmaCutter + description: A good mining tool that can help to break through the rocks really fast + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Plasma/cutter.rsi + state: icon + - type: Gun + fireRate: 1 + soundGunshot: + path: /Audio/_Wega/Weapons/Guns/Gunshots/plasma_cutter.ogg + - type: Item + size: Normal + shape: + - 0,0,2,1 + - type: Battery + maxCharge: 1500 + startingCharge: 1500 + - type: BatterySelfRecharger + autoRechargeRate: 25 + - type: BatteryAmmoProvider + proto: BulletPlasmaCutter + fireCost: 75 + - type: Appearance + +- type: entity + parent: WeaponPlasmaCutter + id: WeaponPlasmaCutterEmpty + suffix: Empty + components: + - type: Battery + maxCharge: 1500 + startingCharge: 0 + +- type: entity + name: plasma cutter adv + parent: WeaponPlasmaCutter + id: WeaponPlasmaCutterAdv + description: A good mining tool that can help to break through the rocks really fast + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi + state: icon + - type: Gun + fireRate: 1.5 + - type: Battery + maxCharge: 2500 + startingCharge: 2500 + - type: BatteryAmmoProvider + proto: BulletPlasmaCutterAdv + fireCost: 75 + +- type: entity + parent: WeaponPlasmaCutterAdv + id: WeaponPlasmaCutterAdvEmpty + suffix: Empty + components: + - type: Battery + maxCharge: 2500 + startingCharge: 0 + +- type: entity + parent: BaseWeaponBatterySmall + id: WeaponIndustrialFanPlasmaCutter + name: industrial fan cutter + description: A plasma cutter that shoots 'buckshot'. + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-2 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: MagazineVisuals + zeroVisible: true + magState: mag + steps: 3 + - type: Appearance + - type: Clothing + sprite: _Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi + - type: Gun + fireRate: 1 + soundGunshot: + path: /Audio/_Wega/Weapons/Guns/Gunshots/plasma_cutter.ogg + - type: BatteryAmmoProvider + proto: BulletPlasmaCutterSpreadNarrow + fireCost: 80 + - type: Battery + maxCharge: 480 + startingCharge: 480 + - type: BatterySelfRecharger + autoRechargeRate: 5 + - type: Item + size: Normal + shape: + - 0,0,2,1 + +- type: entity + parent: WeaponIndustrialFanPlasmaCutter + id: WeaponIndustrialFanPlasmaCutterEmpty + suffix: Empty + components: + - type: Battery + maxCharge: 480 + startingCharge: 0 + +- type: entity + parent: WeaponPlasmaCutter + id: WeaponMagmitePlasmaCutter + name: magmite plasmacutter + description: "A magmitic version of a conventional plasma cutter. At what cost?" + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi + layers: + - state: icon + - state: icon-uncharged + visible: false + map: [ "empty-icon" ] + - type: Gun + fireRate: 1.75 + - type: Battery + maxCharge: 5000 + startingCharge: 5000 + - type: BatteryAmmoProvider + proto: BulletPlasmaCutterMagma + fireCost: 100 + - type: StaticPrice + price: 3000 + +- type: entity + parent: WeaponIndustrialFanPlasmaCutter + id: WeaponMagmiteFanPlasmaCutter + name: magmite fan cutter + description: "A magmitic version of a conventional fan cutter. At what cost?" + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi + - type: Gun + fireRate: 1.75 + - type: Battery + maxCharge: 960 + startingCharge: 960 + - type: BatteryAmmoProvider + proto: BulletPlasmaCutterMagmaSpreadNarrow + fireCost: 80 + - type: BatterySelfRecharger + autoRechargeRate: 20 + - type: StaticPrice + price: 3000 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index baa3cd3ac1d..52c4f6304d4 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -22,4 +22,53 @@ Quantity: 1.5 - type: SolutionInjectOnProjectileHit transferAmount: 1.5 - solution: bolt \ No newline at end of file + solution: bolt + +- type: entity + parent: BaseBullet + id: BulletMagmaCharge + name: charge bolt + description: Marks a target for additional damage. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + noRot: false + sprite: _Wega/Objects/Weapons/Guns/Projectiles/magic.rsi + layers: + - state: magmabolt + shader: unshaded + - type: DamageMarkerOnCollide + whitelist: + components: + - MobState + damage: + types: + Blunt: 20 + Slash: 5 + - type: ProjectilePressure # Corvax-Wega-Lavaland + - type: GatheringProjectile + amount: 4 + - type: Projectile + deleteOnCollide: false + impactEffect: BulletImpactEffectKinetic + damage: + types: + Blunt: 0 + Structural: 50 + - type: TimedDespawn + lifetime: 0.4 + +- type: entity + parent: BaseBullet + id: ProjectileSpellStaff + name: "" + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Projectiles/magic.rsi + layers: + - state: lavastaff + - type: Projectile + damage: + types: + Slash: 15 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/plasma_cutter.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/plasma_cutter.yml index 49fac0807cf..45476cf0983 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/plasma_cutter.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/plasma_cutter.yml @@ -1,65 +1,88 @@ -- type: entity - name: plasma cutter - parent: BaseWeaponBatterySmall - id: WeaponPlasmaCutter - description: A good mining tool that can help to break through the rocks really fast - components: - - type: Sprite - sprite: _Wega/Objects/Weapons/Guns/Plasma/cutter.rsi - state: icon - - type: Gun - fireRate: 1 - soundGunshot: - path: /Audio/_Wega/Weapons/Guns/Gunshots/plasma_cutter.ogg - - type: Item - size: Normal - shape: - - 0,0,2,1 - - type: Battery - maxCharge: 1500 - startingCharge: 1500 - - type: BatterySelfRecharger - autoRechargeRate: 25 - - type: BatteryAmmoProvider - proto: BulletPlasmaCutter - fireCost: 75 - - type: Appearance - -- type: entity - parent: WeaponPlasmaCutter - id: WeaponPlasmaCutterEmpty - suffix: Empty - components: - - type: Battery - maxCharge: 1500 - startingCharge: 0 - - type: entity id: BulletPlasmaCutter name: cutter bolt parent: BaseBullet description: A projectile of dectruction energy. + categories: [ HideSpawnMenu ] components: - type: Sprite noRot: false sprite: _Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi + color: "#03deff" layers: - - state: icon + - state: plasma shader: unshaded + - type: GatheringProjectile + amount: 4 - type: Projectile deleteOnCollide: false penetrationThreshold: 900 damage: types: - Heat: 5 + Heat: 2.5 Structural: 30 penetrationDamageTypeRequirement: - Structural - type: StaminaDamageOnCollide - damage: 10 + damage: 1 - type: TimedDespawn lifetime: 0.2 - type: PointLight - radius: 1 + energy: 4 + radius: 2 color: blue - energy: 1 + +- type: entity + parent: BulletPlasmaCutter + id: BulletPlasmaCutterAdv + name: cutter bolt + description: A projectile of dectruction energy. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + color: "#ffffff" + - type: TimedDespawn + lifetime: 0.4 + - type: PointLight + color: violet + +- type: entity + parent: BulletPlasmaCutter + id: BulletPlasmaCutterMagma + name: cutter bolt + description: A projectile of dectruction energy. + categories: [ HideSpawnMenu ] + components: + - type: Sprite + color: red + - type: TimedDespawn + lifetime: 0.6 + - type: PointLight + color: red + - type: Projectile + damage: + types: + Heat: 2.5 + Structural: 60 + +- type: entity + name: plasma cutter barrage + id: BulletPlasmaCutterSpreadNarrow + categories: [ HideSpawnMenu ] + parent: BulletPlasmaCutter + components: + - type: ProjectileSpread + proto: BulletPlasmaCutter + count: 4 + spread: 10 + +- type: entity + name: plasma cutter barrage + id: BulletPlasmaCutterMagmaSpreadNarrow + categories: [ HideSpawnMenu ] + parent: BulletPlasmaCutterMagma + components: + - type: ProjectileSpread + proto: BulletPlasmaCutterMagma + count: 4 + spread: 10 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/specific.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/specific.yml new file mode 100644 index 00000000000..00a24cf58dd --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Guns/Projectiles/specific.yml @@ -0,0 +1,53 @@ +- type: entity + parent: BaseBullet + id: BulletColossus + name: "..." + categories: [ HideSpawnMenu ] + components: + - type: Projectile + ignoreResistances: true + ignoreTargeted: true + damage: + types: + Blunt: 25 #JUDGEMENT! + - type: Sprite + sprite: _Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi + layers: + - state: throwing_knife + +- type: entity + id: BulletAshDrakeFire + name: "how did you see this?" + categories: [ HideSpawnMenu ] + components: + - type: Reflective + - type: FlyBySound + - type: Clickable + - type: Physics + bodyType: Dynamic + linearDamping: 0 + angularDamping: 0 + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.10,0.1,0.30" + hard: false + mask: + - Impassable + fly-by: + shape: !type:PhysShapeCircle + radius: 1.5 + layer: + - Impassable + hard: False + - type: Projectile + damage: + types: + Blunt: 0 + - type: TimedSpawner + prototypes: ["EffectAshDrakeFire"] + intervalSeconds: 0.1 + - type: TimedDespawn + lifetime: 4 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/knife.yml index 4c0222cce7c..37131b8ff00 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/knife.yml @@ -79,4 +79,39 @@ - type: ClothingSpeedModifier walkModifier: 1.1 sprintModifier: 1.1 - - type: HeldSpeedModifier \ No newline at end of file + - type: HeldSpeedModifier + +- type: entity + parent: BaseItem + id: WeaponCleawingSaw + name: cleawing saw + description: "A fast-paced saw made from very old and rusty metal." + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/cleaving_saw.rsi + state: icon + - type: Item + storedRotation: -45 + size: Small + - type: Sharp + - type: Execution + doAfterDuration: 4.0 + canGunExecute: false # Corvax-Wega-Suicide + - type: Utensil + types: + - Knife + - type: Tool + qualities: + - Sawing + useSound: + path: /Audio/Items/Culinary/chop.ogg + - type: MeleeWeapon + possibilityWideAtack: false + attackRate: 2.25 + damage: + types: + Slash: 10 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: DisarmMalus + malus: 0 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/mining.yml new file mode 100644 index 00000000000..67b99b26aed --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/mining.yml @@ -0,0 +1,78 @@ +- type: entity + parent: WeaponCrusher + id: WeaponMagmiteCrusher + name: magmite crusher + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher.rsi + layers: + - state: icon + - state: icon-uncharged + visible: false + map: [ "empty-icon" ] + - type: Item + size: Ginormous + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher.rsi + - type: Clothing + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher.rsi + quickEquip: false + slots: + - Back + - suitStorage + - type: LeechOnMarker + leech: + groups: + Brute: -12 + - type: PointLight + color: "#df7126" + - type: BasicEntityAmmoProvider + proto: BulletMagmaCharge + capacity: 1 + count: 1 + - type: MeleeWeapon + attackRate: 1.5 + wideAnimationRotation: -135 + damage: + types: + Blunt: 10 + Slash: 6 + soundHit: + collection: MetalThud + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 5 + Slash: 5 + Structural: 60 + - type: StaticPrice + price: 2850 + +- type: entity + parent: WeaponMagmiteCrusher + id: WeaponMagmiteCrusherGlaive + name: crusher glaive + description: An early design of the proto-kinetic accelerator, in glaive form. + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi + - type: Item + size: Ginormous + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi + - type: Clothing + sprite: _Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi + quickEquip: false + slots: + - back + - suitStorage + - type: UseDelay + delay: 1.9 + - type: LeechOnMarker + leech: + groups: + Brute: -16 + - type: MeleeWeapon + - type: Tag + tags: + - Pickaxe + - type: StaticPrice + price: 2850 diff --git a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/sword.yml index ca71dce0264..7d438791af7 100644 --- a/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/_Wega/Entities/Objects/Weapons/Melee/sword.yml @@ -164,3 +164,23 @@ raffle: settings: default - type: GhostTakeoverAvailable + +- type: entity + parent: BaseSword + id: WeaponCursedKatana + name: cursed katana + description: A katana used to seal something vile away long ago. Even with the weapon destroyed, all the pieces containing the creature have coagulated back together to find a new host. + components: + - type: Sprite + sprite: _Wega/Objects/Weapons/Melee/cursed_katana.rsi + - type: MeleeWeapon + attackRate: 2 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Item + shape: + - 0,0,0,3 + - type: DisarmMalus diff --git a/Resources/Prototypes/_Wega/Entities/Stations/base.yml b/Resources/Prototypes/_Wega/Entities/Stations/base.yml new file mode 100644 index 00000000000..a01b3fa5024 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Stations/base.yml @@ -0,0 +1,8 @@ +- type: entity + id: BaseStationLavaland + abstract: true + components: + - type: StationLavaland + biome: Lavaland + - type: StationLavalandShuttle + - type: StationLavalandPenalServitudeShuttle diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Decoration/statues.yml b/Resources/Prototypes/_Wega/Entities/Structures/Decoration/statues.yml new file mode 100644 index 00000000000..5ac26bd25e6 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Decoration/statues.yml @@ -0,0 +1,67 @@ +- type: entity + parent: BaseStructure + id: StatueAshDrake + name: statue of dragon + description: "That's a drake statue. A towering basalt sculpture of a proud and regal drake. Its eyes are six glowing gemstones." + components: + - type: Sprite + noRot: true + sprite: _Wega/Structures/Decoration/statues.rsi + state: drake + drawdepth: Mobs + offset: "0.0,0.5" + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 800 + behaviors: + - !type:PlaySoundBehavior + sound: + path: "/Audio/Effects/break_stone.ogg" + params: + volume: -3 + - !type:SpawnEntitiesBehavior + spawn: + GemHardenedShell: + min: 2 + max: 3 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: BaseStructure + id: StatueAshDrakeFalling + name: broken statue of dragon + description: "That's a drake statue. A towering basalt sculpture of a drake. Cracks run down its surface and parts of it have fallen off." + components: + - type: Sprite + noRot: true + sprite: _Wega/Structures/Decoration/statues.rsi + state: drake_falling + drawdepth: Mobs + offset: "0.0,0.5" + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 250 + behaviors: + - !type:PlaySoundBehavior + sound: + path: "/Audio/Effects/break_stone.ogg" + params: + volume: -3 + - !type:SpawnEntitiesBehavior + spawn: + GemHardenedShell: + min: 0 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_Wega/Entities/Structures/Doors/Airlocks/access.yml new file mode 100644 index 00000000000..d2f7977c421 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Doors/Airlocks/access.yml @@ -0,0 +1,43 @@ +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassShuttleLavalandStation + suffix: External, Lavaland, Glass, Station + components: + - type: PriorityDock + tag: DockLavalandStation + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassShuttleLavalandOutpost + suffix: External, Lavaland, Glass, Outpost + components: + - type: PriorityDock + tag: DockLavalandOutpost + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassPenalServitudeShuttleLavalandStation + suffix: External, Lavaland, Glass, Penal servitude, Station + components: + - type: PriorityDock + tag: DockPenalServitudeStation + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassPenalServitudeShuttleLavaland + suffix: External, Lavaland, Glass, Penal servitude + components: + - type: PriorityDock + tag: DockPenalServitude + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_Wega/Entities/Structures/Machines/Computers/computers.yml index 96024bf42a5..392f3d1b47f 100644 --- a/Resources/Prototypes/_Wega/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_Wega/Entities/Structures/Machines/Computers/computers.yml @@ -102,3 +102,81 @@ radius: 1.5 energy: 1.6 color: "#b53ca1" + +- type: entity + parent: BaseComputerAiAccess + id: LavalandShuttleConsole + name: lavaland shuttle console + description: "Use this terminal to call a shuttle to Lavaland, where the real adventure begins." + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: mining + - map: ["computerLayerKeys"] + state: mining_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: LavalandShuttleConsole + - type: ActivatableUI + singleUser: true + key: enum.LavalandShuttleConsoleUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + enum.LavalandShuttleConsoleUiKey.Key: + type: LavalandShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + - type: ApcPowerReceiver + powerLoad: 250 + - type: Computer + board: LavalandShuttleComputerCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b53ca1" + +- type: entity + parent: BaseComputerAiAccess + id: PenalServitudeLavalandShuttleConsole + name: penal servitude lavaland shuttle console + description: "Use this terminal to call a shuttle to Lavaland, where the real adventure begins." + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: security + - map: ["computerLayerKeys"] + state: security_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: PenalServitudeShuttleConsole + - type: ActivatableUI + singleUser: true + key: enum.PenalServitudeLavalandShuttleConsoleUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + enum.PenalServitudeLavalandShuttleConsoleUiKey.Key: + type: LavalandPenalServitudeShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + - type: ApcPowerReceiver + powerLoad: 250 + - type: Computer + board: LavalandPenalServitudeShuttleComputerCircuitboard + - type: AccessReader + access: [["Security"]] + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b53ca1" diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_Wega/Entities/Structures/Machines/lathe.yml index f2bb897e078..1c7d93b1940 100644 --- a/Resources/Prototypes/_Wega/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/_Wega/Entities/Structures/Machines/lathe.yml @@ -7,4 +7,57 @@ - type: Sprite sprite: _Wega/Structures/Machines/hyperconv_exosuit_fabricator.rsi - type: Machine - board: ExosuitFabricatorHyperConvectionMachineCircuitboard \ No newline at end of file + board: ExosuitFabricatorHyperConvectionMachineCircuitboard + +- type: entity + id: MagmiteAnvil + name: magmite anvil + description: "It looks like a very old anvil. I wonder what it's doing here and who worked on it?" + placement: + mode: SnapgridCenter + components: + - type: Appearance + - type: Animateable + - type: InteractionOutline + - type: Transform + anchored: true + - type: Clickable + - type: GravityAffected + - type: Sprite + sprite: _Wega/Structures/Machines/anvil.rsi + snapCardinals: true + layers: + - state: anvil + map: ["enum.LatheVisualLayers.IsRunning"] + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer + - type: Lathe + idleState: anvil + runningState: anvil_a + staticPacks: + - MagmiteEquipment + - type: MaterialStorage + whitelist: + tags: + - MagmiteAlloy + - type: ActivatableUI + key: enum.LatheUiKey.Key + - type: UserInterface + interfaces: + enum.LatheUiKey.Key: + type: LatheBoundUserInterface + - type: StaticPrice + price: 800 + - type: ResearchClient + - type: TechnologyDatabase diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/_Wega/Entities/Structures/Machines/telecomms.yml new file mode 100644 index 00000000000..a6237881794 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Machines/telecomms.yml @@ -0,0 +1,11 @@ +- type: entity + parent: TelecomServer + id: TelecomServerFilledLavaland + suffix: Lavaland + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeyCargo + - EncryptionKeyMedical diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/_Wega/Entities/Structures/Machines/vending_machines.yml index 5b21f7df466..6ba1725c053 100644 --- a/Resources/Prototypes/_Wega/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/_Wega/Entities/Structures/Machines/vending_machines.yml @@ -92,3 +92,16 @@ - type: Store balance: Credit: 5000 + +- type: entity + parent: VendingMachine + id: VendingMachineTankDispenserExtO2 + suffix: More O2 + name: gas tank dispenser + description: A vendor for dispensing gas tanks. + components: + - type: VendingMachine + pack: TankDispenserExtO2Inventory + - type: Sprite + sprite: Structures/Machines/VendingMachines/tankdispenser.rsi #TODO add visualiser for remaining tanks as layers + state: dispenser diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/flora.yml b/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/flora.yml new file mode 100644 index 00000000000..382a8fc4713 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/flora.yml @@ -0,0 +1,447 @@ +- type: entity + id: BaseLavalandFlora + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + sprite: _Wega/Objects/Specific/Lavaland/flora.rsi + noRot: true + - type: Physics + bodyType: Static + - type: Transform + anchored: true + - type: Rotatable + - type: Flora + - type: Appearance + +# Cactus +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraCactus1 + name: barrel cactus + description: "A prickly desert dweller that stores moisture in its fleshy stems. It sometimes produces juicy fruits." + components: + - type: Sprite + layers: + - state: cactus1 + map: ["flora"] + - type: Flora + harvestPrototype: FoodFloraCactusFruit + maxYield: 1 + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: cactus1 } + Harvested: { state: cactus1h } + - type: CollisionWake + enabled: false + - type: Fixtures + fixtures: + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + density: 30 + mask: + - ItemMask + - type: Slippery + slipData: + launchForwardsMultiplier: 0 + - type: StepTrigger + intersectRatio: 0.2 + - type: PreventableStepTrigger + - type: TriggerOnStepTrigger + - type: DamageOnTrigger + targetUser: true + damage: + types: + Piercing: 4.5 + +- type: entity + parent: LavalandFloraCactus1 + id: LavalandFloraCactus2 + components: + - type: Sprite + layers: + - state: cactus2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: cactus2 } + Harvested: { state: cactus2h } + +- type: entity + parent: LavalandFloraCactus1 + id: LavalandFloraCactus3 + components: + - type: Sprite + layers: + - state: cactus3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: cactus3 } + Harvested: { state: cactus3h } + +- type: entity + parent: LavalandFloraCactus1 + id: LavalandFloraCactus4 + components: + - type: Sprite + layers: + - state: cactus4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: cactus4 } + Harvested: { state: cactus4h } + +# Fire Blossom +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraFireBlossom1 + name: fire blossom + description: "A bright, luminescent flower, incredibly beautiful." + components: + - type: Sprite + layers: + - state: fireblossom1 + map: ["flora"] + - type: Flora + harvestPrototype: FlowerFireBlossom + maxYield: 1 + - type: PointLight + radius: 1.2 + energy: 2 + color: "#F54900" + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: fireblossom1 } + Harvested: { state: fireblossom1h } + +- type: entity + parent: LavalandFloraFireBlossom1 + id: LavalandFloraFireBlossom2 + components: + - type: Sprite + layers: + - state: fireblossom2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: fireblossom2 } + Harvested: { state: fireblossom2h } + +- type: entity + parent: LavalandFloraFireBlossom1 + id: LavalandFloraFireBlossom3 + components: + - type: Sprite + layers: + - state: fireblossom3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: fireblossom3 } + Harvested: { state: fireblossom3h } + +- type: entity + parent: LavalandFloraFireBlossom1 + id: LavalandFloraFireBlossom4 + components: + - type: Sprite + layers: + - state: fireblossom4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: fireblossom4 } + Harvested: { state: fireblossom4h } + +# Polypore Mushroom +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraPolyporeMushroom1 + name: wood tinder box + description: "A tough parasitic fungus that grows in tiers on dead wood. It can be carefully cut off." + components: + - type: Sprite + layers: + - state: l_mushroom1 + map: ["flora"] + - type: Flora + harvestPrototype: FoodFloraPolyporeMushroom + specialTool: Slicing + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: l_mushroom1 } + Harvested: { state: l_mushroom1h } + +- type: entity + parent: LavalandFloraPolyporeMushroom1 + id: LavalandFloraPolyporeMushroom2 + components: + - type: Sprite + layers: + - state: l_mushroom2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: l_mushroom2 } + Harvested: { state: l_mushroom2h } + +- type: entity + parent: LavalandFloraPolyporeMushroom1 + id: LavalandFloraPolyporeMushroom3 + components: + - type: Sprite + layers: + - state: l_mushroom3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: l_mushroom3 } + Harvested: { state: l_mushroom3h } + +- type: entity + parent: LavalandFloraPolyporeMushroom1 + id: LavalandFloraPolyporeMushroom4 + components: + - type: Sprite + layers: + - state: l_mushroom4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: l_mushroom4 } + Harvested: { state: l_mushroom4h } + +# Inocybe Mushroom +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraInocybeMushroom1 + name: pale fire mushroom + description: "A fragile mushroom with a cracked cap that emits a subtle glow. It contains powerful psychoactive substances and toxins." + components: + - type: Sprite + layers: + - state: r_mushroom1 + map: ["flora"] + - type: Flora + harvestPrototype: FoodFloraInocybeMushroom + specialTool: Slicing + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: r_mushroom1 } + Harvested: { state: r_mushroom1h } + +- type: entity + parent: LavalandFloraInocybeMushroom1 + id: LavalandFloraInocybeMushroom2 + components: + - type: Sprite + layers: + - state: r_mushroom2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: r_mushroom2 } + Harvested: { state: r_mushroom2h } + +- type: entity + parent: LavalandFloraInocybeMushroom1 + id: LavalandFloraInocybeMushroom3 + components: + - type: Sprite + layers: + - state: r_mushroom3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: r_mushroom3 } + Harvested: { state: r_mushroom3h } + +- type: entity + parent: LavalandFloraInocybeMushroom1 + id: LavalandFloraInocybeMushroom4 + components: + - type: Sprite + layers: + - state: r_mushroom4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: r_mushroom4 } + Harvested: { state: r_mushroom4h } + +# Porcini Mushroom +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraPorciniMushroom1 + name: smoky boletus + description: "A strong edible mushroom known for its distinctive aroma. It has a slight stimulating effect." + components: + - type: Sprite + layers: + - state: s_mushroom1 + map: ["flora"] + - type: Flora + harvestPrototype: FoodFloraPorciniMushroom + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: s_mushroom1 } + Harvested: { state: s_mushroom1h } + +- type: entity + parent: LavalandFloraPorciniMushroom1 + id: LavalandFloraPorciniMushroom2 + components: + - type: Sprite + layers: + - state: s_mushroom2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: s_mushroom2 } + Harvested: { state: s_mushroom2h } + +- type: entity + parent: LavalandFloraPorciniMushroom1 + id: LavalandFloraPorciniMushroom3 + components: + - type: Sprite + layers: + - state: s_mushroom3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: s_mushroom3 } + Harvested: { state: s_mushroom3h } + +- type: entity + parent: LavalandFloraPorciniMushroom1 + id: LavalandFloraPorciniMushroom4 + components: + - type: Sprite + layers: + - state: s_mushroom4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: s_mushroom4 } + Harvested: { state: s_mushroom4h } + +# Embershroom +- type: entity + parent: BaseLavalandFlora + id: LavalandFloraEmbershroom1 + name: charcoal-fire tinder fungus + description: "A heavy, almost stone-like mushroom with smoldering veins. Its stem contains substances that cause euphoria." + components: + - type: Sprite + layers: + - state: t_mushroom1 + map: ["flora"] + - type: Flora + harvestPrototype: FoodFloraEmbershroom + specialTool: Slicing + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: t_mushroom1 } + Harvested: { state: t_mushroom1h } + +- type: entity + parent: LavalandFloraEmbershroom1 + id: LavalandFloraEmbershroom2 + components: + - type: Sprite + layers: + - state: t_mushroom2 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: t_mushroom2 } + Harvested: { state: t_mushroom2h } + +- type: entity + parent: LavalandFloraEmbershroom1 + id: LavalandFloraEmbershroom3 + components: + - type: Sprite + layers: + - state: t_mushroom3 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: t_mushroom3 } + Harvested: { state: t_mushroom3h } + +- type: entity + parent: LavalandFloraEmbershroom1 + id: LavalandFloraEmbershroom4 + components: + - type: Sprite + layers: + - state: t_mushroom4 + map: ["flora"] + - type: GenericVisualizer + visuals: + enum.FloraVisuals.State: + flora: + Grown: { state: t_mushroom4 } + Harvested: { state: t_mushroom4h } diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/tendril.yml b/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/tendril.yml new file mode 100644 index 00000000000..74b7ec065f0 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Specific/Lavaland/tendril.yml @@ -0,0 +1,85 @@ +- type: entity + parent: BaseStructure + id: NecropolisTendril + name: necropolis tendril + description: "A giant pulsating spike that sprouts from the depths of the planet. It emits an ominous energy and attracts other horrors of this place." + suffix: DO NOT MAP + abstract: true + components: + - type: Sprite + sprite: _Wega/Structures/Specific/Lavaland/tendril.rsi + layers: + - state: tendril + - state: glow + shader: unshaded + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.9,0.3,0.3" + mask: + - MachineMask + layer: + - BulletImpassable + - MidImpassable + - LowImpassable + density: 1000 + - type: PointLight + color: "#df8409" + enabled: true + radius: 2 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Rock + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/demon_dies.ogg + - !type:SpawnEntitiesBehavior + spawn: + CrateNecropolisFilled: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: NecropolisTendril + id: GoliathNecropolisTendril + components: + - type: NecropolisTendril + spawnWeights: + MobGoliath: 1 + - type: ConditionalSpawner + prototypes: + - MobGoliath + +- type: entity + parent: NecropolisTendril + id: LegionNecropolisTendril + components: + - type: NecropolisTendril + spawnWeights: + MobLegionLavaland: 1 + - type: ConditionalSpawner + prototypes: + - MobLegionLavaland + +- type: entity + parent: NecropolisTendril + id: WatchersNecropolisTendril + components: + - type: NecropolisTendril + spawnWeights: + MobWatcherLavaland: 0.99 + MobWatcherMagmawing: 0.0075 + MobWatcherIcewing: 0.0025 + - type: ConditionalSpawner + prototypes: + - MobWatcherLavaland diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/_Wega/Entities/Structures/Storage/Crates/crates.yml new file mode 100644 index 00000000000..3da1c9180eb --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Storage/Crates/crates.yml @@ -0,0 +1,17 @@ +- type: entity + parent: CrateBaseWeldable + id: CrateNecropolis + name: necropolis crate + description: "An ancient sarcophagus that emits an ominous glow. Contains rewards for defeating the horrors of the Necropolis. Has strange protective properties." + components: + - type: Icon + sprite: _Wega/Structures/Storage/Crates/necrocrate.rsi + - type: Sprite + sprite: _Wega/Structures/Storage/Crates/necrocrate.rsi + - type: Reflect + reflects: + - Energy + reflectProb: 0.2 + spread: 90 + - type: RadiationBlockingContainer + resistance: 2.5 diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/_Wega/Entities/Structures/Walls/asteroid.yml new file mode 100644 index 00000000000..404731c440c --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Walls/asteroid.yml @@ -0,0 +1,304 @@ +- type: entity + parent: BaseWall + id: WallRockBasaltIndestructible + suffix: Indestructible + components: + - type: Transform + noRot: true + - type: Icon + sprite: Structures/Walls/rock.rsi + state: rock_wall + - type: IconSmooth + key: walls + mode: NoSprite + - type: MiningScannerViewable + - type: SmoothEdge + - type: Sprite + sprite: Structures/Walls/rock.rsi + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + +- type: entity + id: WallRockBasaltLavalandCoal + parent: WallRockBasalt + suffix: Coal, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreCoal + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_coal + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandGold + parent: WallRockBasalt + suffix: Gold, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreGold + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_gold + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandDiamond + parent: WallRockBasalt + suffix: Diamond, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_diamond + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandPlasma + parent: WallRockBasalt + suffix: Plasma, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OrePlasma + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_phoron + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandQuartz + parent: WallRockBasalt + suffix: Quartz, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreSpaceQuartz + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_quartz + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandSilver + parent: WallRockBasalt + suffix: Silver, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreSilver + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_silver + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandTin + parent: WallRockBasalt + suffix: Iron, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreSteel + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_tin + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandUranium + parent: WallRockBasalt + suffix: Uranium, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreUranium + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_uranium + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandBananium + parent: WallRockBasalt + suffix: Bananium, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBananium + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_bananium + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandGems + parent: WallRockBasalt + suffix: Gems, Lavaland + components: + - type: OreVein + oreChance: 1.0 + oreRarityPrototypeId: RandomGemsDistributionStandard + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_gems + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + id: WallRockBasaltLavalandMagmite + parent: WallRockBasalt + suffix: Magmite, Lavaland + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreMagmite + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_magmite + map: [ "enum.MiningScannerVisualLayers.Overlay" ] + visible: false + +- type: entity + parent: [ BaseRockGibtonite, AsteroidRock ] + id: WallRockBasaltLavalandGibtonite + suffix: Gibtonite, Lavaland + components: + - type: Icon + sprite: Structures/Walls/rock.rsi + state: rock_wall + - type: Sprite + sprite: Structures/Walls/rock.rsi + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: gibtonite_inactive + map: [ "enum.MiningScannerVisualLayers.Overlay", "gib" ] + visible: false diff --git a/Resources/Prototypes/_Wega/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/_Wega/Entities/Structures/Walls/walls.yml new file mode 100644 index 00000000000..6ca13358162 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/Walls/walls.yml @@ -0,0 +1,68 @@ +- type: entity + parent: BaseWall + id: WallHierophantArena + name: hierophant wall + components: + - type: Tag + tags: + - Wall + - type: Sprite + sprite: _Wega/Structures/Walls/hierophant.rsi + - type: Icon + sprite: _Wega/Structures/Walls/hierophant.rsi + - type: Destructible + - type: IconSmooth + key: walls + base: hierophant + - type: PointLight + radius: 5.0 + energy: 1.5 + softness: 1 + castShadows: false + +- type: entity + id: WallHierophantTemporary + name: hierophant field + description: "Keeps the salvager in and... Why are you looking at this in a middle of a fight? You have nothing to do?!" + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: Transform + anchored: true + - type: Clickable + - type: Rotatable + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: Sprite + noRot: true + sprite: _Wega/Structures/Walls/hierophant_temp.rsi + drawdepth: Walls + - type: Icon + sprite: _Wega/Structures/Walls/hierophant_temp.rsi + state: full + - type: IconSmooth + key: hierofield + base: hierotemp + shader: unshaded + - type: PlacementReplacement + key: walls + - type: Occluder + enabled: false + - type: TimedDespawn + lifetime: 10 + - type: Tag + tags: + - Wall diff --git a/Resources/Prototypes/_Wega/Entities/Structures/floors.yml b/Resources/Prototypes/_Wega/Entities/Structures/floors.yml new file mode 100644 index 00000000000..9576968adf3 --- /dev/null +++ b/Resources/Prototypes/_Wega/Entities/Structures/floors.yml @@ -0,0 +1,334 @@ +- type: entity + id: BaseFloorEntity + abstract: true + name: tile + placement: + mode: SnapgridCenter + components: + - type: Physics + bodyType: Static + - type: Anchorable + flags: + - Anchorable + - type: Rotatable + - type: Clickable + - type: Sprite + sprite: _Wega/Structures/floors.rsi + drawdepth: FloorTiles + - type: Transform + anchored: true + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepFloor + params: + volume: 8 + - type: Tag + tags: + - HideContextMenu + - Catwalk + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineTile + components: + - type: Sprite + layers: + - state: pristine_tile1 + - type: RandomSprite + available: + - 0: + pristine_tile1: "" + pristine_tile2: "" + pristine_tile3: "" + pristine_tile4: "" + pristine_tile5: "" + pristine_tile6: "" + pristine_tile7: "" + pristine_tile8: "" + pristine_tile9: "" + pristine_tile10: "" + pristine_tile11: "" + pristine_tile12: "" + pristine_tile13: "" + pristine_tile14: "" + pristine_tile15: "" + pristine_tile16: "" + pristine_tile17: "" + pristine_tile18: "" + pristine_tile19: "" + pristine_tile20: "" + pristine_tile21: "" + pristine_tile22: "" + pristine_tile23: "" + pristine_tile24: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineSlab + components: + - type: Sprite + layers: + - state: pristine_slab1 + - type: RandomSprite + available: + - 0: + pristine_slab1: "" + pristine_slab2: "" + pristine_slab3: "" + pristine_slab4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineBlock + components: + - type: Sprite + layers: + - state: pristine_block1 + - type: RandomSprite + available: + - 0: + pristine_block1: "" + pristine_block2: "" + pristine_block3: "" + pristine_block4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineCenter + components: + - type: Sprite + layers: + - state: pristine_center1 + - type: RandomSprite + available: + - 0: + pristine_center1: "" + pristine_center2: "" + pristine_center3: "" + pristine_center4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineSurrounding + components: + - type: Sprite + layers: + - state: pristine_surrounding1 + - type: RandomSprite + available: + - 0: + pristine_surrounding1: "" + pristine_surrounding2: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityPristineSurroundingTile + components: + - type: Sprite + layers: + - state: pristine_surrounding_tile1 + - type: RandomSprite + available: + - 0: + pristine_surrounding_tile1: "" + pristine_surrounding_tile2: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedTile + components: + - type: Sprite + layers: + - state: cracked_tile1 + - type: RandomSprite + available: + - 0: + cracked_tile1: "" + cracked_tile2: "" + cracked_tile3: "" + cracked_tile4: "" + cracked_tile5: "" + cracked_tile6: "" + cracked_tile7: "" + cracked_tile8: "" + cracked_tile9: "" + cracked_tile10: "" + cracked_tile11: "" + cracked_tile12: "" + cracked_tile13: "" + cracked_tile14: "" + cracked_tile15: "" + cracked_tile16: "" + cracked_tile17: "" + cracked_tile18: "" + cracked_tile19: "" + cracked_tile20: "" + cracked_tile21: "" + cracked_tile22: "" + cracked_tile23: "" + cracked_tile24: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedSlab + components: + - type: Sprite + layers: + - state: cracked_slab1 + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedBlock + components: + - type: Sprite + layers: + - state: cracked_block1 + - type: RandomSprite + available: + - 0: + cracked_block1: "" + cracked_block2: "" + cracked_block3: "" + cracked_block4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedCenter + components: + - type: Sprite + layers: + - state: cracked_center1 + - type: RandomSprite + available: + - 0: + cracked_center1: "" + cracked_center2: "" + cracked_center3: "" + cracked_center4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedSurrounding + components: + - type: Sprite + layers: + - state: cracked_surrounding1 + +- type: entity + parent: BaseFloorEntity + id: FloorEntityCrackedSurroundingTile + components: + - type: Sprite + layers: + - state: cracked_surrounding_tile1 + - type: RandomSprite + available: + - 0: + cracked_surrounding_tile1: "" + cracked_surrounding_tile2: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntTile + components: + - type: Sprite + layers: + - state: burnt_tile1 + - type: RandomSprite + available: + - 0: + burnt_tile1: "" + burnt_tile2: "" + burnt_tile3: "" + burnt_tile4: "" + burnt_tile5: "" + burnt_tile6: "" + burnt_tile7: "" + burnt_tile8: "" + burnt_tile9: "" + burnt_tile10: "" + burnt_tile11: "" + burnt_tile12: "" + burnt_tile13: "" + burnt_tile14: "" + burnt_tile15: "" + burnt_tile16: "" + burnt_tile17: "" + burnt_tile18: "" + burnt_tile19: "" + burnt_tile20: "" + burnt_tile21: "" + burnt_tile22: "" + burnt_tile23: "" + burnt_tile24: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntBlock + components: + - type: Sprite + layers: + - state: burnt_block1 + - type: RandomSprite + available: + - 0: + burnt_block1: "" + burnt_block2: "" + burnt_block3: "" + burnt_block4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntSlab + components: + - type: Sprite + layers: + - state: burnt_slab1 + - type: RandomSprite + available: + - 0: + burnt_slab1: "" + burnt_slab2: "" + burnt_slab3: "" + burnt_slab4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntCenter + components: + - type: Sprite + layers: + - state: burnt_center1 + - type: RandomSprite + available: + - 0: + burnt_center1: "" + burnt_center2: "" + burnt_center3: "" + burnt_center4: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntSurrounding + components: + - type: Sprite + layers: + - state: burnt_surrounding1 + - type: RandomSprite + available: + - 0: + burnt_surrounding1: "" + burnt_surrounding2: "" + +- type: entity + parent: BaseFloorEntity + id: FloorEntityBurntSurroundingTile + components: + - type: Sprite + layers: + - state: burnt_surrounding_tile1 + - type: RandomSprite + available: + - 0: + burnt_surrounding_tile1: "" + burnt_surrounding_tile2: "" diff --git a/Resources/Prototypes/_Wega/Hydroponics/seeds.yml b/Resources/Prototypes/_Wega/Hydroponics/seeds.yml index 14f8284f9f9..e6c23dc8d79 100644 --- a/Resources/Prototypes/_Wega/Hydroponics/seeds.yml +++ b/Resources/Prototypes/_Wega/Hydroponics/seeds.yml @@ -68,6 +68,28 @@ Max: 10 PotencyDivisor: 10 +- type: seed + id: fireblossomflower + name: seeds-fireblossomflower-name + noun: seeds-noun-seeds + displayName: seeds-fireblossomflower-display-name + plantRsi: _Wega/Objects/Specific/Hydroponics/fireblossom.rsi + packetPrototype: FireBlossomFlowerSeeds + productPrototypes: + - FlowerFireBlossom + lifespan: 25 + maturation: 10 + production: 1 + yield: 1 + potency: 10 + growthStages: 3 + waterConsumption: 0.60 + chemicals: + Nutriment: + Min: 1 + Max: 10 + PotencyDivisor: 10 + - type: seed id: moneyCabbage name: seeds-moneyCabbage-name @@ -123,7 +145,7 @@ Max: 5 PotencyDivisor: 20 -- type: seed +- type: seed id: blueSpaceBanana name: seeds-bluespacebanana-name noun: seeds-noun-seeds diff --git a/Resources/Prototypes/_Wega/Loadouts/Jobs/Cargo/miner.yml b/Resources/Prototypes/_Wega/Loadouts/Jobs/Cargo/miner.yml new file mode 100644 index 00000000000..15115a77306 --- /dev/null +++ b/Resources/Prototypes/_Wega/Loadouts/Jobs/Cargo/miner.yml @@ -0,0 +1,35 @@ +# Jumpsuit +- type: loadout + id: ShaftMinerJumpsuitExplorer + equipment: + jumpsuit: ClothingUniformJumpsuitExplorer + +- type: loadout + id: ShaftMinerJumpskirtExplorer + equipment: + jumpsuit: ClothingUniformJumpskirtExplorer + +- type: loadout + id: ShaftMinerJumpsuitExplorerKhaki + equipment: + jumpsuit: ClothingUniformJumpsuitExplorerKhaki + effects: + - !type:GroupLoadoutEffect + proto: SalvageVeterancy + +- type: loadout + id: ShaftMinerJumpskirtExplorerKhaki + equipment: + jumpsuit: ClothingUniformJumpskirtExplorerKhaki + effects: + - !type:GroupLoadoutEffect + proto: SalvageVeterancy + +# OuterClothing +- type: loadout + id: ShaftMinerArmorExplorerSuitKhaki + equipment: + outerClothing: ClothingOuterArmorExplorerSuitKhaki + effects: + - !type:GroupLoadoutEffect + proto: SalvageVeterancy diff --git a/Resources/Prototypes/_Wega/Loadouts/loadout_effects.yml b/Resources/Prototypes/_Wega/Loadouts/loadout_effects.yml index de3e331e484..f64c841b4a2 100644 --- a/Resources/Prototypes/_Wega/Loadouts/loadout_effects.yml +++ b/Resources/Prototypes/_Wega/Loadouts/loadout_effects.yml @@ -20,3 +20,17 @@ - !type:SpeciesLoadoutEffect species: - Android + +- type: loadoutEffectGroup + id: SalvageVeterancy + effects: + - !type:AchievementLoadoutEffect + requiredAchievements: + - FirstBoss + - HierophantBoss + - MinerBoss + - LegionBoss + - ColossusBoss + - AshDrakeBoss + - BubblegumBoss + requireAll: true diff --git a/Resources/Prototypes/_Wega/Loadouts/loadout_groups.yml b/Resources/Prototypes/_Wega/Loadouts/loadout_groups.yml index 6ca30451134..5ce49112237 100644 --- a/Resources/Prototypes/_Wega/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/_Wega/Loadouts/loadout_groups.yml @@ -1101,6 +1101,75 @@ - BackpackSatchelPostman - BackpackDuffelPostman +- type: loadoutGroup + id: ShaftMinerBackpack + name: loadout-group-shaft-miner-backpack + loadouts: + - SalvageSpecialistBackpack + - SalvageSpecialistSatchel + - SalvageSpecialistDuffel + +- type: loadoutGroup + id: ShaftMinerJumpsuit + name: loadout-group-shaft-miner-jumpsuit + loadouts: + - ShaftMinerJumpsuitExplorer + - ShaftMinerJumpskirtExplorer + - ShaftMinerJumpsuitExplorerKhaki + - ShaftMinerJumpskirtExplorerKhaki + +- type: loadoutGroup + id: ShaftMinerOuterClothing + name: loadout-group-shaft-miner-outerclothing + minLimit: 0 + loadouts: + - SalvageSpecialistWintercoat + - ShaftMinerArmorExplorerSuitKhaki # Corvax-Wega-Lavaland + +- type: loadoutGroup + id: ShaftMinerShoes + name: loadout-group-shaft-miner-shoes + loadouts: + - SalvageBoots + - CargoWinterBoots + +- type: loadoutGroup + id: ShaftMinerMedicHead + name: loadout-group-shaft-miner-medic-head + minLimit: 0 + loadouts: + - MedicalBeret + - SeniorPhysicianBeret + - CargoTechnicianHead + # Corvax-Wega-Sponsors-start + - ClothingHeadHatMagic + # Corvax-Wega-Sponsors-end + +- type: loadoutGroup + id: ShaftMinerMedicBackpack + name: loadout-group-shaft-miner-medic-backpack + loadouts: + - MedicalDoctorBackpack + - MedicalDoctorSatchel + - MedicalDoctorDuffel + +- type: loadoutGroup + id: ShaftMinerMedicJumpsuit + name: loadout-group-shaft-miner-medic-jumpsuit + loadouts: + - ShaftMinerJumpsuitExplorer + - ShaftMinerJumpskirtExplorer + - ShaftMinerJumpsuitExplorerKhaki + - ShaftMinerJumpskirtExplorerKhaki + +- type: loadoutGroup + id: ShaftMinerMedicGloves + name: loadout-group-shaft-miner-medic-gloves + minLimit: 0 + loadouts: + - LatexGloves + - NitrileGloves + # Civilian - type: loadoutGroup id: BarberOuterClothing diff --git a/Resources/Prototypes/_Wega/Loadouts/role_loadouts.yml b/Resources/Prototypes/_Wega/Loadouts/role_loadouts.yml index 613590ec39a..db2c401f40b 100644 --- a/Resources/Prototypes/_Wega/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/_Wega/Loadouts/role_loadouts.yml @@ -122,6 +122,47 @@ - Bottom - Socks +- type: roleLoadout + id: JobShaftMiner + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + # Corvax-Wega-Sponsors-start + - SponsorHead + - SponsorNeck + # Corvax-Wega-Sponsors-end + - ShaftMinerBackpack + - ShaftMinerJumpsuit + - ShaftMinerOuterClothing + - ShaftMinerShoes + - Glasses + - Survival + - Trinkets + - GroupSpeciesBreathTool + - Top + - Bottom + - Socks + +- type: roleLoadout + id: JobShaftMinerMedic + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + - ShaftMinerMedicHead + # Corvax-Wega-Sponsors-start + - SponsorNeck + # Corvax-Wega-Sponsors-end + - ShaftMinerMedicBackpack + - ShaftMinerMedicJumpsuit + - ShaftMinerMedicGloves + - Glasses + - Survival + - Trinkets + - GroupSpeciesBreathTool + - Top + - Bottom + - Socks + - type: roleLoadout id: JobWardenHelper groups: @@ -137,4 +178,4 @@ - GroupSpeciesBreathToolSecurity - Top - Bottom - - Socks \ No newline at end of file + - Socks diff --git a/Resources/Prototypes/_Wega/Maps/debug.yml b/Resources/Prototypes/_Wega/Maps/debug.yml new file mode 100644 index 00000000000..3ff9acbfdca --- /dev/null +++ b/Resources/Prototypes/_Wega/Maps/debug.yml @@ -0,0 +1,20 @@ +- type: gameMap + id: WegaLavalandTest + mapName: Lavaland Test + mapPath: /Maps/_Wega/Test/lavatest.yml + minPlayers: 0 + stations: + LavalandTest: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Theta-12 {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TZ' + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" + - type: StationJobs + availableJobs: + ShaftMiner: [ -1, -1 ] + ShaftMinerMedic: [ 4, 4 ] diff --git a/Resources/Prototypes/_Wega/Maps/lavalandbuildings.yml b/Resources/Prototypes/_Wega/Maps/lavalandbuildings.yml new file mode 100644 index 00000000000..d536b169139 --- /dev/null +++ b/Resources/Prototypes/_Wega/Maps/lavalandbuildings.yml @@ -0,0 +1,267 @@ +# No Merged +- type: lavalandBuilding + id: PenalServitude + gridPath: /Maps/_Wega/Lavaland/penalservitude.yml + position: "-50,50" + ignoring: true + merge: false + +- type: lavalandBuilding + id: WinterReserve + gridPath: /Maps/_Wega/Lavaland/winterreserve.yml + merge: false + +- type: lavalandBuilding + id: Biosphere + gridPath: /Maps/_Wega/Lavaland/biosphere.yml + merge: false + +- type: lavalandBuilding + id: Beach + gridPath: /Maps/_Wega/Lavaland/beach.yml + merge: false + +- type: lavalandBuilding + id: PreservedTerrarium + gridPath: /Maps/_Wega/Lavaland/preserved_terrarium.yml + merge: false + +- type: lavalandBuilding + id: GolemsShuttle + gridPath: /Maps/_Wega/Lavaland/golemsshuttle.yml + merge: false + +# Other +- type: lavalandBuilding + id: Necropolis + gridPath: /Maps/_Wega/Lavaland/necropolis.yml + position: "0,400" + ignoring: true + +- type: lavalandBuilding + id: Hierophant + gridPath: /Maps/_Wega/Lavaland/hierophant.yml + approximate: [200, 300] + ignoring: true + +- type: lavalandBuilding + id: Bubblegum + gridPath: /Maps/_Wega/Lavaland/bubblegumspawn.yml + approximate: [150, 250] + ignoring: true + +- type: lavalandBuilding + id: WorldForge + gridPath: /Maps/_Wega/Lavaland/worldforge.yml + approximate: [150, 150] + ignoring: true + +- type: lavalandBuilding + id: Envy + gridPath: /Maps/_Wega/Lavaland/Envy.yml + +- type: lavalandBuilding + id: Gluttony + gridPath: /Maps/Lavaland/Gluttony.yml + +- type: lavalandBuilding + id: Greed + gridPath: /Maps/_Wega/Lavaland/Greed.yml + +- type: lavalandBuilding + id: Pride + gridPath: /Maps/Lavaland/Pride.yml + +- type: lavalandBuilding + id: Laziness + gridPath: /Maps/_Wega/Lavaland/Laziness.yml + +- type: lavalandBuilding + id: Wrath + gridPath: /Maps/Lavaland/Wrath.yml + +- type: lavalandBuilding + id: CloningPod + gridPath: /Maps/_Wega/Lavaland/cloningpod.yml + +- type: lavalandBuilding + id: CloningConsole + gridPath: /Maps/_Wega/Lavaland/cloningconsole.yml + +- type: lavalandBuilding + id: Barracks + gridPath: /Maps/_Wega/Lavaland/barracks.yml + +- type: lavalandBuilding + id: Butterflys + gridPath: /Maps/_Wega/Lavaland/butterflys.yml + +- type: lavalandBuilding + id: Hospital + gridPath: /Maps/_Wega/Lavaland/hospital.yml + +- type: lavalandBuilding + id: DragonLair + gridPath: /Maps/_Wega/Lavaland/dragonlair.yml + ignoring: true + +- type: lavalandBuilding + id: Nesting + gridPath: /Maps/_Wega/Lavaland/nesting.yml + +- type: lavalandBuilding + id: Ritual + gridPath: /Maps/_Wega/Lavaland/ritual.yml + +- type: lavalandBuilding + id: Shelter + gridPath: /Maps/_Wega/Lavaland/shelter.yml + +- type: lavalandBuilding + id: SpiderNest + gridPath: /Maps/_Wega/Lavaland/spidernest.yml + +- type: lavalandBuilding + id: Bait + gridPath: /Maps/Lavaland/bait.yml + +- type: lavalandBuilding + id: BasaltRuin + gridPath: /Maps/_Wega/Lavaland/basalt_ruin.yml + +- type: lavalandBuilding + id: Bridge + gridPath: /Maps/Lavaland/bridge.yml + preloading: false + +- type: lavalandBuilding + id: BrokenCargo + gridPath: /Maps/Lavaland/broken_cargo.yml + +- type: lavalandBuilding + id: CatwalkCrossroad + gridPath: /Maps/Lavaland/catwalk_crossroad.yml + +- type: lavalandBuilding + id: CaveMurder + gridPath: /Maps/Lavaland/cave_murder.yml + +- type: lavalandBuilding + id: ClownRoom + gridPath: /Maps/Lavaland/clown_room.yml + +- type: lavalandBuilding + id: CommieOutpost + gridPath: /Maps/Lavaland/commieoutpost.yml + +- type: lavalandBuilding + id: CrashedPodTrail + gridPath: /Maps/Lavaland/crashed_pod_trail.yml + +- type: lavalandBuilding + id: CrashedDropship + gridPath: /Maps/Lavaland/crasheddropship.yml + +- type: lavalandBuilding + id: CrashedInstigator + gridPath: /Maps/Lavaland/crashedinstigator.yml + +- type: lavalandBuilding + id: CrashedSloop + gridPath: /Maps/Lavaland/crashedsloop.yml + +- type: lavalandBuilding + id: CrashedSyndiepod + gridPath: /Maps/_Wega/Lavaland/crashedsyndiepod.yml + +- type: lavalandBuilding + id: Enclosure + gridPath: /Maps/Lavaland/enclosure.yml + +- type: lavalandBuilding + id: EscapePodCrash + gridPath: /Maps/_Wega/Lavaland/escape_pod_crash.yml + +- type: lavalandBuilding + id: FleshLab + gridPath: /Maps/Lavaland/fleshlab.yml + +- type: lavalandBuilding + id: FrontDesk + gridPath: /Maps/Lavaland/front_desk.yml + +- type: lavalandBuilding + id: GeneratorScrapyard + gridPath: /Maps/Lavaland/generator_scrapyard.yml + +- type: lavalandBuilding + id: HermitBase + gridPath: /Maps/_Wega/Lavaland/hermit_base.yml + +- type: lavalandBuilding + id: LavaFarm + gridPath: /Maps/Lavaland/lava_farm.yml + +- type: lavalandBuilding + id: LavaLakeVillage + gridPath: /Maps/Lavaland/lava_lake_village.yml + +- type: lavalandBuilding + id: LavaRiver + gridPath: /Maps/Lavaland/lava_river.yml + +- type: lavalandBuilding + id: MimingDrill + gridPath: /Maps/Lavaland/miming_drill.yml + +- type: lavalandBuilding + id: MinerTomb + gridPath: /Maps/_Wega/Lavaland/miner_tomb.yml + +- type: lavalandBuilding + id: MineShaft + gridPath: /Maps/Lavaland/mineshaft.yml + +- type: lavalandBuilding + id: MugFactory + gridPath: /Maps/Lavaland/mug_factory.yml + +- type: lavalandBuilding + id: PenalColony + gridPath: /Maps/Lavaland/penalcolony.yml + +- type: lavalandBuilding + id: PizzaParty + gridPath: /Maps/Lavaland/pizza_party.yml + +- type: lavalandBuilding + id: Ripley + gridPath: /Maps/Lavaland/ripley.yml + +- type: lavalandBuilding + id: RiverVillage + gridPath: /Maps/Lavaland/river_village.yml + +- type: lavalandBuilding + id: Roundel + gridPath: /Maps/Lavaland/roundel.yml + +- type: lavalandBuilding + id: ShinobiGraveyard + gridPath: /Maps/Lavaland/shinobi_graveyard.yml + +- type: lavalandBuilding + id: Sloth + gridPath: /Maps/Lavaland/sloth.yml + +- type: lavalandBuilding + id: SolemnLament + gridPath: /Maps/Lavaland/solemn_lament.yml + +- type: lavalandBuilding + id: Temple + gridPath: /Maps/_Wega/Lavaland/temple.yml + +- type: lavalandBuilding + id: WreckedOutpost + gridPath: /Maps/_Wega/Lavaland/wrecked_outpost.yml diff --git a/Resources/Prototypes/_Wega/Maps/wegabarratry.yml b/Resources/Prototypes/_Wega/Maps/wegabarratry.yml index aa74b725e2f..13cd3c08a92 100644 --- a/Resources/Prototypes/_Wega/Maps/wegabarratry.yml +++ b/Resources/Prototypes/_Wega/Maps/wegabarratry.yml @@ -3,7 +3,7 @@ mapName: 'Barratry' mapPath: /Maps/_Wega/wegabarratry.yml minPlayers: 30 - maxPlayers: 60 + maxPlayers: 50 stations: Barratry: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/_Wega/Maps/wegacerestation.yml b/Resources/Prototypes/_Wega/Maps/wegacerestation.yml index 87003168a15..73402b9afa5 100644 --- a/Resources/Prototypes/_Wega/Maps/wegacerestation.yml +++ b/Resources/Prototypes/_Wega/Maps/wegacerestation.yml @@ -14,6 +14,8 @@ prefixCreator: 'TZ' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" - type: StationJobs availableJobs: #service @@ -53,8 +55,9 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] - SecurityOfficer: [ 7, 7 ] + SecurityOfficer: [ 6, 6 ] Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] Pilot: [ 1, 1 ] @@ -62,6 +65,8 @@ #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 4, 4 ] + ShaftMiner: [ 4, 4 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 4, 4 ] Postman: [ 1, 1 ] #civilian diff --git a/Resources/Prototypes/_Wega/Maps/wegacore.yml b/Resources/Prototypes/_Wega/Maps/wegacore.yml index 65133b6409c..4aff6da1570 100644 --- a/Resources/Prototypes/_Wega/Maps/wegacore.yml +++ b/Resources/Prototypes/_Wega/Maps/wegacore.yml @@ -55,7 +55,8 @@ #supply CargoTechnician: [ 3, 3 ] Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] + ShaftMiner: [ 3, 3 ] + ShaftMinerMedic: [ 1, 1 ] #civilian Passenger: [ -1, -1 ] Clown: [ 1, 1 ] diff --git a/Resources/Prototypes/_Wega/Maps/wegacyberiad.yml b/Resources/Prototypes/_Wega/Maps/wegacyberiad.yml index a2ac0c969b7..983c94a2a5a 100644 --- a/Resources/Prototypes/_Wega/Maps/wegacyberiad.yml +++ b/Resources/Prototypes/_Wega/Maps/wegacyberiad.yml @@ -15,6 +15,8 @@ prefixCreator: 'TZ' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" - type: StationJobs availableJobs: #service @@ -54,6 +56,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 3, 3 ] Detective: [ 1, 1 ] @@ -63,7 +66,8 @@ #Lawyer: [ 2, 2 ] # Corvax-IAA #supply Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + ShaftMiner: [ 4, 4 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 3, 3 ] Postman: [ 1, 1 ] #civilian diff --git a/Resources/Prototypes/_Wega/Maps/wegaemerald.yml b/Resources/Prototypes/_Wega/Maps/wegaemerald.yml index acf7e8f7f20..e5744e3f237 100644 --- a/Resources/Prototypes/_Wega/Maps/wegaemerald.yml +++ b/Resources/Prototypes/_Wega/Maps/wegaemerald.yml @@ -14,6 +14,8 @@ prefixCreator: 'TZ' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/_Wega/Shuttles/emeraldemergency.yml + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" - type: StationJobs availableJobs: #service @@ -53,6 +55,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 4, 4 ] Detective: [ 1, 1 ] @@ -61,7 +64,8 @@ Brigmedic: [ 1, 1 ] #supply Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + ShaftMiner: [ 4, 4 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 4, 4 ] Postman: [ 1, 1 ] #civilian diff --git a/Resources/Prototypes/_Wega/Maps/wegaishimura.yml b/Resources/Prototypes/_Wega/Maps/wegaishimura.yml index 9dec48a2dff..1d3198843aa 100644 --- a/Resources/Prototypes/_Wega/Maps/wegaishimura.yml +++ b/Resources/Prototypes/_Wega/Maps/wegaishimura.yml @@ -56,6 +56,7 @@ # security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] Detective: [ 1, 1 ] SecurityOfficer: [ 4, 4 ] SecurityCadet: [ 3, 3 ] @@ -63,7 +64,8 @@ Brigmedic: [ 1, 1 ] # cargo Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + ShaftMiner: [ 3, 3 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 2, 2 ] Postman: [ 1, 1 ] # silicon diff --git a/Resources/Prototypes/_Wega/Maps/wegakerberos.yml b/Resources/Prototypes/_Wega/Maps/wegakerberos.yml index e16faad492f..ee3253b17b7 100644 --- a/Resources/Prototypes/_Wega/Maps/wegakerberos.yml +++ b/Resources/Prototypes/_Wega/Maps/wegakerberos.yml @@ -14,6 +14,8 @@ prefixCreator: 'TZ' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/_Wega/Shuttles/kerberosemergency.yml + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" - type: StationJobs availableJobs: #service @@ -53,6 +55,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 5, 5 ] Detective: [ 1, 1 ] @@ -61,7 +64,8 @@ Brigmedic: [ 1, 1 ] #supply Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + ShaftMiner: [ 4, 5 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 4, 4 ] Postman: [ 1, 1 ] #civilian diff --git a/Resources/Prototypes/_Wega/Maps/wegakilostation.yml b/Resources/Prototypes/_Wega/Maps/wegakilostation.yml index a011d0dee55..52c7a7c602e 100644 --- a/Resources/Prototypes/_Wega/Maps/wegakilostation.yml +++ b/Resources/Prototypes/_Wega/Maps/wegakilostation.yml @@ -55,6 +55,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 3, 3 ] Detective: [ 1, 1 ] @@ -64,7 +65,8 @@ #Lawyer: [ 2, 2 ] # Corvax-IAA #supply Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + ShaftMiner: [ 3, 3 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 3, 3 ] #civilian Passenger: [ -1, -1 ] @@ -73,4 +75,4 @@ Musician: [ 1, 1 ] # silicon StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] \ No newline at end of file + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/_Wega/Maps/wegaspectrum.yml b/Resources/Prototypes/_Wega/Maps/wegaspectrum.yml index 5d8fb4db700..bb171b9a05f 100644 --- a/Resources/Prototypes/_Wega/Maps/wegaspectrum.yml +++ b/Resources/Prototypes/_Wega/Maps/wegaspectrum.yml @@ -14,6 +14,8 @@ prefixCreator: 'TZ' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml + - type: StationLavaland + lavalandAvanpost: "/Maps/_Wega/Nonstations/cyberiadavanpost.yml" - type: StationJobs availableJobs: #service @@ -53,6 +55,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + WardenHelper: [ 1, 1 ] SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 5, 5 ] Detective: [ 1, 1 ] @@ -61,7 +64,9 @@ Brigmedic: [ 1, 1 ] #supply Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 4, 4 ] + SalvageSpecialist: [ 2, 2 ] + ShaftMiner: [ 4, 5 ] + ShaftMinerMedic: [ 1, 1 ] CargoTechnician: [ 4, 4 ] Postman: [ 1, 1 ] #civilian diff --git a/Resources/Prototypes/_Wega/NPCs/legion.yml b/Resources/Prototypes/_Wega/NPCs/legion.yml new file mode 100644 index 00000000000..f4d79fa2365 --- /dev/null +++ b/Resources/Prototypes/_Wega/NPCs/legion.yml @@ -0,0 +1,63 @@ +- type: htnCompound + id: LegionBehaviorCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: LegionMaintainRangePrecondition + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: htnCompound + id: LegionMaintainRangePrecondition + branches: + - preconditions: + - !type:BuckledPrecondition + isBuckled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnbuckleOperator + shutdownState: TaskFinished + + - preconditions: + - !type:InContainerPrecondition + isInContainer: true + tasks: + - !type:HTNCompoundTask + task: EscapeCompound + + - preconditions: + - !type:PulledPrecondition + isPulled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnPullOperator + shutdownState: TaskFinished + + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: NearbyMeleeTargets + - !type:HTNCompoundTask + task: LegionMaintainRangeCompound + +- type: htnCompound + id: LegionMaintainRangeCompound + branches: + - preconditions: + - !type:KeyExistsPrecondition + key: Target + tasks: + - !type:HTNPrimitiveTask + operator: !type:MaintainRangeOperator + targetKey: Target + minRange: 3.0 + maxRange: 5.0 + shutdownState: PlanFinished + targetCoordinatesKey: TargetCoordinates + pathfindKey: TargetPathfind + services: + - !type:UtilityService + id: MaintainRangeService + proto: NearbyMeleeTargets + key: Target diff --git a/Resources/Prototypes/_Wega/NPCs/megafauna.yml b/Resources/Prototypes/_Wega/NPCs/megafauna.yml new file mode 100644 index 00000000000..1413e032b82 --- /dev/null +++ b/Resources/Prototypes/_Wega/NPCs/megafauna.yml @@ -0,0 +1,119 @@ +- type: htnCompound + id: MegafaunaBehaviorCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: MegafaunaMeleePrecondition + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: htnCompound + id: MegaLegionBehaviorCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: LegionMaintainRangePrecondition + +- type: htnCompound + id: MegafaunaMeleePrecondition + branches: + - preconditions: + - !type:BuckledPrecondition + isBuckled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnbuckleOperator + shutdownState: TaskFinished + + - preconditions: + - !type:InContainerPrecondition + isInContainer: true + tasks: + - !type:HTNCompoundTask + task: EscapeCompound + + - preconditions: + - !type:PulledPrecondition + isPulled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnPullOperator + shutdownState: TaskFinished + + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: MegafaunaNearbyMeleeTargets + - !type:HTNCompoundTask + task: MegafaunaMeleeCompound + +- type: htnCompound + id: MegafaunaMeleeCompound + branches: + - preconditions: + - !type:KeyExistsPrecondition + key: Target + tasks: + - !type:HTNPrimitiveTask + operator: !type:MoveToOperator + shutdownState: PlanFinished + pathfindInPlanning: true + removeKeyOnFinish: false + targetKey: TargetCoordinates + pathfindKey: TargetPathfind + rangeKey: MeleeRange + - !type:HTNPrimitiveTask + operator: !type:MeleeOperator + targetKey: Target + preconditions: + - !type:KeyExistsPrecondition + key: Target + - !type:TargetInRangePrecondition + targetKey: Target + rangeKey: MeleeRange + services: + - !type:UtilityService + id: MeleeService + proto: MegafaunaNearbyMeleeTargets + key: Target + +- type: htnCompound + id: HierophantBehaviorCompound + branches: + - preconditions: + - !type:BuckledPrecondition + isBuckled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnbuckleOperator + shutdownState: TaskFinished + + - preconditions: + - !type:InContainerPrecondition + isInContainer: true + tasks: + - !type:HTNCompoundTask + task: EscapeCompound + + - preconditions: + - !type:PulledPrecondition + isPulled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnPullOperator + shutdownState: TaskFinished + + - preconditions: + - !type:KeyExistsPrecondition + key: Target + tasks: + - !type:HTNPrimitiveTask + operator: !type:MeleeOperator + targetKey: Target + preconditions: + - !type:KeyExistsPrecondition + key: Target + - !type:TargetInRangePrecondition + targetKey: Target + rangeKey: MeleeRange diff --git a/Resources/Prototypes/_Wega/NPCs/utility_queries.yml b/Resources/Prototypes/_Wega/NPCs/utility_queries.yml new file mode 100644 index 00000000000..fc2f7d451d0 --- /dev/null +++ b/Resources/Prototypes/_Wega/NPCs/utility_queries.yml @@ -0,0 +1,17 @@ +- type: utilityQuery + id: MegafaunaNearbyMeleeTargets + query: + - !type:NearbyHostilesQuery + considerations: + - !type:TargetIsDeadCon # Kill! Kill! Kill! + curve: !type:InverseBoolCurve + - !type:TargetDistanceCon + curve: !type:PresetCurve + preset: TargetDistance + - !type:TargetHealthCon + curve: !type:PresetCurve + preset: TargetHealth + - !type:TargetAccessibleCon + curve: !type:BoolCurve + - !type:TargetInLOSOrCurrentCon + curve: !type:BoolCurve diff --git a/Resources/Prototypes/_Wega/Polymorphs/polymorph.yml b/Resources/Prototypes/_Wega/Polymorphs/polymorph.yml index 11d9a19f424..923a55e50e7 100644 --- a/Resources/Prototypes/_Wega/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/_Wega/Polymorphs/polymorph.yml @@ -31,6 +31,38 @@ forced: true duration: 600 +#Lavaland +- type: polymorph + id: LegionPolymorph + configuration: + entity: MobLegion + forced: true + transferDamage: false + transferName: true + revertOnDeath: true + +- type: polymorph + id: LegionDwarfPolymorph + configuration: + entity: MobLegionDwarf + forced: true + transferDamage: false + transferName: true + revertOnDeath: true + +- type: polymorph + id: SkeletonPolymorph + configuration: + entity: MobSkeletonPerson + forced: true + transferName: true + +- type: polymorph + id: LowerAshDrakePolymorph + configuration: + entity: MobLowerAshDrake + forced: true + #Other - type: polymorph id: ChariotStatue diff --git a/Resources/Prototypes/_Wega/Procedural/biome_markers.yml b/Resources/Prototypes/_Wega/Procedural/biome_markers.yml new file mode 100644 index 00000000000..935bbad51a8 --- /dev/null +++ b/Resources/Prototypes/_Wega/Procedural/biome_markers.yml @@ -0,0 +1,13 @@ +- type: biomeMarkerLayer + id: RandomNecropolisTendrils + prototype: SpawnerRandomNecropolisTendril + radius: 48 + maxCount: 28 + size: 512 + +- type: biomeMarkerLayer + id: RandomLavalandMob + prototype: SpawnerRandomLavalandMob + radius: 32 + maxCount: 96 + size: 128 diff --git a/Resources/Prototypes/_Wega/Procedural/biome_ore_templates_low.yml b/Resources/Prototypes/_Wega/Procedural/biome_ore_templates_low.yml new file mode 100644 index 00000000000..7cf0d81d11a --- /dev/null +++ b/Resources/Prototypes/_Wega/Procedural/biome_ore_templates_low.yml @@ -0,0 +1,117 @@ +# Low value +- type: biomeMarkerLayer + id: OreIronLavaland + entityMask: + AsteroidRock: AsteroidRockTin + WallRock: WallRockTin + WallRockBasalt: WallRockBasaltLavalandTin + WallRockChromite: WallRockChromiteTin + WallRockSand: WallRockSandTin + WallRockSnow: WallRockSnowTin + maxCount: 20 + minGroupSize: 4 + maxGroupSize: 8 + radius: 4 + +- type: biomeMarkerLayer + id: OreQuartzLavaland + entityMask: + AsteroidRock: AsteroidRockQuartz + WallRock: WallRockQuartz + WallRockBasalt: WallRockBasaltLavalandQuartz + WallRockChromite: WallRockChromiteQuartz + WallRockSnow: WallRockSnowQuartz + maxCount: 20 + minGroupSize: 4 + maxGroupSize: 8 + radius: 4 + +- type: biomeMarkerLayer + id: OreCoalLavaland + entityMask: + AsteroidRock: AsteroidRockCoal + WallRock: WallRockCoal + WallRockBasalt: WallRockBasaltLavalandCoal + WallRockChromite: WallRockChromiteCoal + WallRockSand: WallRockSandCoal + WallRockSnow: WallRockSnowCoal + maxCount: 20 + minGroupSize: 4 + maxGroupSize: 6 + radius: 4 + +# Medium value +# Gold +- type: biomeMarkerLayer + id: OreGoldLavaland + entityMask: + AsteroidRock: AsteroidRockGold + WallRock: WallRockGold + WallRockBasalt: WallRockBasaltLavalandGold + WallRockChromite: WallRockChromiteGold + WallRockSand: WallRockSandGold + WallRockSnow: WallRockSnowGold + maxCount: 10 + minGroupSize: 2 + maxGroupSize: 5 + radius: 4 + +# Silver +- type: biomeMarkerLayer + id: OreSilverLavaland + entityMask: + AsteroidRock: AsteroidRockSilver + WallRock: WallRockSilver + WallRockBasalt: WallRockBasaltLavalandSilver + WallRockChromite: WallRockChromiteSilver + WallRockSand: WallRockSandSilver + WallRockSnow: WallRockSnowSilver + maxCount: 10 + minGroupSize: 2 + maxGroupSize: 5 + radius: 4 + +# High value +# Plasma +- type: biomeMarkerLayer + id: OrePlasmaLavaland + entityMask: + AsteroidRock: AsteroidRockPlasma + WallRock: WallRockPlasma + WallRockBasalt: WallRockBasaltLavalandPlasma + WallRockChromite: WallRockChromitePlasma + WallRockSand: WallRockSandPlasma + WallRockSnow: WallRockSnowPlasma + maxCount: 6 + minGroupSize: 2 + maxGroupSize: 4 + radius: 4 + +# Uranium +- type: biomeMarkerLayer + id: OreUraniumLavaland + entityMask: + AsteroidRock: AsteroidRockUranium + WallRock: WallRockUranium + WallRockBasalt: WallRockBasaltLavalandUranium + WallRockChromite: WallRockChromiteUranium + WallRockSand: WallRockSandUranium + WallRockSnow: WallRockSnowUranium + maxCount: 7 + minGroupSize: 2 + maxGroupSize: 4 + radius: 4 + +- type: biomeMarkerLayer + id: OreDiamondLavaland + entityMask: + AsteroidRock: AsteroidRockDiamond + WallRock: WallRockDiamond + WallRockBasalt: WallRockBasaltLavalandDiamond + WallRockChromite: WallRockChromiteDiamond + WallRockSand: WallRockSandDiamond + WallRockSnow: WallRockSnowDiamond + maxCount: 3 + minGroupSize: 1 + maxGroupSize: 2 + radius: 4 diff --git a/Resources/Prototypes/_Wega/Procedural/biome_templates.yml b/Resources/Prototypes/_Wega/Procedural/biome_templates.yml new file mode 100644 index 00000000000..57e9823c8b1 --- /dev/null +++ b/Resources/Prototypes/_Wega/Procedural/biome_templates.yml @@ -0,0 +1,135 @@ +- type: biomeTemplate + id: Lavaland + layers: + - !type:BiomeEntityLayer + threshold: 1 + noise: + frequency: 1 + seed: 15 + allowedTiles: + - FloorBasalt + entities: + - BasaltOne + - BasaltTwo + - BasaltThree + - BasaltFour + - BasaltFive + - !type:BiomeDecalLayer + allowedTiles: + - FloorBasalt + threshold: 0.95 + divisions: 1 + noise: + seed: 25 + frequency: 1 + decals: + - Basalt1 + - Basalt2 + - Basalt3 + - Basalt4 + - Basalt5 + - Basalt6 + - Basalt7 + - Basalt8 + - Basalt9 + - !type:BiomeEntityLayer + threshold: 0.94 + noise: + seed: 3 + noiseType: OpenSimplex2 + frequency: 2 + allowedTiles: + - FloorBasalt + entities: + - LavalandFloraCactus1 + - LavalandFloraCactus2 + - LavalandFloraCactus3 + - LavalandFloraCactus4 + - LavalandFloraFireBlossom1 + - LavalandFloraFireBlossom2 + - LavalandFloraFireBlossom3 + - LavalandFloraFireBlossom4 + - LavalandFloraPolyporeMushroom1 + - LavalandFloraPolyporeMushroom2 + - LavalandFloraPolyporeMushroom3 + - LavalandFloraPolyporeMushroom4 + - LavalandFloraInocybeMushroom1 + - LavalandFloraInocybeMushroom2 + - LavalandFloraInocybeMushroom3 + - LavalandFloraInocybeMushroom4 + - LavalandFloraPorciniMushroom1 + - LavalandFloraPorciniMushroom2 + - LavalandFloraPorciniMushroom3 + - LavalandFloraPorciniMushroom4 + - LavalandFloraEmbershroom1 + - LavalandFloraEmbershroom2 + - LavalandFloraEmbershroom3 + - LavalandFloraEmbershroom4 + - !type:BiomeEntityLayer + threshold: 0.94 + noise: + seed: 4 + noiseType: OpenSimplex2 + frequency: 2 + allowedTiles: + - FloorBasalt + entities: + - BasaltRandom + - !type:BiomeEntityLayer + threshold: 0.95 + noise: + seed: 0 + noiseType: OpenSimplex2 + frequency: 2 + allowedTiles: + - FloorBasalt + entities: + - FloraRockSolid + - !type:BiomeEntityLayer + threshold: 0.2 + noise: + seed: 10 + frequency: 0.025 + fractalType: FBm + octaves: 5 + lacunarity: 2 + gain: 0.4 + allowedTiles: + - FloorBasalt + entities: + - FloorLavaEntity + # Rock formations + - !type:BiomeEntityLayer + allowedTiles: + - FloorBasalt + threshold: -0.25 + noise: + seed: 5 + noiseType: Cellular + frequency: 0.05 + lacunarity: 2 + fractalType: FBm + octaves: 5 + cellularDistanceFunction: Euclidean + cellularReturnType: Distance2 + # As I can see, it works much better than I could have imagined. + entityWeights: + WallRockBasalt: 0.947 + WallRockBasaltLavalandTin: 0.019 + WallRockBasaltLavalandCoal: 0.0095 + WallRockBasaltLavalandQuartz: 0.0095 + WallRockBasaltLavalandPlasma: 0.0095 + WallRockBasaltLavalandSilver: 0.0054 + WallRockBasaltLavalandGold: 0.0034 + WallRockBasaltLavalandUranium: 0.00135 + WallRockBasaltLavalandDiamond: 0.00135 + WallRockBasaltLavalandBananium: 0.00108 + WallRockBasaltLavalandGems: 0.00081 + WallRockBasaltLavalandGibtonite: 0.00027 + WallRockBasaltLavalandMagmite: 0.00027 + - !type:BiomeDummyLayer + id: Loot + # Fill basalt + - !type:BiomeTileLayer + threshold: -1 + tile: FloorBasalt diff --git a/Resources/Prototypes/_Wega/Procedural/planet.yml b/Resources/Prototypes/_Wega/Procedural/planet.yml new file mode 100644 index 00000000000..a10eeff1908 --- /dev/null +++ b/Resources/Prototypes/_Wega/Procedural/planet.yml @@ -0,0 +1,16 @@ +- type: lavalandPlanet + id: Lavaland + biome: Lavaland + temperature: 299.15 + gases: [14.022, 22.878] + biomeLayers: + - RandomNecropolisTendrils + - RandomLavalandMob + # Ore Veins + - OreIronLavaland + - OreCoalLavaland + - OreQuartzLavaland + - OreGoldLavaland + - OreSilverLavaland + - OrePlasmaLavaland + - OreUraniumLavaland diff --git a/Resources/Prototypes/_Wega/Reagents/Materials/materials.yml b/Resources/Prototypes/_Wega/Reagents/Materials/materials.yml index e180e3b07ea..45f9ef1b7a9 100644 --- a/Resources/Prototypes/_Wega/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/_Wega/Reagents/Materials/materials.yml @@ -5,3 +5,11 @@ icon: { sprite: _Wega/Objects/Materials/Sheets/metal.rsi, state: runemetal } color: "#3f4857" price: 0.05 + +- type: material + id: Magmite + stackEntity: SheetMagmite1 + name: materials-magmite + icon: { sprite: _Wega/Objects/Materials/Sheets/metal.rsi, state: magmite } + color: "#df7126" + price: 1 diff --git a/Resources/Prototypes/_Wega/Reagents/Materials/ores.yml b/Resources/Prototypes/_Wega/Reagents/Materials/ores.yml new file mode 100644 index 00000000000..b9894f6b93a --- /dev/null +++ b/Resources/Prototypes/_Wega/Reagents/Materials/ores.yml @@ -0,0 +1,7 @@ +- type: material + id: RawMagmite + stackEntity: MagmiteOre1 + name: materials-raw-magmite + unit: materials-unit-chunk + icon: { sprite: _Wega/Objects/Materials/ore.rsi, state: magmite } + price: 0.05 diff --git a/Resources/Prototypes/_Wega/Reagents/medicine.yml b/Resources/Prototypes/_Wega/Reagents/medicine.yml index 5d471d061b9..d43240eca6e 100644 --- a/Resources/Prototypes/_Wega/Reagents/medicine.yml +++ b/Resources/Prototypes/_Wega/Reagents/medicine.yml @@ -117,3 +117,20 @@ damage: types: Caustic: 0.2 + +- type: reagent + id: LavalandSerum + name: reagent-name-lavaland-serum + group: Medicine + desc: reagent-desc-lavaland-serum + physicalDesc: reagent-physical-desc-pungent + flavor: sharp + color: "#a88867" + metabolisms: + Medicine: + effects: + - !type:HealthChange + damage: + groups: + Brute: -2.5 + Burn: -2.5 diff --git a/Resources/Prototypes/_Wega/Reagents/potion.yml b/Resources/Prototypes/_Wega/Reagents/potion.yml index 8a9bc3f8136..28aa73444ef 100644 --- a/Resources/Prototypes/_Wega/Reagents/potion.yml +++ b/Resources/Prototypes/_Wega/Reagents/potion.yml @@ -301,3 +301,17 @@ - !type:MovementSpeedModifier walkSpeedModifier: 0.95 sprintSpeedModifier: 0.95 + +- type: reagent + id: StabilizingSerumPotion + name: reagent-name-stabilizing-serum-potion + group: Medicine + desc: reagent-desc-stabilizing-serum-potion + physicalDesc: reagent-physical-desc-opaque + flavor: medicine + color: "#fe0958" + reactiveEffects: + Special: + methods: [ Touch ] + effects: + - !type:ChemLegionCoreStabilize diff --git a/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/boat.yml b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/boat.yml new file mode 100644 index 00000000000..54d348ac87d --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/boat.yml @@ -0,0 +1,30 @@ +- type: constructionGraph + id: VehicleBoat + start: start + graph: + - node: start + edges: + - to: boat + steps: + - material: WoodPlank + amount: 30 + doAfter: 5 + - material: GoliathHide + amount: 8 + doAfter: 8 + - node: boat + entity: VehicleBoat + edges: + - to: start + steps: + - tool: Prying + doAfter: 10 + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 30 + - !type:SpawnPrototype + prototype: MaterialGoliathHide1 + amount: 8 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/clothing.yml b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/clothing.yml new file mode 100644 index 00000000000..50ca3fee4b1 --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/clothing.yml @@ -0,0 +1,113 @@ +- type: constructionGraph + id: BoneArmor + start: start + graph: + - node: start + edges: + - to: armor + steps: + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: DragonHide + amount: 4 + doAfter: 5 + - material: Bones + amount: 10 + doAfter: 5 + - node: armor + entity: ClothingOuterArmorBone + +- type: constructionGraph + id: BoneBracers + start: start + graph: + - node: start + edges: + - to: bracers + steps: + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: Bones + amount: 10 + doAfter: 2.5 + - node: bracers + entity: ClothingHandsBoneBracers + +- type: constructionGraph + id: BoneTalisman + start: start + graph: + - node: start + edges: + - to: talisman + steps: + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: Bones + amount: 4 + doAfter: 2.5 + - node: talisman + entity: AccessoriesClothingBoneTalisman + +- type: constructionGraph + id: SkullCodpiece + start: start + graph: + - node: start + edges: + - to: codpiece + steps: + - material: Sinew + amount: 4 + doAfter: 2.5 + - material: Bones + amount: 8 + doAfter: 2.5 + - node: codpiece + entity: AccessoriesClothingSkullCodpiece + +- type: constructionGraph + id: GoliathCloak + start: start + graph: + - node: start + edges: + - to: cloack + steps: + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: GoliathHide + amount: 4 + doAfter: 5 + - node: cloack + entity: ClothingNeckCloakGoliathCloak + +- type: constructionGraph + id: PathfinderCloak + start: start + graph: + - node: start + edges: + - to: cloack + steps: + - tag: GoliathCloak + icon: + sprite: Clothing/Neck/Cloaks/goliathcloak.rsi + state: icon + name: construction-graph-tag-goliath-cloak + doAfter: 2.5 + - material: Sinew + amount: 10 + doAfter: 5 + - material: Chitin + amount: 10 + doAfter: 5 + - material: GoliathHide + amount: 10 + doAfter: 5 + - node: cloack + entity: ClothingOuterCoatPathfinderCloak diff --git a/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/explorer_suit.yml b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/explorer_suit.yml new file mode 100644 index 00000000000..866b480573d --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/explorer_suit.yml @@ -0,0 +1,45 @@ +- type: constructionGraph + id: ExplorerSuitReinforced + start: start + graph: + - node: start + edges: + - to: explorerSuit + steps: + - tag: ExplorerSuit + icon: + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi + state: icon + name: construction-graph-tag-explorer-suit + doAfter: 10 + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: GoliathHide + amount: 4 + doAfter: 10 + - node: explorerSuit + entity: ClothingOuterArmorExplorerSuitReinforced + +- type: constructionGraph + id: ExplorerSuitKhakiReinforced + start: start + graph: + - node: start + edges: + - to: explorerSuit + steps: + - tag: ExplorerSuitKhaki + icon: + sprite: _Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi + state: icon + name: construction-graph-tag-explorer-suit + doAfter: 10 + - material: Sinew + amount: 2 + doAfter: 2.5 + - material: GoliathHide + amount: 4 + doAfter: 10 + - node: explorerSuit + entity: ClothingOuterArmorExplorerSuitKhakiReinforced diff --git a/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/tools.yml b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/tools.yml new file mode 100644 index 00000000000..c997a9f205c --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Crafting/Graphs/improvised/tools.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: BoneOar + start: start + graph: + - node: start + edges: + - to: oar + steps: + - material: Bones + amount: 8 + doAfter: 5 + - node: oar + entity: BoneOar diff --git a/Resources/Prototypes/_Wega/Recipes/Crafting/improvised.yml b/Resources/Prototypes/_Wega/Recipes/Crafting/improvised.yml index 7d8ca9e1a12..a5f27603d49 100644 --- a/Resources/Prototypes/_Wega/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/_Wega/Recipes/Crafting/improvised.yml @@ -37,3 +37,75 @@ targetNode: garrottecrafted category: construction-category-weapons objectType: Item + +- type: construction + id: ExplorerSuitReinforced + graph: ExplorerSuitReinforced + startNode: start + targetNode: explorerSuit + category: construction-category-primitive + objectType: Item + +- type: construction + id: ExplorerSuitKhakiReinforced + graph: ExplorerSuitKhakiReinforced + startNode: start + targetNode: explorerSuit + category: construction-category-primitive + objectType: Item + +- type: construction + id: BoneBracers + graph: BoneBracers + startNode: start + targetNode: bracers + category: construction-category-primitive + objectType: Item + +- type: construction + id: BoneTalisman + graph: BoneTalisman + startNode: start + targetNode: talisman + category: construction-category-primitive + objectType: Item + +- type: construction + id: SkullCodpiece + graph: SkullCodpiece + startNode: start + targetNode: codpiece + category: construction-category-primitive + objectType: Item + +- type: construction + id: GoliathCloak + graph: GoliathCloak + startNode: start + targetNode: cloack + category: construction-category-primitive + objectType: Item + +- type: construction + id: PathfinderCloak + graph: PathfinderCloak + startNode: start + targetNode: cloack + category: construction-category-primitive + objectType: Item + +- type: construction + id: BoneOar + graph: BoneOar + startNode: start + targetNode: oar + category: construction-category-primitive + objectType: Item + +- type: construction + id: VehicleBoat + graph: VehicleBoat + startNode: start + targetNode: boat + category: construction-category-primitive + objectType: Item diff --git a/Resources/Prototypes/_Wega/Recipes/Lathes/Packs/mining.yml b/Resources/Prototypes/_Wega/Recipes/Lathes/Packs/mining.yml new file mode 100644 index 00000000000..4f66bc738a0 --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Lathes/Packs/mining.yml @@ -0,0 +1,9 @@ +- type: latheRecipePack + id: MagmiteEquipment + recipes: + - SheetMagmite1 + - WeaponMagmiteProtoKineticAccelerator + - WeaponMagmiteCrusher + - WeaponMagmiteCrusherGlaive + - WeaponMagmitePlasmaCutter + - WeaponMagmiteFanPlasmaCutter diff --git a/Resources/Prototypes/_Wega/Recipes/Lathes/mining.yml b/Resources/Prototypes/_Wega/Recipes/Lathes/mining.yml new file mode 100644 index 00000000000..9a25d558eb8 --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Lathes/mining.yml @@ -0,0 +1,66 @@ +- type: latheRecipe + id: WeaponPlasmaCutter + result: WeaponPlasmaCutterEmpty + completetime: 30 + materials: + Steel: 850 + Glass: 300 + Plasma: 500 + +- type: latheRecipe + id: WeaponPlasmaCutterAdv + result: WeaponPlasmaCutterAdvEmpty + completetime: 30 + materials: + Steel: 850 + Glass: 300 + Plasma: 500 + Gold: 400 + Diamond: 200 + +- type: latheRecipe + id: WeaponIndustrialFanPlasmaCutter + result: WeaponIndustrialFanPlasmaCutterEmpty + completetime: 30 + materials: + Steel: 850 + Glass: 300 + Plasma: 500 + Gold: 400 + Diamond: 200 + +# Magmite +- type: latheRecipe + id: WeaponMagmiteProtoKineticAccelerator + result: WeaponMagmiteProtoKineticAccelerator + completetime: 20 + materials: + Magmite: 2000 + +- type: latheRecipe + id: WeaponMagmiteCrusher + result: WeaponMagmiteCrusher + completetime: 20 + materials: + Magmite: 2000 + +- type: latheRecipe + id: WeaponMagmiteCrusherGlaive + result: WeaponMagmiteCrusherGlaive + completetime: 20 + materials: + Magmite: 2000 + +- type: latheRecipe + id: WeaponMagmitePlasmaCutter + result: WeaponMagmitePlasmaCutter + completetime: 20 + materials: + Magmite: 1500 + +- type: latheRecipe + id: WeaponMagmiteFanPlasmaCutter + result: WeaponMagmiteFanPlasmaCutter + completetime: 20 + materials: + Magmite: 1500 diff --git a/Resources/Prototypes/_Wega/Recipes/Lathes/sheet.yml b/Resources/Prototypes/_Wega/Recipes/Lathes/sheet.yml new file mode 100644 index 00000000000..27a722fcc17 --- /dev/null +++ b/Resources/Prototypes/_Wega/Recipes/Lathes/sheet.yml @@ -0,0 +1,6 @@ +- type: latheRecipe + id: SheetMagmite1 + result: SheetMagmite1 + completetime: 2 + materials: + RawMagmite: 100 diff --git a/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminer.yml b/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminer.yml new file mode 100644 index 00000000000..66e05dadb45 --- /dev/null +++ b/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminer.yml @@ -0,0 +1,31 @@ +- type: job + id: ShaftMiner + name: job-name-shaft-miner + description: job-description-shaft-miner + playTimeTracker: JobShaftMiner + requirements: + - !type:DepartmentTimeRequirement + department: Cargo + time: 3h + startingGear: ShaftMinerGear + icon: "JobIconShaftMiner" + supervisors: job-supervisors-qm + access: + - Cargo + - Salvage + - LavalandAvanpost + - Maintenance + - External + subRoles: + - ShaftMinerMedic + +- type: startingGear + id: ShaftMinerGear + equipment: + id: MinerPDA + ears: ClothingHeadsetMining + storage: + back: + - SalvageVoucherCard + - SurvivalMedipen + - SurvivalKnife diff --git a/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminermedic.yml b/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminermedic.yml new file mode 100644 index 00000000000..140cf7d55a7 --- /dev/null +++ b/Resources/Prototypes/_Wega/Roles/Jobs/Cargo/shaftminermedic.yml @@ -0,0 +1,42 @@ +- type: job + id: ShaftMinerMedic + name: job-name-shaft-miner-medic + description: job-description-shaft-miner-medic + playTimeTracker: JobShaftMinerMedic + isSubRole: true + requirements: + - !type:RoleTimeRequirement + role: JobShaftMiner + time: 10h + - !type:RoleTimeRequirement + role: JobChemist + time: 5h + - !type:DepartmentTimeRequirement + department: Medical + time: 10h + startingGear: ShaftMinerMedicGear + icon: "JobIconShaftMinerMedic" + supervisors: job-supervisors-qm + access: + - Cargo + - Salvage + - LavalandAvanpost + - Maintenance + - External + - Medical + +- type: startingGear + id: ShaftMinerMedicGear + equipment: + id: MinerMedicPDA + ears: ClothingHeadsetMining + eyes: ClothingEyesHudMedical + shoes: ClothingShoesColorBlack + belt: ClothingBeltMedicalFilled + outerClothing: ClothingOuterArmorExplorerSuitMedical + storage: + back: + - SalvageVoucherCard + - MedkitAdvancedFilled + - SurvivalMedipen + - SurvivalKnife diff --git a/Resources/Prototypes/_Wega/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/_Wega/Roles/Jobs/Security/brigmedic.yml index fcdddd8a516..14583ebb0de 100644 --- a/Resources/Prototypes/_Wega/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/_Wega/Roles/Jobs/Security/brigmedic.yml @@ -23,6 +23,7 @@ - Brig - Detective - External + - LavalandAvanpost - Medical - Security - Maintenance diff --git a/Resources/Prototypes/_Wega/Roles/play_time_trackers.yml b/Resources/Prototypes/_Wega/Roles/play_time_trackers.yml index 225a6bf014c..f158add8bc3 100644 --- a/Resources/Prototypes/_Wega/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_Wega/Roles/play_time_trackers.yml @@ -19,5 +19,11 @@ - type: playTimeTracker id: JobPostman +- type: playTimeTracker + id: JobShaftMiner + +- type: playTimeTracker + id: JobShaftMinerMedic + - type: playTimeTracker id: JobWardenHelper diff --git a/Resources/Prototypes/_Wega/SoundCollections/planet.yml b/Resources/Prototypes/_Wega/SoundCollections/planet.yml new file mode 100644 index 00000000000..372dfaf0316 --- /dev/null +++ b/Resources/Prototypes/_Wega/SoundCollections/planet.yml @@ -0,0 +1,7 @@ +- type: soundCollection + id: PlanetRumblesDistance + files: + - /Audio/_Wega/Effects/Planet/rumble_distant1.ogg + - /Audio/_Wega/Effects/Planet/rumble_distant2.ogg + - /Audio/_Wega/Effects/Planet/rumble_distant3.ogg + - /Audio/_Wega/Effects/Planet/rumble_distant4.ogg diff --git a/Resources/Prototypes/_Wega/Species/ashwalker.yml b/Resources/Prototypes/_Wega/Species/ashwalker.yml new file mode 100644 index 00000000000..f47747c7d0a --- /dev/null +++ b/Resources/Prototypes/_Wega/Species/ashwalker.yml @@ -0,0 +1,74 @@ +- type: species + id: AshWalker + name: species-name-ashwalker + roundStart: false + prototype: MobAshWalker + sprites: MobAshWalkerSprites + defaultSkinTone: "#34a223" + markingLimits: MobAshWalkerMarkingLimits + dollPrototype: MobAshWalkerDummy + skinColoration: Hues + maleFirstNames: NamesReptilianMale + femaleFirstNames: NamesReptilianFemale + naming: FirstDashFirst + +- type: speciesBaseSprites + id: MobAshWalkerSprites + sprites: + Head: MobReptilianHead + Snout: MobHumanoidAnyMarking + UndergarmentTop: MobHumanoidAnyMarking + UndergarmentBottom: MobHumanoidAnyMarking + Chest: MobReptilianTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobHumanoidEyes + LArm: MobReptilianLArm + RArm: MobReptilianRArm + LHand: MobReptilianLHand + RHand: MobReptilianRHand + LLeg: MobReptilianLLegDigi # Corvax-Digitigrade + RLeg: MobReptilianRLegDigi # Corvax-Digitigrade + LFoot: MobReptilianLFootDigi # Corvax-Digitigrade + RFoot: MobReptilianRFootDigi # Corvax-Digitigrade + +- type: markingPoints + id: MobAshWalkerMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ LizardTailSmooth ] + Snout: + points: 1 + required: true + defaultMarkings: [ LizardSnoutRound ] + HeadTop: + points: 2 + required: false + HeadSide: + points: 2 # Corvax-Wega-Edit + required: false + UndergarmentTop: + points: 1 + required: false + UndergarmentBottom: + points: 1 + required: false + Chest: + points: 3 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false diff --git a/Resources/Prototypes/_Wega/Stack/Materials/materials.yml b/Resources/Prototypes/_Wega/Stack/Materials/materials.yml index f7aa94e8133..09b280b93c0 100644 --- a/Resources/Prototypes/_Wega/Stack/Materials/materials.yml +++ b/Resources/Prototypes/_Wega/Stack/Materials/materials.yml @@ -4,3 +4,10 @@ icon: { sprite: _Wega/Objects/Materials/Sheets/metal.rsi, state: runemetal } spawn: SheetRuneMetal1 maxCount: 30 + +- type: stack + id: Magmite + name: stak-magmite + icon: { sprite: _Wega/Objects/Materials/Sheets/metal.rsi, state: magmite } + spawn: SheetMagmite1 + maxCount: 30 diff --git a/Resources/Prototypes/_Wega/Stack/Materials/ores.yml b/Resources/Prototypes/_Wega/Stack/Materials/ores.yml new file mode 100644 index 00000000000..fb3b4fefe13 --- /dev/null +++ b/Resources/Prototypes/_Wega/Stack/Materials/ores.yml @@ -0,0 +1,6 @@ +- type: stack + id: MagmiteOre + name: magmite-ore + icon: { sprite: _Wega/Objects/Materials/ore.rsi, state: magmite } + spawn: MagmiteOre1 + maxCount: 30 diff --git a/Resources/Prototypes/_Wega/Stack/organic.yml b/Resources/Prototypes/_Wega/Stack/organic.yml new file mode 100644 index 00000000000..dc0daef3e5b --- /dev/null +++ b/Resources/Prototypes/_Wega/Stack/organic.yml @@ -0,0 +1,20 @@ +- type: stack + parent: BaseMediumStack + id: Sinew + name: stack-sinew + icon: { sprite: _Wega/Objects/Materials/sinew.rsi, state: sinew } + spawn: MaterialSinew1 + +- type: stack + parent: BaseMediumStack + id: Chitin + name: stack-chitin + icon: { sprite: _Wega/Objects/Materials/chitin.rsi, state: chitin } + spawn: MaterialChitin1 + +- type: stack + parent: BaseMediumStack + id: DragonHide + name: stack-dragon-hide + icon: { sprite: _Wega/Objects/Materials/dragon_hide.rsi, state: dragon_hide } + spawn: MaterialDragonHide1 diff --git a/Resources/Prototypes/_Wega/StatusIcon/job.yml b/Resources/Prototypes/_Wega/StatusIcon/job.yml index 49e1e9b27b7..13f2fc52a8f 100644 --- a/Resources/Prototypes/_Wega/StatusIcon/job.yml +++ b/Resources/Prototypes/_Wega/StatusIcon/job.yml @@ -38,10 +38,18 @@ state: Postman jobName: job-name-postman +- type: jobIcon + parent: JobIcon + id: JobIconShaftMinerMedic + icon: + sprite: /Textures/_Wega/Interface/Misc/job_icons.rsi + state: ShaftMinerMedic + jobName: job-name-shaft-miner-medic + - type: jobIcon parent: JobIcon id: JobIconWardenHelper icon: sprite: /Textures/_Wega/Interface/Misc/job_icons.rsi state: WardenHelper - jobName: job-name-wardenhelper \ No newline at end of file + jobName: job-name-wardenhelper diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/base.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/base.yml index 191aeec654d..c1883808c05 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/base.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/base.yml @@ -5,6 +5,7 @@ - HeadClosed - AttachHead - ImplantingTooth + - ThroatClosed - AmputateLeftArm - AttachLeftArm - AmputateRightArm diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/slime.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/slime.yml index 418bab24032..b9dc623dc6b 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/slime.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Graphs/slime.yml @@ -4,6 +4,7 @@ - SlimeTorsoClosed - SlimeHeadClosed - AttachHead + - ThroatClosed - AmputateLeftArm - AttachLeftArm - AmputateRightArm diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/basenodes.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/basenodes.yml index 2975dda94e3..876dcf4fb05 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/basenodes.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/basenodes.yml @@ -89,6 +89,26 @@ transitions: - CompleteHeadAttachmentTransition +# ======================== +# УЗЛЫ ГЛОТКИ +# ======================== + +- type: surgeryNode + id: ThroatClosed + description: Глотка закрыта + bodyPart: throat + transitions: + - OpenThroatTransition + +- type: surgeryNode + id: ThroatOpen + description: Глотка вскрыта + bodyPart: throat + packages: + - ThroatImplantPackage + transitions: + - CloseThroatTransition + # ======================== # УЗЛЫ КОНЕЧНОСТЕЙ # ======================== diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/implants.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/implants.yml index 4437095baf7..fad70121ea0 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/implants.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Nodes/implants.yml @@ -241,3 +241,10 @@ transitions: - ExtractFakeMindShieldTransition - EndRemoveFakeMindShieldTransition + +# Throat +- type: surgeryNode + id: RemoveDivineVocalCordsOperation + description: Извлечь голосовые связки бога + transitions: + - EndRemoveDivineVocalCordsTransition diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Package/implants.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Package/implants.yml index ba7d50013db..1daf76f9bba 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Package/implants.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Package/implants.yml @@ -77,6 +77,12 @@ - RemoveMindShieldTransition - RemoveFakeMindShieldTransition +- type: surgeryPackage + id: ThroatImplantPackage + transitions: + - ImplantingVocalCordsTransition + - RemoveDivineVocalCordsTransition + - type: surgeryPackage id: AndroidHeadImplantPackage transitions: diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/basetransition.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/basetransition.yml index 8e349be3294..6ef961b1b0c 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/basetransition.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/basetransition.yml @@ -699,6 +699,70 @@ time: 12 successChance: 0.6 +# ======================== +# ПЕРЕХОДЫ ГЛОТКИ +# ======================== + +- type: surgeryTransition + id: OpenThroatTransition + target: ThroatOpen + label: Вскрыть глотку + stepGroups: + - conditions: + - !type:ClothingCondition + invert: true + slots: + - head + - mask + - !type:BodyPartCondition + bodyPart: head + steps: + - tool: [ Scalpel ] + tag: [ Knife, Shiv, BasicGlassShard, Wirecutter ] + action: Cut + failureEffect: [ Cut, Bleeding ] + sound: + collection: Scalpel + time: 4 + successChance: 0.95 + - tool: [ Hemostat ] + tag: [ CableCoil, Crowbar ] + action: ClampBleeding + failureEffect: [ Bleeding, Pain ] + sound: + path: /Audio/_Wega/Medical/Surgery/hemostat1.ogg + time: 3 + successChance: 0.95 + - tool: [ Retractor ] + tag: [ Crowbar ] + action: Retract + failureEffect: [ Pain ] + sound: + collection: Retractor + time: 4 + +- type: surgeryTransition + id: CloseThroatTransition + target: EndOperation + label: Закрыть глотку + stepGroups: + - conditions: + - !type:ClothingCondition + invert: true + slots: + - head + - mask + - !type:BodyPartCondition + bodyPart: head + steps: + - tool: [ Retractor ] + tag: [ Crowbar ] + action: Retract + failureEffect: [ Pain ] + sound: + collection: Retractor + time: 4 + # ======================== # ПЕРЕХОДЫ КОНЕЧНОСТЕЙ # ======================== diff --git a/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/implants.yml b/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/implants.yml index 911f2b86d8f..36a3aef5cda 100644 --- a/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/implants.yml +++ b/Resources/Prototypes/_Wega/Surgery/Operations/Transitions/implants.yml @@ -279,6 +279,40 @@ collection: Cautery time: 2 +# Throat +- type: surgeryTransition + id: ImplantingVocalCordsTransition + target: ThroatOpen + label: "Установить голосовые связки бога" + stepGroups: + - conditions: + - !type:ImplantPresentCondition + implant: "DivineVocalCordsImplant" + invert: true + - !type:ClothingCondition + invert: true + slots: + - head + - mask + - !type:BodyPartCondition + bodyPart: head + parallel: true + steps: + - tool: [ Scalpel ] + tag: [ Knife, Shiv, BasicGlassShard, Wirecutter ] + action: Cut + failureEffect: [ Cut, Bleeding ] + sound: + collection: Scalpel + time: 4 + - tag: [ DivineVocalCordsImplant ] + entityPreview: DivineVocalCordsImplant + action: Implanting + failureEffect: [ Pain ] + sound: + collection: Organ + time: 5 + # ======================== # УДАЛЕНИЕ ИМПЛАНТОВ # ======================== @@ -1802,3 +1836,58 @@ sound: collection: Cautery time: 2 + +# Throat +- type: surgeryTransition + id: RemoveDivineVocalCordsTransition + target: RemoveDivineVocalCordsOperation + label: "Извлечь голосовые связки бога" + stepGroups: + - conditions: + - !type:ImplantPresentCondition + implant: "DivineVocalCordsImplant" + - !type:ClothingCondition + invert: true + slots: + - head + - mask + - !type:BodyPartCondition + bodyPart: head + parallel: true + steps: + - tool: [ Scalpel ] + tag: [ Knife, Shiv, BasicGlassShard, Wirecutter ] + action: Cut + failureEffect: [ Cut, Bleeding ] + sound: + collection: Scalpel + time: 4 + - tool: [ Retractor ] + tag: [ Crowbar ] + action: RemoveImplant + requiredImplant: "DivineVocalCordsImplant" + failureEffect: [ Bleeding ] + sound: + collection: Retractor + time: 8 + +- type: surgeryTransition + id: EndRemoveDivineVocalCordsTransition + target: ThroatOpen + label: "Завершить" + stepGroups: + - conditions: + - !type:ClothingCondition + invert: true + slots: + - head + - mask + - !type:BodyPartCondition + bodyPart: head + steps: + - tool: [ Cautery ] + action: ClampBleeding + failureEffect: [ Burn ] + sound: + collection: Cautery + time: 2 diff --git a/Resources/Prototypes/_Wega/Tiles/floors.yml b/Resources/Prototypes/_Wega/Tiles/floors.yml index 1c9e6fb9537..465fdc972bf 100644 --- a/Resources/Prototypes/_Wega/Tiles/floors.yml +++ b/Resources/Prototypes/_Wega/Tiles/floors.yml @@ -16,3 +16,13 @@ itemDrop: FloorTileItemSepia mobAcceleration: 3 heatCapacity: 10000 + +- type: tile + id: FloorNecropolis + name: tiles-necropolis-floor + sprite: /Textures/_Wega/Tiles/necropolis.png + isSubfloor: true + footstepSounds: + collection: FootstepFloor + heatCapacity: 10000 + indestructible: true diff --git a/Resources/Prototypes/_Wega/achievements.yml b/Resources/Prototypes/_Wega/achievements.yml new file mode 100644 index 00000000000..71418604c94 --- /dev/null +++ b/Resources/Prototypes/_Wega/achievements.yml @@ -0,0 +1,50 @@ +#region Boss Block +- type: achievement + id: FirstBoss + name: achievements-firstboss-name + description: achievements-firstboss-desc + key: FirstBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: firstboss } + +- type: achievement + id: Hierophant + name: achievements-hierophantboss-name + description: achievements-hierophantboss-desc + key: HierophantBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: hierophant } + +- type: achievement + id: Miner + name: achievements-minerboss-name + description: achievements-minerboss-desc + key: MinerBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: miner } + +- type: achievement + id: Legion + name: achievements-legionboss-name + description: achievements-legionboss-desc + key: LegionBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: legion } + +- type: achievement + id: Colossus + name: achievements-colossusboss-name + description: achievements-colossusboss-desc + key: ColossusBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: colossus } + +- type: achievement + id: AshDrake + name: achievements-ashdrakeboss-name + description: achievements-ashdrakeboss-desc + key: AshDrakeBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: drake } + +- type: achievement + id: Bubblegum + name: achievements-bubblegumboss-name + description: achievements-bubblegumboss-desc + key: BubblegumBoss + icon: { sprite: _Wega/Interface/achievements.rsi, state: bbgum } +#endregion Boss Block diff --git a/Resources/Prototypes/_Wega/ai_factions.yml b/Resources/Prototypes/_Wega/ai_factions.yml index a0f82f9e1eb..39f428e1756 100644 --- a/Resources/Prototypes/_Wega/ai_factions.yml +++ b/Resources/Prototypes/_Wega/ai_factions.yml @@ -17,3 +17,24 @@ - SimpleHostile - Xeno - Dragon + +- type: npcFaction + id: LavalandFauna + hostile: + - NanoTrasen + - Dragon + - Mouse + - Passive + - PetsNT + - SimpleHostile + - SimpleNeutral + - Syndicate + - Xeno + - Zombie + - Revolutionary + - Wizard + - Xenoborg + - AllHostile + - Vampire # Corvax-Wega-Vampire + - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland diff --git a/Resources/Prototypes/_Wega/ore.yml b/Resources/Prototypes/_Wega/ore.yml index 8774a44e022..35f7412e362 100644 --- a/Resources/Prototypes/_Wega/ore.yml +++ b/Resources/Prototypes/_Wega/ore.yml @@ -33,7 +33,6 @@ minOreYield: 1 maxOreYield: 2 - # Low yields - type: ore id: OrePlasmaCore @@ -64,3 +63,55 @@ OreSilverCore: 1 OreUraniumCore: 1 OreBananiumCore: 1 + +- type: ore + id: OreMagmite + oreEntity: MagmiteOre1 + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemRuby + oreEntity: GemRuby + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemSapphire + oreEntity: GemSapphire + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemEmerald + oreEntity: GemEmerald + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemTopaz + oreEntity: GemTopaz + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemRuperium + oreEntity: GemRuperium + minOreYield: 1 + maxOreYield: 2 + +- type: ore + id: GemHardenedShell + oreEntity: GemHardenedShell + minOreYield: 1 + maxOreYield: 2 + +- type: weightedRandomOre + id: RandomGemsDistributionStandard + weights: + GemRuby: 20 + GemSapphire: 20 + GemEmerald: 20 + GemTopaz: 20 + GemRuperium: 5 + GemHardenedShell: 5 diff --git a/Resources/Prototypes/_Wega/tags.yml b/Resources/Prototypes/_Wega/tags.yml index 8996aa8feb2..783fe40a237 100644 --- a/Resources/Prototypes/_Wega/tags.yml +++ b/Resources/Prototypes/_Wega/tags.yml @@ -127,6 +127,9 @@ - type: Tag id: SubdermalHeadImplant + +- type: Tag + id: DivineVocalCordsImplant # Surgery end # Synthetic Surgery @@ -280,18 +283,123 @@ - type: Tag id: CardTarot - + +- type: Tag + id: CanSwim + +- type: Tag + id: Oar + +- type: Tag + id: HandheldBeacon + +- type: Tag + id: DockLavalandStation + +- type: Tag + id: DockLavalandOutpost + +- type: Tag + id: DockPenalServitudeStation + +- type: Tag + id: DockPenalServitude + +- type: Tag + id: GunUpgradeAoE + +- type: Tag + id: GunUpgradeLifesteal + +- type: Tag + id: CrusherUpgrade + +- type: Tag + id: CrusherUpgradeLegion + +- type: Tag + id: CrusherUpgradeGoliath + +- type: Tag + id: CrusherUpgradeAncientGoliath + +- type: Tag + id: CrusherUpgradeWatcher + +- type: Tag + id: CrusherUpgradeMagmaWatcher + +- type: Tag + id: CrusherUpgradeMarrowWeaverPoisonfang + +- type: Tag + id: CrusherUpgradeFrostbiteWeaverFrostGland + +- type: Tag + id: CrusherUpgradeBDM + +- type: Tag + id: CrusherUpgradeAshDrake + +- type: Tag + id: CrusherUpgradeBubblegum + +- type: Tag + id: CrusherUpgradeColossus + +- type: Tag + id: CrusherUpgradeHierophant + +- type: Tag + id: MaterialsThrophy + +- type: Tag + id: Sinew + +- type: Tag + id: Chitin + +- type: Tag + id: DragonHide + +- type: Tag + id: ExplorerSuit + +- type: Tag + id: ExplorerSuitKhaki + +- type: Tag + id: GoliathCloak + +- type: Tag + id: UniformUpgrade + +- type: Tag + id: BoneTalismanUpgrade + +- type: Tag + id: SkullCodpieceUpgrade + +- type: Tag + id: MagmiteAlloy + +- type: Tag + id: Gems + +- type: Tag + id: DataCrystal + - type: Tag id: HudMedSec - type: Tag id: Lightbox - + - type: Tag id: Itemborg - + - type: Tag id: Nanopast - type: Tag - id: AnomalyCore \ No newline at end of file + id: AnomalyCore diff --git a/Resources/Prototypes/_Wega/weather.yml b/Resources/Prototypes/_Wega/weather.yml new file mode 100644 index 00000000000..bd7ec8a2f6e --- /dev/null +++ b/Resources/Prototypes/_Wega/weather.yml @@ -0,0 +1,10 @@ +- type: weather + id: AcidicRain + sprite: + sprite: /Textures/_Wega/Effects/weather.rsi + state: acidic_rain + sound: + collection: Rain + params: + loop: true + volume: -10 diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 417e07c4f0a..233738af48f 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -12,6 +12,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: NanoTrasen @@ -27,6 +28,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Mouse @@ -67,6 +69,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: SimpleNeutral @@ -83,6 +86,9 @@ - AllHostile - Wizard - Xenoborg + - Vampire # Corvax-Wega-Vampire + - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Xeno @@ -99,6 +105,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Zombie @@ -116,6 +123,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Revolutionary @@ -129,6 +137,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: AllHostile @@ -148,6 +157,7 @@ - Xenoborg - Vampire # Corvax-Wega-Vampire - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Wizard @@ -165,6 +175,9 @@ - Revolutionary - AllHostile - Xenoborg + - Vampire # Corvax-Wega-Vampire + - BloodCult # Corvax-Wega-Blood-Cult + - LavalandFauna # Corvax-Wega-Lavaland - type: npcFaction id: Xenoborg @@ -175,9 +188,12 @@ - Zombie - Revolutionary - Wizard + - Vampire # Corvax-Wega-Vampire + - BloodCult # Corvax-Wega-Blood-Cult - Xeno # rivalry # cause they are hostile to them - SimpleHostile - AllHostile + - LavalandFauna # Corvax-Wega-Lavaland diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index 7a1a046aafc..84e87753d64 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -5,6 +5,7 @@ - type: ore id: OreSteel oreEntity: SteelOre1 + pointsPerUnit: 1 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 5 @@ -24,12 +25,14 @@ - type: ore id: OreGold oreEntity: GoldOre1 + pointsPerUnit: 18 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 3 - type: ore id: OreSilver oreEntity: SilverOre1 + pointsPerUnit: 16 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 3 @@ -43,24 +46,28 @@ - type: ore id: OrePlasma oreEntity: PlasmaOre1 + pointsPerUnit: 15 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 2 - type: ore id: OreUranium oreEntity: UraniumOre1 + pointsPerUnit: 30 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 2 - type: ore id: OreBananium oreEntity: BananiumOre1 + pointsPerUnit: 60 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 2 - type: ore id: OreDiamond oreEntity: DiamondOre1 + pointsPerUnit: 50 # Corvax-Wega-Lavaland minOreYield: 1 maxOreYield: 2 diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 4c686908f76..04e1f856bcf 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -129,6 +129,9 @@ { "name": "pda-miner" }, + { + "name": "pda-miner-medic" + }, { "name": "pda-ninja" }, @@ -165,6 +168,9 @@ { "name": "pda-roboticist" }, + { + "name": "pda-salvage-specialist" + }, { "name": "pda-science" }, diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-miner-medic.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-miner-medic.png new file mode 100644 index 00000000000..565c7c8ec82 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-miner-medic.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-salvage-specialist.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-salvage-specialist.png new file mode 100644 index 00000000000..bb82df68533 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-salvage-specialist.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-BACKPACK.png index deffd3744ae..eae7b377f0d 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-SUITSTORAGE.png index deffd3744ae..eae7b377f0d 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-SUITSTORAGE.png and b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json index 6074bd98753..31a485dba77 100644 --- a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord). Back/Suit sprites by Redbookcase (github).", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord). Back/Suit sprites by Redbookcase (github). Back/Suit Resprite by svarshiksatanist because cringe.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-BACKPACK.png index 799d1df667d..c6c333e3323 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-SUITSTORAGE.png index 799d1df667d..c6c333e3323 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-SUITSTORAGE.png and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json index 6074bd98753..31a485dba77 100644 --- a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord). Back/Suit sprites by Redbookcase (github).", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord). Back/Suit sprites by Redbookcase (github). Back/Suit Resprite by svarshiksatanist because cringe.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json index dc2dfe3059b..c7c28b10a60 100644 --- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json @@ -243,6 +243,12 @@ }, { "name": "gibtonite_inactive" + }, + { + "name": "rock_gems" + }, + { + "name": "rock_magmite" } ] } diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_gems.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_gems.png new file mode 100644 index 00000000000..5a87d715611 Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_gems.png differ diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_magmite.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_magmite.png new file mode 100644 index 00000000000..af1d50ccda2 Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_magmite.png differ diff --git a/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/equipped-ACCESSORIES.png b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/equipped-ACCESSORIES.png new file mode 100644 index 00000000000..a957925c49d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/equipped-ACCESSORIES.png differ diff --git a/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/icon.png new file mode 100644 index 00000000000..3685cd559b5 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/meta.json new file mode 100644 index 00000000000..96f4d44c933 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Accessories/bone_talisman.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG Station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-ACCESSORIES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/equipped-ACCESSORIES.png b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/equipped-ACCESSORIES.png new file mode 100644 index 00000000000..218e9a9447d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/equipped-ACCESSORIES.png differ diff --git a/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/icon.png new file mode 100644 index 00000000000..06a73a1d2ca Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/meta.json new file mode 100644 index 00000000000..96f4d44c933 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Accessories/skull_codpiece.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG Station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-ACCESSORIES", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/equipped-BELT.png b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/equipped-BELT.png new file mode 100644 index 00000000000..15f5d21face Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/icon.png new file mode 100644 index 00000000000..b95b5642aa2 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-left.png new file mode 100644 index 00000000000..e22a3f7d479 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-right.png new file mode 100644 index 00000000000..3141531ba4f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/meta.json new file mode 100644 index 00000000000..f502e94b9c4 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Belt/salvagewebbing.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/equipped-HAND.png b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/equipped-HAND.png new file mode 100644 index 00000000000..ecd964af558 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/icon.png new file mode 100644 index 00000000000..fa01f615a64 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/meta.json new file mode 100644 index 00000000000..882f8cca6fb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Hands/Gloves/concussive_gauntlets.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] + }, + { + "name": "equipped-HAND", + "directions": 4, + "delays": [ [ 0.1, 0.1 ], [ 0.1, 0.1 ], [ 0.1, 0.1 ], [ 0.1, 0.1 ] ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/equipped-HAND.png b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/equipped-HAND.png new file mode 100644 index 00000000000..0126ebb9599 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/icon.png new file mode 100644 index 00000000000..99121ab41bd Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/meta.json new file mode 100644 index 00000000000..305b2f405c2 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Hands/bone_bracers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG Station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..cb7b5362a53 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/icon.png new file mode 100644 index 00000000000..9e14df2993a Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/meta.json new file mode 100644 index 00000000000..8df990d9568 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Helmets/hostile_env.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..2cc8966a022 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/icon.png new file mode 100644 index 00000000000..d7f7023ac32 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/meta.json new file mode 100644 index 00000000000..8df990d9568 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..e7930d70501 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/icon.png new file mode 100644 index 00000000000..22d9f26e82f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/meta.json new file mode 100644 index 00000000000..e28b0bb38ae --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5879e864472 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/icon.png new file mode 100644 index 00000000000..625ad9f8152 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/meta.json new file mode 100644 index 00000000000..e28b0bb38ae --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_khaki_reinf.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..9da5e265d94 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/icon.png new file mode 100644 index 00000000000..d31561ce63c Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/meta.json new file mode 100644 index 00000000000..8df990d9568 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_med.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5e9459ce725 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/icon.png new file mode 100644 index 00000000000..6c464e08c1e Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/meta.json new file mode 100644 index 00000000000..e28b0bb38ae --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/explorerhood_reinf.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..34225ab14dc Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/icon.png new file mode 100644 index 00000000000..04bd496cecd Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/meta.json new file mode 100644 index 00000000000..8df990d9568 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Head/Hoods/Coat/pathfinder.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/equipped-NECK.png new file mode 100644 index 00000000000..c277d77b4b9 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/icon.png new file mode 100644 index 00000000000..c844517ec9f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_b.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/equipped-NECK.png new file mode 100644 index 00000000000..3db3d394b30 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/icon.png new file mode 100644 index 00000000000..8309027363e Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_bd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/equipped-NECK.png new file mode 100644 index 00000000000..1b3bdda71fb Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/icon.png new file mode 100644 index 00000000000..e3798fa9d76 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/meta.json new file mode 100644 index 00000000000..f66376a1475 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_dp.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/equipped-NECK.png new file mode 100644 index 00000000000..b485757e15c Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/icon.png new file mode 100644 index 00000000000..5d85c7a7d62 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_e.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/equipped-NECK.png new file mode 100644 index 00000000000..cc3148abf22 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/icon.png new file mode 100644 index 00000000000..f10d4e24b43 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_f.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/equipped-NECK.png new file mode 100644 index 00000000000..5ac6728749e Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/icon.png new file mode 100644 index 00000000000..bf1a2922b19 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_h.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/equipped-NECK.png new file mode 100644 index 00000000000..73c5d89cfdd Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/icon.png new file mode 100644 index 00000000000..4b14448a48d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_hol.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/equipped-NECK.png new file mode 100644 index 00000000000..a8e877a9cf5 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/icon.png new file mode 100644 index 00000000000..68b16c97f15 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_r.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/equipped-NECK.png new file mode 100644 index 00000000000..10a8602a0b0 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/icon.png new file mode 100644 index 00000000000..be07dc8f5a8 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_rup.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/equipped-NECK.png new file mode 100644 index 00000000000..e8f551247a8 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/icon.png new file mode 100644 index 00000000000..76b4922b957 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_s.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/equipped-NECK.png new file mode 100644 index 00000000000..c781d1dabaf Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/icon.png new file mode 100644 index 00000000000..078fe9197cb Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_sb.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/equipped-NECK.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/equipped-NECK.png new file mode 100644 index 00000000000..a6b0462ac8c Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/icon.png new file mode 100644 index 00000000000..5da805c72e8 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/meta.json new file mode 100644 index 00000000000..9e67ad01beb --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Neck/Misc/necklace_t.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made with love by Melissandra", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..af01bbca28f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..e7b19d4aa95 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ff3df3e9788 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/icon.png new file mode 100644 index 00000000000..5671afe7d58 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-left.png new file mode 100644 index 00000000000..aa5773346a5 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-right.png new file mode 100644 index 00000000000..7da7e6aebc0 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/meta.json new file mode 100644 index 00000000000..031a18ef5df --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise, resomi srite created by zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..10bc388992e Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..e075ac001d3 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..19146189397 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/icon.png new file mode 100644 index 00000000000..c412da935bf Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-left.png new file mode 100644 index 00000000000..7efd59e6726 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-right.png new file mode 100644 index 00000000000..d1efdbae600 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/meta.json new file mode 100644 index 00000000000..2ee4b3ab8c0 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..f02f32d3e95 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..e9674dab73e Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..59b415ecb04 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/icon.png new file mode 100644 index 00000000000..93bf73403a7 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-left.png new file mode 100644 index 00000000000..0a9dfe21d45 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-right.png new file mode 100644 index 00000000000..636df92a0dc Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/meta.json new file mode 100644 index 00000000000..2ee4b3ab8c0 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_khaki_reinf.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..bd1948c3cfe Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..e8cb3a81b4a Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..f18c026e8bf Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/icon.png new file mode 100644 index 00000000000..51af9a4e34c Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-left.png new file mode 100644 index 00000000000..ec4c67f9bf3 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-right.png new file mode 100644 index 00000000000..ba1bef1315b Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/meta.json new file mode 100644 index 00000000000..031a18ef5df --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_med.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise, resomi srite created by zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..69dedd54b82 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..c27efb2219c Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..87d9508192b Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/icon.png new file mode 100644 index 00000000000..0fe2abf0039 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-left.png new file mode 100644 index 00000000000..1259b48aa3d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-right.png new file mode 100644 index 00000000000..f8b220174b5 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/meta.json new file mode 100644 index 00000000000..2ee4b3ab8c0 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/explorer_suit_reinf.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist and zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..14262fe4115 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..4eb0c0685eb Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/icon.png new file mode 100644 index 00000000000..bacd6489771 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/meta.json new file mode 100644 index 00000000000..19f5d9b7256 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Armor/hostile_env.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..1186ff27932 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..9493b1e8c56 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..33d91e4f063 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/icon.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/icon.png new file mode 100644 index 00000000000..ddf8abb63fc Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-left.png new file mode 100644 index 00000000000..975d110f993 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-right.png new file mode 100644 index 00000000000..8dacbf8a496 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/meta.json b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/meta.json new file mode 100644 index 00000000000..f42e5cac576 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/OuterClothing/Coats/pathcloack.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..545d7235b24 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/icon.png new file mode 100644 index 00000000000..eef321b7b4f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-left.png new file mode 100644 index 00000000000..6d2134fd0e9 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-right.png new file mode 100644 index 00000000000..85e5c4aab1d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/meta.json new file mode 100644 index 00000000000..aacd7aad569 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..160915d1788 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/icon.png new file mode 100644 index 00000000000..e68d347b9e8 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-left.png new file mode 100644 index 00000000000..d00b6ec0e5b Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-right.png new file mode 100644 index 00000000000..8abae90a41f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/meta.json new file mode 100644 index 00000000000..aacd7aad569 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpskirt/explorer_khaki.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by zekins3366", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..6fa35e97726 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/icon.png new file mode 100644 index 00000000000..42517d884bf Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-left.png new file mode 100644 index 00000000000..6d2134fd0e9 Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-right.png new file mode 100644 index 00000000000..85e5c4aab1d Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/meta.json new file mode 100644 index 00000000000..0821a80b636 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..5bd70fe44ae Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/icon.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/icon.png new file mode 100644 index 00000000000..17eab456f5a Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-left.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-left.png new file mode 100644 index 00000000000..d00b6ec0e5b Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-right.png b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-right.png new file mode 100644 index 00000000000..8abae90a41f Binary files /dev/null and b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/meta.json b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/meta.json new file mode 100644 index 00000000000..0821a80b636 --- /dev/null +++ b/Resources/Textures/_Wega/Clothing/Uniforms/Jumpsuit/explorer_khaki.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/hand.png b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/hand.png new file mode 100644 index 00000000000..66d2dbc28b7 Binary files /dev/null and b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/hand.png differ diff --git a/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handin.png b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handin.png new file mode 100644 index 00000000000..df2d6982394 Binary files /dev/null and b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handin.png differ diff --git a/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handout.png b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handout.png new file mode 100644 index 00000000000..e0793fab8b7 Binary files /dev/null and b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/handout.png differ diff --git a/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/meta.json b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/meta.json new file mode 100644 index 00000000000..d426b91a85c --- /dev/null +++ b/Resources/Textures/_Wega/Effects/bubblegumeffects.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA 3.0", + "copyright": "Sprite created by svarshiksatanist (414799795463651332)", + "size": { + "x": 30, + "y": 53 + }, + "states": [ + { + "name": "hand" + }, + { + "name": "handin", + "delays": [ + [ 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05 ] + ] + }, + { + "name": "handout", + "delays": [ + [ 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/drakeeffects.rsi/meta.json b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/meta.json new file mode 100644 index 00000000000..886a5a4f99c --- /dev/null +++ b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA 3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/telegraphing/telegraph.dmi, safe by KianaBat(GitLab)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "target_circle", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "safe" + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/drakeeffects.rsi/safe.png b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/safe.png new file mode 100644 index 00000000000..1ec16a1441b Binary files /dev/null and b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/safe.png differ diff --git a/Resources/Textures/_Wega/Effects/drakeeffects.rsi/target_circle.png b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/target_circle.png new file mode 100644 index 00000000000..1774d49e3ed Binary files /dev/null and b/Resources/Textures/_Wega/Effects/drakeeffects.rsi/target_circle.png differ diff --git a/Resources/Textures/_Wega/Effects/effects96x96.rsi/landing.png b/Resources/Textures/_Wega/Effects/effects96x96.rsi/landing.png new file mode 100644 index 00000000000..7ab867b91a6 Binary files /dev/null and b/Resources/Textures/_Wega/Effects/effects96x96.rsi/landing.png differ diff --git a/Resources/Textures/_Wega/Effects/effects96x96.rsi/meta.json b/Resources/Textures/_Wega/Effects/effects96x96.rsi/meta.json new file mode 100644 index 00000000000..fb84f443983 --- /dev/null +++ b/Resources/Textures/_Wega/Effects/effects96x96.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA 3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "landing" + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/falling.rsi/falling_rock.png b/Resources/Textures/_Wega/Effects/falling.rsi/falling_rock.png new file mode 100644 index 00000000000..c7f288d208f Binary files /dev/null and b/Resources/Textures/_Wega/Effects/falling.rsi/falling_rock.png differ diff --git a/Resources/Textures/_Wega/Effects/falling.rsi/meta.json b/Resources/Textures/_Wega/Effects/falling.rsi/meta.json new file mode 100644 index 00000000000..5b37278176e --- /dev/null +++ b/Resources/Textures/_Wega/Effects/falling.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by zekins3366", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "falling_rock" + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastbegin.png b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastbegin.png new file mode 100644 index 00000000000..63cabde95f3 Binary files /dev/null and b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastbegin.png differ diff --git a/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastend.png b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastend.png new file mode 100644 index 00000000000..7c0977f5dfb Binary files /dev/null and b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/hierophantblastend.png differ diff --git a/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/meta.json b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/meta.json new file mode 100644 index 00000000000..6d3e07c9503 --- /dev/null +++ b/Resources/Textures/_Wega/Effects/hierophant_effects.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "hierophantblastbegin", + "directions": 4, + "delays": [ + [ 0.1, 0.08, 0.06, 0.04, 0.02, 0.125, 0.175 ], + [ 0.1, 0.08, 0.06, 0.04, 0.02, 0.125, 0.175 ], + [ 0.1, 0.08, 0.06, 0.04, 0.02, 0.125, 0.175 ], + [ 0.1, 0.08, 0.06, 0.04, 0.02, 0.125, 0.175 ] + ] + }, + { + "name": "hierophantblastend", + "directions": 4, + "delays": [ + [ 0.15, 0.1, 0.025, 0.05 ], + [ 0.15, 0.1, 0.025, 0.05 ], + [ 0.15, 0.1, 0.025, 0.05 ], + [ 0.15, 0.1, 0.025, 0.05 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Effects/weather.rsi/acidic_rain.png b/Resources/Textures/_Wega/Effects/weather.rsi/acidic_rain.png new file mode 100644 index 00000000000..a494a72d1ea Binary files /dev/null and b/Resources/Textures/_Wega/Effects/weather.rsi/acidic_rain.png differ diff --git a/Resources/Textures/_Wega/Effects/weather.rsi/meta.json b/Resources/Textures/_Wega/Effects/weather.rsi/meta.json new file mode 100644 index 00000000000..50c6b70f49a --- /dev/null +++ b/Resources/Textures/_Wega/Effects/weather.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "copyright": "acidic_rain Recolor created by zekins3366", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "acidic_rain", + "delays": [ + [ + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02, + 0.02 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/ShaftMinerMedic.png b/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/ShaftMinerMedic.png new file mode 100644 index 00000000000..f2498d42d09 Binary files /dev/null and b/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/ShaftMinerMedic.png differ diff --git a/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/meta.json index 4d0d3db5330..f190b3d62e5 100644 --- a/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_Wega/Interface/Misc/job_icons.rsi/meta.json @@ -22,6 +22,9 @@ { "name": "Postman" }, + { + "name": "ShaftMinerMedic" + }, { "name": "WardenHelper" } diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/bbgum.png b/Resources/Textures/_Wega/Interface/achievements.rsi/bbgum.png new file mode 100644 index 00000000000..36eb41a0111 Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/bbgum.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/colossus.png b/Resources/Textures/_Wega/Interface/achievements.rsi/colossus.png new file mode 100644 index 00000000000..0d04c1ed327 Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/colossus.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/drake.png b/Resources/Textures/_Wega/Interface/achievements.rsi/drake.png new file mode 100644 index 00000000000..8aa4b16852f Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/drake.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/firstboss.png b/Resources/Textures/_Wega/Interface/achievements.rsi/firstboss.png new file mode 100644 index 00000000000..c7f90afc90d Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/firstboss.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/hierophant.png b/Resources/Textures/_Wega/Interface/achievements.rsi/hierophant.png new file mode 100644 index 00000000000..e9c149ee358 Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/hierophant.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/legion.png b/Resources/Textures/_Wega/Interface/achievements.rsi/legion.png new file mode 100644 index 00000000000..7f61763d4ff Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/legion.png differ diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/meta.json b/Resources/Textures/_Wega/Interface/achievements.rsi/meta.json new file mode 100644 index 00000000000..1695395760c --- /dev/null +++ b/Resources/Textures/_Wega/Interface/achievements.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-3.0", + "copyright": "aken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 76, + "y": 76 + }, + "states": [ + { + "name": "firstboss" + }, + { + "name": "bbgum" + }, + { + "name": "colossus" + }, + { + "name": "drake" + }, + { + "name": "hierophant" + }, + { + "name": "legion" + }, + { + "name": "miner" + } + ] +} diff --git a/Resources/Textures/_Wega/Interface/achievements.rsi/miner.png b/Resources/Textures/_Wega/Interface/achievements.rsi/miner.png new file mode 100644 index 00000000000..b5cdf0953d9 Binary files /dev/null and b/Resources/Textures/_Wega/Interface/achievements.rsi/miner.png differ diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorer-hood.png b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorer-hood.png new file mode 100644 index 00000000000..f4dedad59a3 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorer-hood.png differ diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorersuit.png b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorersuit.png new file mode 100644 index 00000000000..281d05c8be2 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/equipped-explorersuit.png differ diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorer-hood.png b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorer-hood.png new file mode 100644 index 00000000000..b59ab649fe5 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorer-hood.png differ diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorersuit.png b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorersuit.png new file mode 100644 index 00000000000..bc3c6943cf4 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/explorersuit.png differ diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/meta.json index 32d0a3d64ba..b690a0d1077 100644 --- a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/meta.json +++ b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/meta.json @@ -38,6 +38,9 @@ { "name": "jackboots" }, + { + "name": "salvageboots" + }, { "name": "galoshes" }, @@ -125,6 +128,13 @@ "name": "equipped-bio", "directions": 4 }, + { + "name": "explorersuit" + }, + { + "name": "equipped-explorersuit", + "directions": 4 + }, { "name": "mask" }, @@ -250,6 +260,13 @@ "name": "on-equipped-hardhat", "directions": 4 }, + { + "name": "explorer-hood" + }, + { + "name": "equipped-explorer-hood", + "directions": 4 + }, { "name": "hood" }, diff --git a/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/salvageboots.png b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/salvageboots.png new file mode 100644 index 00000000000..e2059cff5c6 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Effects/dirt_overlay.rsi/salvageboots.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon.png b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon.png new file mode 100644 index 00000000000..5ea5cf2af76 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon_dead.png b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon_dead.png new file mode 100644 index 00000000000..0df3ab10bce Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/dragon_dead.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/meta.json new file mode 100644 index 00000000000..f85ba45f2dc --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 96, + "y": 46 + }, + "states": [ + { + "name": "dragon", + "directions": 4 + }, + { + "name": "dragon_dead" + }, + { + "name": "shadow" + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/shadow.png b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/shadow.png new file mode 100644 index 00000000000..9c6916bf62a Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/ashdrake.rsi/shadow.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/bubblegum.png b/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/bubblegum.png new file mode 100644 index 00000000000..e2e6d05e0a4 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/bubblegum.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/meta.json new file mode 100644 index 00000000000..41f0ee9581c --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/bubblegum.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "bubblegum", + "directions": 4, + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/colossus.png b/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/colossus.png new file mode 100644 index 00000000000..9274ee0efcc Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/colossus.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/meta.json new file mode 100644 index 00000000000..88dcc6f3c48 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/colossus.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "colossus", + "directions": 4, + "delays": [ + [ 1, 0.5, 0.5 ], + [ 1, 0.5, 0.5 ], + [ 1, 0.5, 0.5 ], + [ 1, 0.5, 0.5 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub.png b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub.png new file mode 100644 index 00000000000..e1e298f52d4 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub_dead.png b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub_dead.png new file mode 100644 index 00000000000..0250791a9cf Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/goldgrub_dead.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/meta.json new file mode 100644 index 00000000000..a2d2a6e0429 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/goldgrub.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 38, + "y": 32 + }, + "states": [ + { + "name": "goldgrub", + "directions": 4 + }, + { + "name": "goldgrub_dead" + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath1.png b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath1.png new file mode 100644 index 00000000000..68d6559a87e Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath1.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath2.png b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath2.png new file mode 100644 index 00000000000..68d6559a87e Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath2.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath_dead.png b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath_dead.png new file mode 100644 index 00000000000..2ce0c158511 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/goliath_dead.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/meta.json new file mode 100644 index 00000000000..d11f899c621 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/goliath.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goliath1", + "directions": 4 + }, + { + "name": "goliath2", + "directions": 4 + }, + { + "name": "goliath_dead" + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/hierophant.png b/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/hierophant.png new file mode 100644 index 00000000000..6fa6f989f46 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/hierophant.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/meta.json new file mode 100644 index 00000000000..a8a2d354821 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/hierophant.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "hierophant", + "delays": [ + [ + 0.5, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/dwarf_legion.png b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/dwarf_legion.png new file mode 100644 index 00000000000..5d8eb68f04f Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/dwarf_legion.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/legion.png b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/legion.png new file mode 100644 index 00000000000..2095d54493f Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/legion.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/meta.json new file mode 100644 index 00000000000..f90fce2d7c7 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/legion.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "legion", + "directions": 4 + }, + { + "name": "dwarf_legion", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_1.png b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_1.png new file mode 100644 index 00000000000..8703b262203 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_1.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_2.png b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_2.png new file mode 100644 index 00000000000..74b3a62b1c8 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_2.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_3.png b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_3.png new file mode 100644 index 00000000000..6063e006136 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/legion_head_3.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/meta.json new file mode 100644 index 00000000000..13599a9daf1 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/legionskull.rsi/meta.json @@ -0,0 +1,85 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "legion_head_1", + "directions": 4, + "delays": [ + [ + 0.25, + 0.25 + ], + [ + 0.25, + 0.25 + ], + [ + 0.25, + 0.25 + ], + [ + 0.25, + 0.25 + ] + ] + }, + { + "name": "legion_head_2", + "directions": 4, + "delays": [ + [ + 0.1, + 0.25, + 0.15 + ], + [ + 0.1, + 0.25, + 0.15 + ], + [ + 0.1, + 0.25, + 0.15 + ], + [ + 0.1, + 0.25, + 0.15 + ] + ] + }, + { + "name": "legion_head_3", + "directions": 4, + "delays": [ + [ + 0.05, + 0.25, + 0.2 + ], + [ + 0.05, + 0.25, + 0.2 + ], + [ + 0.05, + 0.25, + 0.2 + ], + [ + 0.05, + 0.25, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion.png new file mode 100644 index 00000000000..728d4d6982c Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion_e.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion_e.png new file mode 100644 index 00000000000..6e4cbc43b87 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/mega_legion_e.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/meta.json new file mode 100644 index 00000000000..21b7b977912 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mega_legion", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "mega_legion_e", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.1, + 0.2, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_eye.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_eye.png new file mode 100644 index 00000000000..fa155cc94ea Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_eye.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_left.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_left.png new file mode 100644 index 00000000000..6703892c6eb Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_left.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_right.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_right.png new file mode 100644 index 00000000000..fc6304482f9 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/mega_legion_right.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/meta.json new file mode 100644 index 00000000000..b7d6634f5d2 --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion64.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "mega_legion_left", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "mega_legion_eye", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "mega_legion_right", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/mega_legion.png b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/mega_legion.png new file mode 100644 index 00000000000..3532ec85004 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/mega_legion.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/meta.json new file mode 100644 index 00000000000..8de36448a6f --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/mega_legion96.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "mega_legion", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/meta.json b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/meta.json new file mode 100644 index 00000000000..2536e97fedd --- /dev/null +++ b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "weaver", + "directions": 4 + }, + { + "name": "weaver_ice", + "directions": 4 + }, + { + "name": "weaver_dead" + }, + { + "name": "weaver_ice_dead" + } + ] +} diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver.png b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver.png new file mode 100644 index 00000000000..4d744a58324 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_dead.png b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_dead.png new file mode 100644 index 00000000000..4f6165a88df Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_dead.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice.png b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice.png new file mode 100644 index 00000000000..559a959b2e0 Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice.png differ diff --git a/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice_dead.png b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice_dead.png new file mode 100644 index 00000000000..998acd9399e Binary files /dev/null and b/Resources/Textures/_Wega/Mobs/Lavaland/weaver.rsi/weaver_ice_dead.png differ diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/cactus_fruit.png b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/cactus_fruit.png new file mode 100644 index 00000000000..96f31395eaf Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/cactus_fruit.png differ diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/meta.json b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/meta.json new file mode 100644 index 00000000000..62d7b5421b8 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cactus_fruit" + }, + { + "name": "mushroom_cap" + }, + { + "name": "mushroom_leaf" + }, + { + "name": "mushroom_shavings" + }, + { + "name": "mushroom_stem" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_cap.png b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_cap.png new file mode 100644 index 00000000000..2533f37c429 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_cap.png differ diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_leaf.png b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_leaf.png new file mode 100644 index 00000000000..85ba4dd5e4b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_leaf.png differ diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_shavings.png b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_shavings.png new file mode 100644 index 00000000000..32f7061c9a3 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_shavings.png differ diff --git a/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_stem.png b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_stem.png new file mode 100644 index 00000000000..b900b1b29af Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Consumable/Food/flora.rsi/mushroom_stem.png differ diff --git a/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/base.png b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/base.png new file mode 100644 index 00000000000..8e662f8cc02 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/base.png differ diff --git a/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/meta.json b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/meta.json new file mode 100644 index 00000000000..ff0646fb48d --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TG Station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "off" + }, + { + "name": "unshaded", + "delays": [ + [ 1.8, 0.2 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/off.png b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/off.png new file mode 100644 index 00000000000..db0b6f9bed6 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/off.png differ diff --git a/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/unshaded.png b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/unshaded.png new file mode 100644 index 00000000000..6060a3a7319 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Devices/handheld_beacon.rsi/unshaded.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-left.png b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-left.png new file mode 100644 index 00000000000..c96a2db3dd2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-right.png b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-right.png new file mode 100644 index 00000000000..b7e718a4dce Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite.png b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite.png new file mode 100644 index 00000000000..679a1735fc6 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_2.png b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_2.png new file mode 100644 index 00000000000..95467fd5502 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_2.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_3.png b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_3.png new file mode 100644 index 00000000000..53e8fe36c40 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/magmite_3.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/meta.json index 7184d97589f..f2f8762bc45 100644 --- a/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/meta.json +++ b/Resources/Textures/_Wega/Objects/Materials/Sheets/metal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite taken from https://github.com/ss220-space/Paradise & Resprite created by svarshiksatanist", + "copyright": "Sprite taken from https://github.com/ss220-space/Paradise & Resprite created by svarshiksatanist, magmite created by svarshiksatanist and zekins3366", "size": { "x": 32, "y": 32 @@ -23,6 +23,32 @@ { "name": "runemetal-inhand-right", "directions": 4 + }, + { + "name": "magmite", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "magmite_2", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "magmite_3", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "magmite-inhand-left", + "directions": 4 + }, + { + "name": "magmite-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin.png b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin.png new file mode 100644 index 00000000000..5f0a4e1f905 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_2.png b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_2.png new file mode 100644 index 00000000000..020e1888ff2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_2.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_3.png b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_3.png new file mode 100644 index 00000000000..29e0528cb29 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/chitin_3.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/meta.json new file mode 100644 index 00000000000..266db184543 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Materials/chitin.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chitin" + }, + { + "name": "chitin_2" + }, + { + "name": "chitin_3" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide.png b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide.png new file mode 100644 index 00000000000..e1f1cfffade Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_2.png b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_2.png new file mode 100644 index 00000000000..64395b57331 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_2.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_3.png b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_3.png new file mode 100644 index 00000000000..47007ce1aed Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/dragon_hide_3.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/meta.json new file mode 100644 index 00000000000..2df59223a39 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Materials/dragon_hide.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dragon_hide" + }, + { + "name": "dragon_hide_2" + }, + { + "name": "dragon_hide_3" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/amber.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/amber.png new file mode 100644 index 00000000000..7f92eeb1158 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/amber.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/data.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/data.png new file mode 100644 index 00000000000..6228ec90e16 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/data.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/emerald.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/emerald.png new file mode 100644 index 00000000000..235066ab757 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/emerald.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/magma.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/magma.png new file mode 100644 index 00000000000..90ba2e41249 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/magma.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/meta.json new file mode 100644 index 00000000000..7ad93b23541 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "amber" + }, + { + "name": "data" + }, + { + "name": "emerald" + }, + { + "name": "magma" + }, + { + "name": "phoron" + }, + { + "name": "purple" + }, + { + "name": "red" + }, + { + "name": "ruby" + }, + { + "name": "rupee" + }, + { + "name": "sapphire" + }, + { + "name": "topaz" + }, + { + "name": "void" + }, + { + "name": "rupee_broken", + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "shine", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/phoron.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/phoron.png new file mode 100644 index 00000000000..585dec8abb5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/phoron.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/purple.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/purple.png new file mode 100644 index 00000000000..c56a7b374fa Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/purple.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/red.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/red.png new file mode 100644 index 00000000000..56ae15fb605 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/red.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/ruby.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/ruby.png new file mode 100644 index 00000000000..871b284cf50 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/ruby.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee.png new file mode 100644 index 00000000000..15429b3416a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee_broken.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee_broken.png new file mode 100644 index 00000000000..34b007d4d09 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/rupee_broken.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/sapphire.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/sapphire.png new file mode 100644 index 00000000000..593af669ba7 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/sapphire.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/shine.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/shine.png new file mode 100644 index 00000000000..dcd22a84e5f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/shine.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/topaz.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/topaz.png new file mode 100644 index 00000000000..c67feb7d87b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/topaz.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/gems.rsi/void.png b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/void.png new file mode 100644 index 00000000000..25005a19756 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/gems.rsi/void.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/ore.rsi/magmite.png b/Resources/Textures/_Wega/Objects/Materials/ore.rsi/magmite.png new file mode 100644 index 00000000000..9d5e9fc06e1 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/ore.rsi/magmite.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/ore.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/ore.rsi/meta.json new file mode 100644 index 00000000000..6c296d4e236 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Materials/ore.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "magmite", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/meta.json b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/meta.json new file mode 100644 index 00000000000..9c6345bb48a --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sinew" + }, + { + "name": "sinew_2" + }, + { + "name": "sinew_3" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew.png b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew.png new file mode 100644 index 00000000000..4e5ca89634f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_2.png b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_2.png new file mode 100644 index 00000000000..7ffc27476a6 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_2.png differ diff --git a/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_3.png b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_3.png new file mode 100644 index 00000000000..814fd3bad88 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Materials/sinew.rsi/sinew_3.png differ diff --git a/Resources/Textures/_Wega/Objects/Misc/books.rsi/fireself.png b/Resources/Textures/_Wega/Objects/Misc/books.rsi/fireself.png new file mode 100644 index 00000000000..1325374a444 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Misc/books.rsi/fireself.png differ diff --git a/Resources/Textures/_Wega/Objects/Misc/books.rsi/meta.json b/Resources/Textures/_Wega/Objects/Misc/books.rsi/meta.json new file mode 100644 index 00000000000..1bcf1c7255b --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Misc/books.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "fireself", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/capsule.png b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/capsule.png new file mode 100644 index 00000000000..827959d5492 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/capsule.png differ diff --git a/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/gold_capsule.png b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/gold_capsule.png new file mode 100644 index 00000000000..63efe70df9e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/gold_capsule.png differ diff --git a/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/meta.json b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/meta.json new file mode 100644 index 00000000000..0fb601862c2 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Misc/capsule.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "capsule" + }, + { + "name": "gold_capsule" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/meta.json b/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/meta.json new file mode 100644 index 00000000000..9ae79a15cec --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "salvage" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/salvage.png b/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/salvage.png new file mode 100644 index 00000000000..9e8ce7d744f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Misc/vouchers.rsi/salvage.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/dead.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/dead.png new file mode 100644 index 00000000000..901d52ae34d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/dead.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/equipped-HELMET.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..91ca7750dce Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/harvest.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/harvest.png new file mode 100644 index 00000000000..d8090324a81 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/harvest.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-left.png new file mode 100644 index 00000000000..ea9402e2423 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-right.png new file mode 100644 index 00000000000..4ff58ff105c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/meta.json new file mode 100644 index 00000000000..14e0ef04e88 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/produce.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/produce.png new file mode 100644 index 00000000000..8bb7056810c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/produce.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/seed.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/seed.png new file mode 100644 index 00000000000..f9830b795e5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/seed.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-1.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-1.png new file mode 100644 index 00000000000..fa80b5f5255 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-2.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-2.png new file mode 100644 index 00000000000..464c0a97631 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-3.png b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-3.png new file mode 100644 index 00000000000..17c24970b73 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Hydroponics/fireblossom.rsi/stage-3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-close.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-close.png new file mode 100644 index 00000000000..275a155d580 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-close.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-open.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-open.png new file mode 100644 index 00000000000..b8b9324357a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/bottle-open.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/meta.json new file mode 100644 index 00000000000..e224d944424 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/boat_bottle.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bottle-close" + }, + { + "name": "bottle-open" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/blue.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/blue.png new file mode 100644 index 00000000000..b9952ad809f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/blue.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/meta.json new file mode 100644 index 00000000000..e8a95bc024f --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "red" + }, + { + "name": "blue" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/red.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/red.png new file mode 100644 index 00000000000..1da89dcfe6d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/cube.rsi/red.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/icon.png new file mode 100644 index 00000000000..1ee28df7362 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/meta.json new file mode 100644 index 00000000000..4399c9f7aad --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dark_shard.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/icon.png new file mode 100644 index 00000000000..005460d5a5d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/meta.json new file mode 100644 index 00000000000..4399c9f7aad --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/dusty_shard.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1.png new file mode 100644 index 00000000000..3a51266b0cc Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1h.png new file mode 100644 index 00000000000..d5d18ed5b53 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2.png new file mode 100644 index 00000000000..1099a491a18 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2h.png new file mode 100644 index 00000000000..c96ca686d84 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3.png new file mode 100644 index 00000000000..a09d1d47845 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3h.png new file mode 100644 index 00000000000..1b47d6cf008 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4.png new file mode 100644 index 00000000000..8b212226842 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4h.png new file mode 100644 index 00000000000..3b1f7f1cc07 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/cactus4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1.png new file mode 100644 index 00000000000..88da8499d2b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1h.png new file mode 100644 index 00000000000..e68a1c84439 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2.png new file mode 100644 index 00000000000..02909813790 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2h.png new file mode 100644 index 00000000000..eef528f1dcb Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3.png new file mode 100644 index 00000000000..ae4ad337ea8 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3h.png new file mode 100644 index 00000000000..487ffa29669 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4.png new file mode 100644 index 00000000000..e3f386da762 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4h.png new file mode 100644 index 00000000000..1521c3f9294 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/fireblossom4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1.png new file mode 100644 index 00000000000..286e74a0b69 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1h.png new file mode 100644 index 00000000000..1e783383fbf Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2.png new file mode 100644 index 00000000000..7f08f8aad5e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2h.png new file mode 100644 index 00000000000..f403aa93d16 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3.png new file mode 100644 index 00000000000..b24385b47e9 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3h.png new file mode 100644 index 00000000000..fe28f002abb Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4.png new file mode 100644 index 00000000000..605cd9e6d29 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4h.png new file mode 100644 index 00000000000..c7d9f29bd2c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/l_mushroom4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/meta.json new file mode 100644 index 00000000000..8060bb8b016 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/meta.json @@ -0,0 +1,155 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cactus1" + }, + { + "name": "cactus2" + }, + { + "name": "cactus3" + }, + { + "name": "cactus4" + }, + { + "name": "cactus1h" + }, + { + "name": "cactus2h" + }, + { + "name": "cactus3h" + }, + { + "name": "cactus4h" + }, + { + "name": "fireblossom1" + }, + { + "name": "fireblossom2" + }, + { + "name": "fireblossom3" + }, + { + "name": "fireblossom4" + }, + { + "name": "fireblossom1h" + }, + { + "name": "fireblossom2h" + }, + { + "name": "fireblossom3h" + }, + { + "name": "fireblossom4h" + }, + { + "name": "l_mushroom1" + }, + { + "name": "l_mushroom2" + }, + { + "name": "l_mushroom3" + }, + { + "name": "l_mushroom4" + }, + { + "name": "l_mushroom1h" + }, + { + "name": "l_mushroom2h" + }, + { + "name": "l_mushroom3h" + }, + { + "name": "l_mushroom4h" + }, + { + "name": "r_mushroom1" + }, + { + "name": "r_mushroom2" + }, + { + "name": "r_mushroom3" + }, + { + "name": "r_mushroom4" + }, + { + "name": "r_mushroom1h" + }, + { + "name": "r_mushroom2h" + }, + { + "name": "r_mushroom3h" + }, + { + "name": "r_mushroom4h" + }, + { + "name": "s_mushroom1" + }, + { + "name": "s_mushroom2" + }, + { + "name": "s_mushroom3" + }, + { + "name": "s_mushroom4" + }, + { + "name": "s_mushroom1h" + }, + { + "name": "s_mushroom2h" + }, + { + "name": "s_mushroom3h" + }, + { + "name": "s_mushroom4h" + }, + { + "name": "t_mushroom1" + }, + { + "name": "t_mushroom2" + }, + { + "name": "t_mushroom3" + }, + { + "name": "t_mushroom4" + }, + { + "name": "t_mushroom1h" + }, + { + "name": "t_mushroom2h" + }, + { + "name": "t_mushroom3h" + }, + { + "name": "t_mushroom4h" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1.png new file mode 100644 index 00000000000..bae1dd73015 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1h.png new file mode 100644 index 00000000000..ca88af12e50 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2.png new file mode 100644 index 00000000000..e3c62362e36 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2h.png new file mode 100644 index 00000000000..f8b121e7694 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3.png new file mode 100644 index 00000000000..a25e914f134 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3h.png new file mode 100644 index 00000000000..a99b472949a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4.png new file mode 100644 index 00000000000..b569f7828a1 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4h.png new file mode 100644 index 00000000000..b27df022db2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/r_mushroom4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1.png new file mode 100644 index 00000000000..0691142b03b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1h.png new file mode 100644 index 00000000000..89277f00c62 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2.png new file mode 100644 index 00000000000..19132bc4229 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2h.png new file mode 100644 index 00000000000..3866fd7ed2f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3.png new file mode 100644 index 00000000000..c52cdf4c3ac Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3h.png new file mode 100644 index 00000000000..3a33017219d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4.png new file mode 100644 index 00000000000..a1680093e04 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4h.png new file mode 100644 index 00000000000..712825d1abd Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/s_mushroom4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1.png new file mode 100644 index 00000000000..96f25084087 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1h.png new file mode 100644 index 00000000000..c32ec1fe3c2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom1h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2.png new file mode 100644 index 00000000000..c4d1644bda4 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2h.png new file mode 100644 index 00000000000..f073bf50336 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom2h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3.png new file mode 100644 index 00000000000..c1c2fb368ed Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3h.png new file mode 100644 index 00000000000..fc617c276ac Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom3h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4.png new file mode 100644 index 00000000000..c61a7af4e41 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4h.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4h.png new file mode 100644 index 00000000000..c463b273840 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/flora.rsi/t_mushroom4h.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/icon.png new file mode 100644 index 00000000000..80264886ccc Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/meta.json new file mode 100644 index 00000000000..9018571beca --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/jaunter.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 3, 0.1, 3, 0.1 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-BACKPACK.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..5d31d2a5e5c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..5d31d2a5e5c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/icon.png new file mode 100644 index 00000000000..564b7d9ab0e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-left.png new file mode 100644 index 00000000000..7b868e42215 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-right.png new file mode 100644 index 00000000000..1b751b2276d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/meta.json new file mode 100644 index 00000000000..a3d96b1bab2 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/lavastaff.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ 0.2, 0.2 ], + [ 0.2, 0.2 ], + [ 0.2, 0.2 ], + [ 0.2, 0.2 ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ 0.2, 0.2 ], + [ 0.2, 0.2 ], + [ 0.2, 0.2 ], + [ 0.2, 0.2 ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4, + "delays": [ + [ 1.6, 0.4 ], + [ 1.6, 0.4 ], + [ 1.6, 0.4 ], + [ 1.6, 0.4 ] + ] + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4, + "delays": [ + [ 1.6, 0.4 ], + [ 1.6, 0.4 ], + [ 1.6, 0.4 ], + [ 1.6, 0.4 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_active.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_active.png new file mode 100644 index 00000000000..02a22ea184e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_active.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_base.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_base.png new file mode 100644 index 00000000000..df9da6286cc Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/icon_base.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/meta.json new file mode 100644 index 00000000000..da46151e4a2 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/legioncore.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_base" + }, + { + "name": "icon_active", + "delays": [ [ 0.1, 0.2, 0.1, 0.1, 0.4 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/icon.png new file mode 100644 index 00000000000..3780bbeced4 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-left.png new file mode 100644 index 00000000000..ef32d2af867 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-right.png new file mode 100644 index 00000000000..a389be1e2a4 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/meta.json new file mode 100644 index 00000000000..59941e097c3 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/oar.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-left.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-left.png new file mode 100644 index 00000000000..f492f7eb63f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-right.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-right.png new file mode 100644 index 00000000000..551171f977a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/active-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-left.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-left.png new file mode 100644 index 00000000000..ee8484dc605 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-right.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-right.png new file mode 100644 index 00000000000..860c9b7b519 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/dormant-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_active.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_active.png new file mode 100644 index 00000000000..ebe6bc146b6 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_active.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_dormant.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_dormant.png new file mode 100644 index 00000000000..9d76c5f26af Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/icon_dormant.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/meta.json new file mode 100644 index 00000000000..2e323ead8f0 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/rod_asclepius.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_dormant" + }, + { + "name": "icon_active", + "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 ] ] + }, + { + "name": "dormant-inhand-left", + "directions": 4 + }, + { + "name": "dormant-inhand-right", + "directions": 4 + }, + { + "name": "active-inhand-left", + "directions": 4 + }, + { + "name": "active-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/icon.png new file mode 100644 index 00000000000..077eab77f64 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/meta.json new file mode 100644 index 00000000000..12fb348816c --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/talisman.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 0.1, 0.1, 0.1 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/icon.png new file mode 100644 index 00000000000..83b417be311 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/meta.json new file mode 100644 index 00000000000..4dc29c4aeb8 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/transfer.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ancient_tendril.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ancient_tendril.png new file mode 100644 index 00000000000..48f65dfe221 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ancient_tendril.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/claws.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/claws.png new file mode 100644 index 00000000000..0e37f758390 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/claws.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/eye.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/eye.png new file mode 100644 index 00000000000..720f3d9bd32 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/eye.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/fang.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/fang.png new file mode 100644 index 00000000000..7232f7314b8 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/fang.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_gland.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_gland.png new file mode 100644 index 00000000000..a039eb7ae4d Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_gland.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_wing.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_wing.png new file mode 100644 index 00000000000..27fd4474ec9 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/ice_wing.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/magma_wing.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/magma_wing.png new file mode 100644 index 00000000000..f2c78a668eb Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/magma_wing.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/meta.json new file mode 100644 index 00000000000..58f2f5bf9bf --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/meta.json @@ -0,0 +1,51 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ancient_tendril" + }, + { + "name": "claws" + }, + { + "name": "eye" + }, + { + "name": "fang" + }, + { + "name": "ice_gland" + }, + { + "name": "ice_wing" + }, + { + "name": "magma_wing" + }, + { + "name": "skull" + }, + { + "name": "spike" + }, + { + "name": "tendril" + }, + { + "name": "tubes" + }, + { + "name": "vortex", + "delays": [ [ 2, 0.25, 0.22, 0.2, 0.17, 0.15, 0.12, 0.1, 0.07, 0.05, 0.25, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04, 0.03, 0.02, 0.01 ] ] + }, + { + "name": "wing" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/skull.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/skull.png new file mode 100644 index 00000000000..47456d1221b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/skull.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/spike.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/spike.png new file mode 100644 index 00000000000..7e1c6d5da61 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/spike.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tendril.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tendril.png new file mode 100644 index 00000000000..4e8bc24880f Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tendril.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tubes.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tubes.png new file mode 100644 index 00000000000..d9098259a97 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/tubes.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/vortex.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/vortex.png new file mode 100644 index 00000000000..d60630ab686 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/vortex.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/wing.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/wing.png new file mode 100644 index 00000000000..cf3abf75bcd Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/trophies.rsi/wing.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/icon.png new file mode 100644 index 00000000000..a97569378ae Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/meta.json new file mode 100644 index 00000000000..0ed9b9c07e7 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/vial.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ 0.8, 0.1, 0.3, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/icon.png b/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/icon.png new file mode 100644 index 00000000000..fa3b6882dec Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/meta.json new file mode 100644 index 00000000000..4dc29c4aeb8 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Specific/Lavaland/voicegod.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen.png b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen.png new file mode 100644 index 00000000000..046881f651b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen_empty.png b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen_empty.png new file mode 100644 index 00000000000..d3d33e609e9 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/bluepen_empty.png differ diff --git a/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/meta.json b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/meta.json index 733082d0981..6209dfcee2b 100644 --- a/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/meta.json +++ b/Resources/Textures/_Wega/Objects/Specific/Medical/medipen.rsi/meta.json @@ -1,12 +1,18 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "tgstation at 986af32e22a88dae14fd147d812a5a4d27c1bc30 | stimpen sprites made by PuroSlavKing (Github) for Space Station 14. Nearly all resprited by joshepvodka, in-hand sprites by SeamLesss (github)", + "copyright": "bluepen taken from https://github.com/ParadiseSS13/Paradise, tgstation at 986af32e22a88dae14fd147d812a5a4d27c1bc30 | stimpen sprites made by PuroSlavKing (Github) for Space Station 14. Nearly all resprited by joshepvodka, in-hand sprites by SeamLesss (github)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "bluepen" + }, + { + "name": "bluepen_empty" + }, { "name": "ertpen" }, diff --git a/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/meta.json b/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/meta.json new file mode 100644 index 00000000000..e5f639d4958 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "modkit_crystal" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/modkit_crystal.png b/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/modkit_crystal.png new file mode 100644 index 00000000000..139a836d9dc Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Tools/upgrade.rsi/modkit_crystal.png differ diff --git a/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/boat.png b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/boat.png new file mode 100644 index 00000000000..d98303ccf79 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/boat.png differ diff --git a/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/dragon_boat.png b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/dragon_boat.png new file mode 100644 index 00000000000..275e6fd73f5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/dragon_boat.png differ diff --git a/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/meta.json b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/meta.json new file mode 100644 index 00000000000..f621ee074e1 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Vehicles/boat.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "size": { + "x": 36, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TerraGov-Marine-Corps at commit https://github.com/tgstation/TerraGov-Marine-Corps/blob/ded67dce88183b6dbca13d324370801d0fd976a0/icons/obj/vehicles.dmi, modified by EmoGarbage404", + "states": [ + { + "name": "boat", + "directions": 4 + }, + { + "name": "dragon_boat", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/animation-icon.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/animation-icon.png new file mode 100644 index 00000000000..fa29fe1455c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/animation-icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-BELT.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-BELT.png new file mode 100644 index 00000000000..00a04e17c39 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..00a04e17c39 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/icon.png new file mode 100644 index 00000000000..81dbc17d4d8 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-left.png new file mode 100644 index 00000000000..9f27f8be865 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-right.png new file mode 100644 index 00000000000..0fc177ef3f1 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/meta.json new file mode 100644 index 00000000000..714a69c0e9e --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite created by svarshiksatanist (414799795463651332 on discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "animation-icon", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..486e67d0b99 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..8ab6bab1b8c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Basic/magmite_kinetic_accelerator.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/icon.png new file mode 100644 index 00000000000..b42f8e99d35 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-left.png new file mode 100644 index 00000000000..3c82f6edc2a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-right.png new file mode 100644 index 00000000000..027293f99a3 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/meta.json new file mode 100644 index 00000000000..5d634085299 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/adv_cutter.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon-uncharged.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon-uncharged.png new file mode 100644 index 00000000000..5744fd2d08a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon-uncharged.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon.png new file mode 100644 index 00000000000..5401db5e52b Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-left.png new file mode 100644 index 00000000000..a99825ea64e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-right.png new file mode 100644 index 00000000000..e7645e91049 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/meta.json new file mode 100644 index 00000000000..792d125f839 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_cutter.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-uncharged", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/base.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/base.png new file mode 100644 index 00000000000..731a41bf02c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/base.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-left.png new file mode 100644 index 00000000000..e7efd1c81ee Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-right.png new file mode 100644 index 00000000000..02a5bc2cc16 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-0.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-0.png new file mode 100644 index 00000000000..6d4445aac81 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-1.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-1.png new file mode 100644 index 00000000000..8feaa0c2252 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-2.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-2.png new file mode 100644 index 00000000000..e8e66287aef Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/meta.json new file mode 100644 index 00000000000..08f4545c0d3 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/magmite_shotgun_cutter.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tg station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-0", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/base.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/base.png new file mode 100644 index 00000000000..8bf216c9432 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/base.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-left.png new file mode 100644 index 00000000000..878252c6adc Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-right.png new file mode 100644 index 00000000000..289f69f9902 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-0.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-0.png new file mode 100644 index 00000000000..aab42ade3a5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-1.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-1.png new file mode 100644 index 00000000000..9f9cb34a561 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-2.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-2.png new file mode 100644 index 00000000000..3e531643f36 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/meta.json new file mode 100644 index 00000000000..986051cf489 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Plasma/shotgun_cutter.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tg station https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-0", + "delays": [ + [ 1, 0.3 ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/meta.json index 2a7a7a869dd..b6068b0dfeb 100644 --- a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/meta.json +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/meta.json @@ -8,7 +8,7 @@ }, "states": [ { - "name": "icon" + "name": "plasma" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/plasma.png similarity index 100% rename from Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/icon.png rename to Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/bullet_cutter.rsi/plasma.png diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/lavastaff.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/lavastaff.png new file mode 100644 index 00000000000..4391084ef73 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/lavastaff.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/magmabolt.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/magmabolt.png new file mode 100644 index 00000000000..81d8f36d6e2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/magmabolt.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json index 73089f38f99..8772bc18f67 100644 --- a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json @@ -10,6 +10,14 @@ { "name": "blood_bolt", "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] + }, + { + "name": "magmabolt", + "delays": [ [ 0.1, 0.1 ] ] + }, + { + "name": "lavastaff", + "delays": [ [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] ] } ] } diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json new file mode 100644 index 00000000000..3417afbe4ca --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "throwing_knife" + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/throwing_knife.png b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/throwing_knife.png new file mode 100644 index 00000000000..37957088a65 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/throwing_knife.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/icon.png new file mode 100644 index 00000000000..95cdcfb03ac Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-left.png new file mode 100644 index 00000000000..de6c2da017a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-right.png new file mode 100644 index 00000000000..e6fa605e2da Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/meta.json new file mode 100644 index 00000000000..6f6eddbabd0 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/cleaving_saw.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/icon.png new file mode 100644 index 00000000000..e521e91fe58 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-left.png new file mode 100644 index 00000000000..e319400e08a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-right.png new file mode 100644 index 00000000000..3c709a0d8c8 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/meta.json new file mode 100644 index 00000000000..bcb43cfc72f --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/cursed_katana.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ [ 0.1, 0.1, 0.1, 0.1 ] ] + }, + { + "name": "inhand-left", + "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": "inhand-right", + "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 ] ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/icon.png new file mode 100644 index 00000000000..95e020f1123 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/meta.json new file mode 100644 index 00000000000..42663cd0dd6 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from Yogstation at yes", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-left.png new file mode 100644 index 00000000000..c1ddab648b5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-right.png new file mode 100644 index 00000000000..685f4df5c48 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/meta.json new file mode 100644 index 00000000000..59ba14ab886 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/hierophant_club64.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from Yogstation at ", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "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": "inhand-right", + "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 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-BACKPACK.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..d49f6144c6e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..d49f6144c6e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon-uncharged.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon-uncharged.png new file mode 100644 index 00000000000..017a1ae51ad Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon-uncharged.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon.png new file mode 100644 index 00000000000..f4cc7e9fce1 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-left.png new file mode 100644 index 00000000000..769164878a5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-right.png new file mode 100644 index 00000000000..a6ad254cb02 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/meta.json new file mode 100644 index 00000000000..3ace31598d3 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-uncharged", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..e904c602ff5 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..005d03b360e Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-BACKPACK.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..48bb31d90dd Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..48bb31d90dd Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon-uncharged.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon-uncharged.png new file mode 100644 index 00000000000..d354e3420ee Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon-uncharged.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon.png new file mode 100644 index 00000000000..bea0f0374ba Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-left.png new file mode 100644 index 00000000000..24a8f70f94c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-right.png new file mode 100644 index 00000000000..6de0324b8d0 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/meta.json new file mode 100644 index 00000000000..dd1cbe3e632 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by svarshiksatanist", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-uncharged", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..5cd9ac76120 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..86d4c5a4928 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/magmitecrusher_glaive.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/icon.png new file mode 100644 index 00000000000..32bd024b79c Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-left.png new file mode 100644 index 00000000000..484d01fc8e0 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-right.png new file mode 100644 index 00000000000..16b94766fc0 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/meta.json new file mode 100644 index 00000000000..d6b5fb800da --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/spectral_blade.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ 0.1, 0.1 ], + [ 0.1, 0.1 ], + [ 0.1, 0.1 ], + [ 0.1, 0.1 ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ 0.1, 0.1 ], + [ 0.1, 0.1 ], + [ 0.1, 0.1 ], + [ 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-BACKPACK.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..5ded62d26e2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..5ded62d26e2 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/icon.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/icon.png new file mode 100644 index 00000000000..f23bbb2bc6a Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-left.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-left.png new file mode 100644 index 00000000000..c0be72a4bac Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-right.png b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-right.png new file mode 100644 index 00000000000..2a1eadad1b8 Binary files /dev/null and b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/meta.json b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/meta.json new file mode 100644 index 00000000000..54ecf5a2c47 --- /dev/null +++ b/Resources/Textures/_Wega/Objects/Weapons/Melee/spell_blade.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ 0.5, 0.2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ 0.5, 0.2, 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.5, 0.2, 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.5, 0.2, 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.5, 0.2, 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": "inhand-right", + "directions": 4, + "delays": [ + [ 0.5, 0.2, 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.5, 0.2, 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.5, 0.2, 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.5, 0.2, 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": "equipped-BACKPACK", + "directions": 4, + "delays": [ + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ] + ] + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4, + "delays": [ + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ], + [ 0.8, 0.1, 0.1, 0.5, 0.1, 0.1, 0.4 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake.png b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake.png new file mode 100644 index 00000000000..d10642bf4f3 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake.png differ diff --git a/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake_falling.png b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake_falling.png new file mode 100644 index 00000000000..887d160fbe6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/drake_falling.png differ diff --git a/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/meta.json b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/meta.json new file mode 100644 index 00000000000..bcd59ada07f --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Decoration/statues.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "drake" + }, + { + "name": "drake_falling" + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil.png b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil.png new file mode 100644 index 00000000000..9b72de06494 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil.png differ diff --git a/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil_a.png b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil_a.png new file mode 100644 index 00000000000..3fd10188e7b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/anvil_a.png differ diff --git a/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/meta.json b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/meta.json new file mode 100644 index 00000000000..cedfa3a80c4 --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Machines/anvil.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "anvil" + }, + { + "name": "anvil_a", + "delays": [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/ash_walker_nest.png b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/ash_walker_nest.png new file mode 100644 index 00000000000..a43b8798ff6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/ash_walker_nest.png differ diff --git a/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/glow.png b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/glow.png new file mode 100644 index 00000000000..a7dd099b8ca Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/glow.png differ diff --git a/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/meta.json b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/meta.json new file mode 100644 index 00000000000..d24b3219d27 --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ss220-space/Paradise, Resprite by melissandravov (751536199180484698) on discord", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "tendril", + "delays": [ + [ + 0.5, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "glow", + "delays": [ + [ + 0.5, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ash_walker_nest" + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/tendril.png b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/tendril.png new file mode 100644 index 00000000000..981d6a737a9 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Specific/Lavaland/tendril.rsi/tendril.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/base.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/base.png new file mode 100644 index 00000000000..2c83bc2ddaf Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/base.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/closed.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/closed.png new file mode 100644 index 00000000000..85e915367c6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/closed.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/icon.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/icon.png new file mode 100644 index 00000000000..2ef10e0691f Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/icon.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/meta.json b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/meta.json new file mode 100644 index 00000000000..cdeb479dfe3 --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/open.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/open.png new file mode 100644 index 00000000000..a5effdafcc9 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/open.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/sparking.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/sparking.png new file mode 100644 index 00000000000..87b78b9b465 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/sparking.png differ diff --git a/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/welded.png b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/welded.png new file mode 100644 index 00000000000..311739a2701 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Storage/Crates/necrocrate.rsi/welded.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/full.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/full.png new file mode 100644 index 00000000000..993d8ff0145 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/full.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant0.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant0.png new file mode 100644 index 00000000000..c1c119a032a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant0.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant1.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant1.png new file mode 100644 index 00000000000..317d025566e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant1.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant2.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant2.png new file mode 100644 index 00000000000..c1c119a032a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant2.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant3.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant3.png new file mode 100644 index 00000000000..317d025566e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant3.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant4.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant4.png new file mode 100644 index 00000000000..b30d5f6b0cd Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant4.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant5.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant5.png new file mode 100644 index 00000000000..b342e17638a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant5.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant6.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant6.png new file mode 100644 index 00000000000..b30d5f6b0cd Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant6.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant7.png b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant7.png new file mode 100644 index 00000000000..81ef1259cc8 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/hierophant7.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/meta.json b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/meta.json new file mode 100644 index 00000000000..66fdddeb11b --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Walls/hierophant.rsi/meta.json @@ -0,0 +1,97 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full", + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant0", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant1", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant2", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant3", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant4", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant5", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant6", + "directions": 4, + "delays": [ + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 2, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "hierophant7", + "directions": 4, + "delays": [ + [ 0.9, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.9, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.9, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.9, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/full.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/full.png new file mode 100644 index 00000000000..ff628425620 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/full.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp0.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp0.png new file mode 100644 index 00000000000..447e48d33cd Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp0.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp1.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp1.png new file mode 100644 index 00000000000..92d07b74c0f Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp1.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp2.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp2.png new file mode 100644 index 00000000000..447e48d33cd Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp2.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp3.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp3.png new file mode 100644 index 00000000000..92d07b74c0f Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp3.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp4.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp4.png new file mode 100644 index 00000000000..b55f78e315b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp4.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp5.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp5.png new file mode 100644 index 00000000000..22f0b1ecac9 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp5.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp6.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp6.png new file mode 100644 index 00000000000..b55f78e315b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp6.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp7.png b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp7.png new file mode 100644 index 00000000000..735a4286606 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/hierotemp7.png differ diff --git a/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/meta.json b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/meta.json new file mode 100644 index 00000000000..6680663fcef --- /dev/null +++ b/Resources/Textures/_Wega/Structures/Walls/hierophant_temp.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation", + "states": [ + { + "name": "full" + }, + { + "name": "hierotemp0", + "directions": 4 + }, + { + "name": "hierotemp1", + "directions": 4 + }, + { + "name": "hierotemp2", + "directions": 4 + }, + { + "name": "hierotemp3", + "directions": 4 + }, + { + "name": "hierotemp4", + "directions": 4 + }, + { + "name": "hierotemp5", + "directions": 4 + }, + { + "name": "hierotemp6", + "directions": 4 + }, + { + "name": "hierotemp7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block1.png new file mode 100644 index 00000000000..da26577b8e1 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block2.png new file mode 100644 index 00000000000..230915b9e30 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block3.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block3.png new file mode 100644 index 00000000000..f83e3762d0e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block4.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block4.png new file mode 100644 index 00000000000..6504da1594d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_block4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center1.png new file mode 100644 index 00000000000..db8a7094703 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center2.png new file mode 100644 index 00000000000..79d8a5e2154 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center3.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center3.png new file mode 100644 index 00000000000..a718c651912 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center4.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center4.png new file mode 100644 index 00000000000..2503052367b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_center4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab1.png new file mode 100644 index 00000000000..394cdac1a93 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab2.png new file mode 100644 index 00000000000..1118d0e8dd9 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab3.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab3.png new file mode 100644 index 00000000000..b50736c5422 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab4.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab4.png new file mode 100644 index 00000000000..d3408521463 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_slab4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding1.png new file mode 100644 index 00000000000..70f8f82911b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding2.png new file mode 100644 index 00000000000..952a67e8508 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile1.png new file mode 100644 index 00000000000..0b13ec0643c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile2.png new file mode 100644 index 00000000000..9496b93baec Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_surrounding_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile1.png new file mode 100644 index 00000000000..b4b87650ecd Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile10.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile10.png new file mode 100644 index 00000000000..f7ccda68f81 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile10.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile11.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile11.png new file mode 100644 index 00000000000..516399d833d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile11.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile12.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile12.png new file mode 100644 index 00000000000..f378aec7446 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile12.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile13.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile13.png new file mode 100644 index 00000000000..c45d0278f2d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile13.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile14.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile14.png new file mode 100644 index 00000000000..acd1ffa2211 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile14.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile15.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile15.png new file mode 100644 index 00000000000..a419fcc8f39 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile15.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile16.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile16.png new file mode 100644 index 00000000000..ab24c573d3c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile16.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile17.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile17.png new file mode 100644 index 00000000000..8f49a7dc76f Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile17.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile18.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile18.png new file mode 100644 index 00000000000..dc041987fe7 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile18.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile19.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile19.png new file mode 100644 index 00000000000..079b63bef12 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile19.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile2.png new file mode 100644 index 00000000000..104ab16c3a9 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile20.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile20.png new file mode 100644 index 00000000000..fc2961f808c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile20.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile21.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile21.png new file mode 100644 index 00000000000..17113e51153 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile21.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile22.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile22.png new file mode 100644 index 00000000000..e78d7eb9dd2 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile22.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile23.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile23.png new file mode 100644 index 00000000000..5ce3a6b85c0 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile23.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile24.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile24.png new file mode 100644 index 00000000000..39ceeafae2b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile24.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile3.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile3.png new file mode 100644 index 00000000000..248fdc0bd0d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile4.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile4.png new file mode 100644 index 00000000000..1b90e9db4ef Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile5.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile5.png new file mode 100644 index 00000000000..7dd13104b4d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile5.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile6.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile6.png new file mode 100644 index 00000000000..af80b1efdf6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile6.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile7.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile7.png new file mode 100644 index 00000000000..bb18d86357e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile7.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile8.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile8.png new file mode 100644 index 00000000000..96feeaf02b6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile8.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile9.png b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile9.png new file mode 100644 index 00000000000..70b0b697bc6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/burnt_tile9.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block1.png new file mode 100644 index 00000000000..674bb65ca77 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block2.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block2.png new file mode 100644 index 00000000000..47db793a860 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block3.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block3.png new file mode 100644 index 00000000000..82249d51514 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block4.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block4.png new file mode 100644 index 00000000000..869cac83f0d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_block4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center1.png new file mode 100644 index 00000000000..e514e9fb77c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center2.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center2.png new file mode 100644 index 00000000000..2a718b0058b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center3.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center3.png new file mode 100644 index 00000000000..6d8133cd8f6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center4.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center4.png new file mode 100644 index 00000000000..22c140d601b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_center4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_slab1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_slab1.png new file mode 100644 index 00000000000..4787b079f33 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_slab1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding1.png new file mode 100644 index 00000000000..4a00b89b7ab Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile1.png new file mode 100644 index 00000000000..eadad58a8cc Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile2.png new file mode 100644 index 00000000000..17233c0ce79 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_surrounding_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile1.png new file mode 100644 index 00000000000..055ebddddc3 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile10.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile10.png new file mode 100644 index 00000000000..3206f2a9164 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile10.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile11.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile11.png new file mode 100644 index 00000000000..b713b01e8f0 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile11.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile12.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile12.png new file mode 100644 index 00000000000..c381be5bd72 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile12.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile13.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile13.png new file mode 100644 index 00000000000..3a4dedd4d3f Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile13.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile14.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile14.png new file mode 100644 index 00000000000..b195da24687 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile14.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile15.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile15.png new file mode 100644 index 00000000000..b0283bae903 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile15.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile16.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile16.png new file mode 100644 index 00000000000..702ae43ad78 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile16.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile17.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile17.png new file mode 100644 index 00000000000..b7b22bc6a32 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile17.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile18.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile18.png new file mode 100644 index 00000000000..7aa10ce2a03 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile18.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile19.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile19.png new file mode 100644 index 00000000000..5281c850c99 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile19.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile2.png new file mode 100644 index 00000000000..141ecbba56b Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile20.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile20.png new file mode 100644 index 00000000000..67ea27d84e3 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile20.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile21.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile21.png new file mode 100644 index 00000000000..9cb6920942a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile21.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile22.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile22.png new file mode 100644 index 00000000000..1dbf4c70d4a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile22.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile23.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile23.png new file mode 100644 index 00000000000..455cfddf8a5 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile23.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile24.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile24.png new file mode 100644 index 00000000000..e0524915cdc Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile24.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile3.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile3.png new file mode 100644 index 00000000000..ac9d7fca31c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile4.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile4.png new file mode 100644 index 00000000000..b3c8bf12e74 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile5.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile5.png new file mode 100644 index 00000000000..bffed884ad3 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile5.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile6.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile6.png new file mode 100644 index 00000000000..a37b10da0b8 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile6.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile7.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile7.png new file mode 100644 index 00000000000..84204103ca6 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile7.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile8.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile8.png new file mode 100644 index 00000000000..5f8498ea54e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile8.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile9.png b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile9.png new file mode 100644 index 00000000000..ca1224b5dd0 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/cracked_tile9.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/meta.json b/Resources/Textures/_Wega/Structures/floors.rsi/meta.json new file mode 100644 index 00000000000..56906e98127 --- /dev/null +++ b/Resources/Textures/_Wega/Structures/floors.rsi/meta.json @@ -0,0 +1,451 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite taken from https://github.com/ss220-space/Paradise", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "pristine_tile1", + "directions": 4 + }, + { + "name": "pristine_tile2", + "directions": 4 + }, + { + "name": "pristine_tile3", + "directions": 4 + }, + { + "name": "pristine_tile4", + "directions": 4 + }, + { + "name": "pristine_tile5", + "directions": 4 + }, + { + "name": "pristine_tile6", + "directions": 4 + }, + { + "name": "pristine_tile7", + "directions": 4 + }, + { + "name": "pristine_tile8", + "directions": 4 + }, + { + "name": "pristine_tile9", + "directions": 4 + }, + { + "name": "pristine_tile10", + "directions": 4 + }, + { + "name": "pristine_tile11", + "directions": 4 + }, + { + "name": "pristine_tile12", + "directions": 4 + }, + { + "name": "pristine_tile13", + "directions": 4 + }, + { + "name": "pristine_tile14", + "directions": 4 + }, + { + "name": "pristine_tile15", + "directions": 4 + }, + { + "name": "pristine_tile16", + "directions": 4 + }, + { + "name": "pristine_tile17", + "directions": 4 + }, + { + "name": "pristine_tile18", + "directions": 4 + }, + { + "name": "pristine_tile19", + "directions": 4 + }, + { + "name": "pristine_tile20", + "directions": 4 + }, + { + "name": "pristine_tile21", + "directions": 4 + }, + { + "name": "pristine_tile22", + "directions": 4 + }, + { + "name": "pristine_tile23", + "directions": 4 + }, + { + "name": "pristine_tile24", + "directions": 4 + }, + { + "name": "pristine_slab1" + }, + { + "name": "pristine_slab2" + }, + { + "name": "pristine_slab3" + }, + { + "name": "pristine_slab4" + }, + { + "name": "pristine_block1", + "directions": 4 + }, + { + "name": "pristine_block2", + "directions": 4 + }, + { + "name": "pristine_block3", + "directions": 4 + }, + { + "name": "pristine_block4", + "directions": 4 + }, + { + "name": "pristine_center1" + }, + { + "name": "pristine_center2" + }, + { + "name": "pristine_center3" + }, + { + "name": "pristine_center4" + }, + { + "name": "pristine_surrounding1" + }, + { + "name": "pristine_surrounding2" + }, + { + "name": "pristine_surrounding_tile1", + "directions": 4 + }, + { + "name": "pristine_surrounding_tile2", + "directions": 4 + }, + { + "name": "cracked_tile1", + "directions": 4 + }, + { + "name": "cracked_tile2", + "directions": 4 + }, + { + "name": "cracked_tile3", + "directions": 4 + }, + { + "name": "cracked_tile4", + "directions": 4 + }, + { + "name": "cracked_tile5", + "directions": 4 + }, + { + "name": "cracked_tile6", + "directions": 4 + }, + { + "name": "cracked_tile7", + "directions": 4 + }, + { + "name": "cracked_tile8", + "directions": 4 + }, + { + "name": "cracked_tile9", + "directions": 4 + }, + { + "name": "cracked_tile10", + "directions": 4 + }, + { + "name": "cracked_tile11", + "directions": 4 + }, + { + "name": "cracked_tile12", + "directions": 4 + }, + { + "name": "cracked_tile13", + "directions": 4 + }, + { + "name": "cracked_tile14", + "directions": 4 + }, + { + "name": "cracked_tile15", + "directions": 4 + }, + { + "name": "cracked_tile16", + "directions": 4 + }, + { + "name": "cracked_tile17", + "directions": 4 + }, + { + "name": "cracked_tile18", + "directions": 4 + }, + { + "name": "cracked_tile19", + "directions": 4 + }, + { + "name": "cracked_tile20", + "directions": 4 + }, + { + "name": "cracked_tile21", + "directions": 4 + }, + { + "name": "cracked_tile22", + "directions": 4 + }, + { + "name": "cracked_tile23", + "directions": 4 + }, + { + "name": "cracked_tile24", + "directions": 4 + }, + { + "name": "cracked_slab1", + "directions": 8 + }, + { + "name": "cracked_block1", + "directions": 8 + }, + { + "name": "cracked_block2", + "directions": 8 + }, + { + "name": "cracked_block3", + "directions": 8 + }, + { + "name": "cracked_block4", + "directions": 8 + }, + { + "name": "cracked_center1" + }, + { + "name": "cracked_center2" + }, + { + "name": "cracked_center3" + }, + { + "name": "cracked_center4" + }, + { + "name": "cracked_surrounding1", + "directions": 8 + }, + { + "name": "cracked_surrounding_tile1", + "directions": 8 + }, + { + "name": "cracked_surrounding_tile2", + "directions": 8 + }, + { + "name": "burnt_tile1", + "directions": 4 + }, + { + "name": "burnt_tile2", + "directions": 4 + }, + { + "name": "burnt_tile3", + "directions": 4 + }, + { + "name": "burnt_tile4", + "directions": 4 + }, + { + "name": "burnt_tile5", + "directions": 4 + }, + { + "name": "burnt_tile6", + "directions": 4 + }, + { + "name": "burnt_tile7", + "directions": 4 + }, + { + "name": "burnt_tile8", + "directions": 4 + }, + { + "name": "burnt_tile9", + "directions": 4 + }, + { + "name": "burnt_tile10", + "directions": 4 + }, + { + "name": "burnt_tile11", + "directions": 4 + }, + { + "name": "burnt_tile12", + "directions": 4 + }, + { + "name": "burnt_tile13", + "directions": 4 + }, + { + "name": "burnt_tile14", + "directions": 4 + }, + { + "name": "burnt_tile15", + "directions": 4 + }, + { + "name": "burnt_tile16", + "directions": 4 + }, + { + "name": "burnt_tile17", + "directions": 4 + }, + { + "name": "burnt_tile18", + "directions": 4 + }, + { + "name": "burnt_tile19", + "directions": 4 + }, + { + "name": "burnt_tile20", + "directions": 4 + }, + { + "name": "burnt_tile21", + "directions": 4 + }, + { + "name": "burnt_tile22", + "directions": 4 + }, + { + "name": "burnt_tile23", + "directions": 4 + }, + { + "name": "burnt_tile24", + "directions": 4 + }, + { + "name": "burnt_block1", + "directions": 4 + }, + { + "name": "burnt_block2", + "directions": 4 + }, + { + "name": "burnt_block3", + "directions": 4 + }, + { + "name": "burnt_block4", + "directions": 4 + }, + { + "name": "burnt_slab1" + }, + { + "name": "burnt_slab2" + }, + { + "name": "burnt_slab3" + }, + { + "name": "burnt_slab4" + }, + { + "name": "burnt_center1" + }, + { + "name": "burnt_center2" + }, + { + "name": "burnt_center3" + }, + { + "name": "burnt_center4" + }, + { + "name": "burnt_surrounding1" + }, + { + "name": "burnt_surrounding2" + }, + { + "name": "burnt_surrounding_tile1", + "directions": 4 + }, + { + "name": "burnt_surrounding_tile2", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block1.png new file mode 100644 index 00000000000..e25a6a1ded8 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block2.png new file mode 100644 index 00000000000..b181649535a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block3.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block3.png new file mode 100644 index 00000000000..ff288370df5 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block4.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block4.png new file mode 100644 index 00000000000..45f3e326e70 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_block4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center1.png new file mode 100644 index 00000000000..4bcb9234127 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center2.png new file mode 100644 index 00000000000..769beadf924 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center3.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center3.png new file mode 100644 index 00000000000..5faff7dc9a0 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center4.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center4.png new file mode 100644 index 00000000000..dbeac1b30ea Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_center4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab1.png new file mode 100644 index 00000000000..acf0825232e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab2.png new file mode 100644 index 00000000000..8e809aa7275 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab3.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab3.png new file mode 100644 index 00000000000..90ea41249ce Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab4.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab4.png new file mode 100644 index 00000000000..5283f5d8a53 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_slab4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding1.png new file mode 100644 index 00000000000..d451f43f159 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding2.png new file mode 100644 index 00000000000..42c7e205845 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile1.png new file mode 100644 index 00000000000..0169c036722 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile2.png new file mode 100644 index 00000000000..1a4e833b12a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_surrounding_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile1.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile1.png new file mode 100644 index 00000000000..92268df01c7 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile1.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile10.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile10.png new file mode 100644 index 00000000000..4e14dfd9a81 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile10.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile11.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile11.png new file mode 100644 index 00000000000..5964d3f05cc Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile11.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile12.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile12.png new file mode 100644 index 00000000000..73782aa7409 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile12.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile13.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile13.png new file mode 100644 index 00000000000..ebd9e85d5bc Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile13.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile14.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile14.png new file mode 100644 index 00000000000..d42cdba0698 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile14.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile15.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile15.png new file mode 100644 index 00000000000..5dd7af50dde Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile15.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile16.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile16.png new file mode 100644 index 00000000000..cdbff1bda0c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile16.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile17.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile17.png new file mode 100644 index 00000000000..c62fa02478a Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile17.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile18.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile18.png new file mode 100644 index 00000000000..dc24f488188 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile18.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile19.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile19.png new file mode 100644 index 00000000000..05492ad0771 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile19.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile2.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile2.png new file mode 100644 index 00000000000..9e70b07434c Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile2.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile20.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile20.png new file mode 100644 index 00000000000..41fe9f90944 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile20.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile21.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile21.png new file mode 100644 index 00000000000..f43353a9222 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile21.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile22.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile22.png new file mode 100644 index 00000000000..182d12222b2 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile22.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile23.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile23.png new file mode 100644 index 00000000000..27d4e2b158e Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile23.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile24.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile24.png new file mode 100644 index 00000000000..7c285986314 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile24.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile3.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile3.png new file mode 100644 index 00000000000..6f1eb6d2997 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile3.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile4.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile4.png new file mode 100644 index 00000000000..cd219414dcc Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile4.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile5.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile5.png new file mode 100644 index 00000000000..b0ddb8e6d07 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile5.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile6.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile6.png new file mode 100644 index 00000000000..6ccfec397ec Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile6.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile7.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile7.png new file mode 100644 index 00000000000..8958deb26a1 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile7.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile8.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile8.png new file mode 100644 index 00000000000..3288acd1bb1 Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile8.png differ diff --git a/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile9.png b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile9.png new file mode 100644 index 00000000000..6711fe1125d Binary files /dev/null and b/Resources/Textures/_Wega/Structures/floors.rsi/pristine_tile9.png differ diff --git a/Resources/Textures/_Wega/Tiles/necropolis.png b/Resources/Textures/_Wega/Tiles/necropolis.png new file mode 100644 index 00000000000..980b99693ed Binary files /dev/null and b/Resources/Textures/_Wega/Tiles/necropolis.png differ