diff --git a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs index 936e7cdecd..bf6d8f7243 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -172,7 +172,15 @@ public partial class ChatBox : UIWidget _controller.UpdateSelectedChannel(this); // Warn typing indicator about change - _controller.NotifyChatTextChange(); + if (IsValidChannel()) + { + _controller.NotifyChatTextChange(); + } + } + + private bool IsValidChannel() + { + return SelectedChannel is not (ChatSelectChannel.Admin or ChatSelectChannel.Dead or ChatSelectChannel.OOC or ChatSelectChannel.LOOC); } protected override void Dispose(bool disposing) diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index f865b25bac..0606027798 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Server.Administration.Managers; using Content.Server.Afk; using Content.Server.Afk.Events; using Content.Server.GameTicking; @@ -31,6 +32,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; + [Dependency] private readonly IAdminManager _adminManager = default!; public override void Initialize() { @@ -157,8 +159,16 @@ public sealed class PlayTimeTrackingSystem : EntitySystem _tracking.QueueSendTimers(ev.PlayerSession); } + private bool IsBypassingChecks(ICommonSession player) + { + return _adminManager.IsAdmin(player, true); + } + public bool IsAllowed(ICommonSession player, string role) { + if (IsBypassingChecks(player)) + return true; + if (!_prototypes.TryIndex(role, out var job) || job.Requirements == null || !_cfg.GetCVar(CCVars.GameRoleTimers)) @@ -172,6 +182,10 @@ public sealed class PlayTimeTrackingSystem : EntitySystem public HashSet GetDisallowedJobs(ICommonSession player) { var roles = new HashSet(); + + if (IsBypassingChecks(player)) + return roles; + if (!_cfg.GetCVar(CCVars.GameRoleTimers)) return roles; @@ -203,6 +217,10 @@ public sealed class PlayTimeTrackingSystem : EntitySystem return; var player = _playerManager.GetSessionByUserId(userId); + + if (IsBypassingChecks(player)) + return; + if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) { // Sorry mate but your playtimes haven't loaded. diff --git a/Content.Server/White/Discord/RoundNotificationsSystem.cs b/Content.Server/White/Discord/RoundNotificationsSystem.cs index 3165f2ff84..5104953e54 100644 --- a/Content.Server/White/Discord/RoundNotificationsSystem.cs +++ b/Content.Server/White/Discord/RoundNotificationsSystem.cs @@ -5,9 +5,10 @@ using System.Text.Json.Serialization; using Content.Server.Maps; using Content.Shared.GameTicking; using Content.Shared.White; +using Robust.Shared; using Robust.Shared.Configuration; -namespace Content.Server.Corvax.RoundNotifications; +namespace Content.Server.White.Discord; /// /// Listen game events and send notifications to Discord @@ -20,10 +21,14 @@ public sealed class RoundNotificationsSystem : EntitySystem private ISawmill _sawmill = default!; private readonly HttpClient _httpClient = new(); - private string _webhookUrl = String.Empty; - private string _roleId = String.Empty; + private string _webhookUrl = string.Empty; + private string _roleId = string.Empty; + private string _serverName = string.Empty; private bool _roundStartOnly; + private const int EmbedColor = 0x6600FF; + private const int EmbedColorRestart = 0x00eb1f; + /// public override void Initialize() { @@ -34,29 +39,36 @@ public sealed class RoundNotificationsSystem : EntitySystem _config.OnValueChanged(WhiteCVars.DiscordRoundWebhook, value => _webhookUrl = value, true); _config.OnValueChanged(WhiteCVars.DiscordRoundRoleId, value => _roleId = value, true); _config.OnValueChanged(WhiteCVars.DiscordRoundStartOnly, value => _roundStartOnly = value, true); + _config.OnValueChanged(CVars.GameHostName, value => _serverName = value, true); _sawmill = IoCManager.Resolve().GetSawmill("notifications"); } private void OnRoundRestart(RoundRestartCleanupEvent e) { - if (String.IsNullOrEmpty(_webhookUrl)) + if (string.IsNullOrEmpty(_webhookUrl)) return; + var serverName = _serverName[..Math.Min(_serverName.Length, 1500)]; var payload = new WebhookPayload() { - Content = Loc.GetString("discord-round-new"), + Embeds = new List + { + new() + { + Title = Loc.GetString("discord-round-embed-title", ("server", serverName)), + Description = Loc.GetString("discord-round-new"), + Color = EmbedColorRestart + } + } }; - if (!String.IsNullOrEmpty(_roleId)) + if (!string.IsNullOrEmpty(_roleId)) { - payload = new WebhookPayload() + payload.Content = $"<@&{_roleId}>"; + payload.AllowedMentions = new Dictionary { - Content = $"<@&{_roleId}> {Loc.GetString("discord-round-new")}", - AllowedMentions = new Dictionary - { - { "roles", new []{ _roleId } } - }, + { "roles", new[] { _roleId } } }; } @@ -65,30 +77,56 @@ public sealed class RoundNotificationsSystem : EntitySystem private void OnRoundStarted(RoundStartedEvent e) { - if (String.IsNullOrEmpty(_webhookUrl)) + if (string.IsNullOrEmpty(_webhookUrl)) return; + var serverName = _serverName[..Math.Min(_serverName.Length, 1500)]; var map = _gameMapManager.GetSelectedMap(); var mapName = map?.MapName ?? Loc.GetString("discord-round-unknown-map"); var text = Loc.GetString("discord-round-start", ("id", e.RoundId), ("map", mapName)); - var payload = new WebhookPayload() { Content = text }; + + var payload = new WebhookPayload() + { + Embeds = new List + { + new() + { + Title = Loc.GetString("discord-round-embed-title", ("server", serverName)), + Description = text, + Color = EmbedColor + } + } + }; SendDiscordMessage(payload); } private void OnRoundEnded(RoundEndedEvent e) { - if (String.IsNullOrEmpty(_webhookUrl) || _roundStartOnly) + if (string.IsNullOrEmpty(_webhookUrl) || _roundStartOnly) return; + var serverName = _serverName[..Math.Min(_serverName.Length, 1500)]; var text = Loc.GetString("discord-round-end", ("id", e.RoundId), ("hours", e.RoundDuration.Hours), ("minutes", e.RoundDuration.Minutes), ("seconds", e.RoundDuration.Seconds)); - var payload = new WebhookPayload() { Content = text }; + + var payload = new WebhookPayload() + { + Embeds = new List + { + new() + { + Title = Loc.GetString("discord-round-embed-title", ("server", serverName)), + Description = text, + Color = EmbedColor + } + } + }; SendDiscordMessage(payload); } @@ -101,8 +139,8 @@ public sealed class RoundNotificationsSystem : EntitySystem var content = await request.Content.ReadAsStringAsync(); if (!request.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when posting message: {request.StatusCode}\nResponse: {content}"); - return; + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when posting message: {request.StatusCode}\nResponse: {content}"); } } @@ -111,6 +149,9 @@ public sealed class RoundNotificationsSystem : EntitySystem [JsonPropertyName("content")] public string Content { get; set; } = ""; + [JsonPropertyName("embeds")] + public List? Embeds { get; init; } = null; + [JsonPropertyName("allowed_mentions")] public Dictionary AllowedMentions { get; set; } = new() @@ -122,4 +163,21 @@ public sealed class RoundNotificationsSystem : EntitySystem { } } + + // https://discord.com/developers/docs/resources/channel#embed-object-embed-structure + private struct Embed + { + [JsonPropertyName("title")] + public string Title { get; init; } = ""; + + [JsonPropertyName("description")] + public string Description { get; init; } = ""; + + [JsonPropertyName("color")] + public int Color { get; init; } = 0; + + public Embed() + { + } + } } diff --git a/Resources/Locale/ru-RU/white/round-notifications/notifications.ftl b/Resources/Locale/ru-RU/white/round-notifications/notifications.ftl index 3de8e0d367..8afd687e8c 100644 --- a/Resources/Locale/ru-RU/white/round-notifications/notifications.ftl +++ b/Resources/Locale/ru-RU/white/round-notifications/notifications.ftl @@ -1,4 +1,5 @@ -discord-round-new = Новый раунд скоро начнётся, поспеши! -discord-round-start = Раунд #{ $id } на карте "{ $map }" начался. -discord-round-end = Раунд #{ $id } закончился. Он длился { $hours } ч., { $minutes } мин., и { $seconds } сек. +discord-round-embed-title = SS14 | { $server } +discord-round-new = Новый раунд начинается! +discord-round-start = Раунд **#{ $id }** на карте **"{ $map }"** начался. +discord-round-end = Раунд **#{ $id }** закончился. Он длился **{ $hours } ч., { $minutes } мин., и { $seconds } сек.** discord-round-unknown-map = Неизвестна diff --git a/Resources/Maps/White/WonderBox.yml b/Resources/Maps/White/WonderBox.yml index 9f2e0d89bf..cd23678a1d 100644 --- a/Resources/Maps/White/WonderBox.yml +++ b/Resources/Maps/White/WonderBox.yml @@ -55,7 +55,6 @@ entities: - type: OccluderTree - type: LoadedMap - following: - - invalid - invalid type: Followed - uid: 2 @@ -85,13 +84,13 @@ entities: tiles: XwAAAF8AAAAXAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAEUAAABQAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAAAUAAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAARQAAAFAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABQAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABQAAAARQAAAEUAAABFAAAARQAAAEUAAABQAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAUAAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAAAgAAAAIAAAAF8AAABFAAAARQAAAFAAAABQAAAAUAAAAEUAAABFAAAAUAAAAFAAAABFAAAAXwAAAEUAAABFAAAAIAAAACAAAABfAAAARQAAAEUAAABQAAAARQAAAEUAAABfAAAARQAAAFAAAABQAAAARQAAAEUAAABFAAAARQAAACAAAAAgAAAAXwAAAEUAAABFAAAAUAAAAEUAAABFAAAAXwAAAEUAAABQAAAAUAAAAEUAAABFAAAARQAAAEUAAAAgAAAAIAAAAF8AAABFAAAARQAAAFAAAABFAAAARQAAAEUAAABFAAAAUAAAAFAAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABQAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAUAAAAEUAAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAA== 1,-1: ind: 1,-1 - tiles: FwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAARQAAAEUAAABFAAAARQAAAEUAAAA4AAAAOAAAAEUAAAA4AAAAOAAAAEUAAAA4AAAAOAAAAEUAAABFAAAAXwAAAEUAAABfAAAARQAAAEUAAABFAAAAOAAAADgAAABFAAAAOAAAADgAAABFAAAAOAAAADgAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAA4AAAAOAAAADgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAACYAAAAmAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAACYAAAAmAAAAJgAAACYAAABfAAAARgAAAEYAAABQAAAAUAAAAFAAAABGAAAAUAAAACcAAABfAAAARQAAAF8AAAAmAAAAJgAAACYAAAAmAAAAXwAAAEYAAABGAAAAUAAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAJgAAACYAAAAmAAAAJgAAAF8AAABGAAAARgAAAFAAAABQAAAAUAAAAEYAAABQAAAAJwAAAF8AAABFAAAAXwAAACYAAAAmAAAAJgAAACYAAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAABGAAAAUAAAACcAAABfAAAARQAAAF8AAABfAAAAXwAAACYAAABfAAAAXwAAAF8AAABGAAAARgAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAARgAAAEYAAABQAAAAUAAAAEYAAABQAAAAJwAAAF8AAABFAAAAXwAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAAEYAAABGAAAAUAAAAFAAAABGAAAARgAAAEYAAABFAAAARQAAAF8AAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAABGAAAARgAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAARgAAAEYAAABQAAAAUAAAAEYAAABQAAAAXwAAAA== + tiles: FwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAARQAAAEUAAABFAAAARQAAAEUAAAAvAAAALwAAAEUAAAAvAAAALwAAAEUAAAAvAAAALwAAAEUAAABFAAAAXwAAAEUAAABfAAAARQAAAEUAAABFAAAALwAAAC8AAABFAAAALwAAAC8AAABFAAAALwAAAC8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAA4AAAAOAAAADgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAACYAAAAmAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAACYAAAAmAAAAJgAAACYAAABfAAAARgAAAEYAAABQAAAAUAAAAFAAAABGAAAAUAAAACcAAABfAAAARQAAAF8AAAAmAAAAJgAAACYAAAAmAAAAXwAAAEYAAABGAAAAUAAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAJgAAACYAAAAmAAAAJgAAAF8AAABGAAAARgAAAFAAAABQAAAAUAAAAEYAAABQAAAAJwAAAF8AAABFAAAAXwAAACYAAAAmAAAAJgAAACYAAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAABGAAAAUAAAACcAAABfAAAARQAAAF8AAABfAAAAXwAAACYAAABfAAAAXwAAAF8AAABGAAAARgAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAARgAAAEYAAABQAAAAUAAAAEYAAABQAAAAJwAAAF8AAABFAAAAXwAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAAEYAAABGAAAAUAAAAFAAAABGAAAARgAAAEYAAABFAAAARQAAAF8AAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAABGAAAARgAAAFAAAABQAAAARgAAAFAAAAAnAAAAXwAAAEUAAABfAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAARgAAAEYAAABQAAAAUAAAAEYAAABQAAAAXwAAAA== 1,0: ind: 1,0 tiles: XwAAAEUAAABfAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAARgAAAEYAAABQAAAAUAAAAEYAAABQAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABLAAAASwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAEsAAABLAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAXAAAAFwAAABFAAAAFwAAAEUAAAAXAAAARQAAABcAAABFAAAAXAAAAFwAAABfAAAAXwAAAF8AAABFAAAAXwAAAFwAAABcAAAAFwAAAEUAAAAXAAAARQAAABcAAABFAAAAFwAAAFwAAABcAAAAXwAAAF8AAABfAAAARQAAAF8AAABcAAAAXAAAAEUAAAAXAAAARQAAABcAAABFAAAAFwAAAEUAAABcAAAAXAAAAF8AAABfAAAAXwAAAEUAAABfAAAAXAAAAFwAAAAXAAAARQAAABcAAABFAAAAFwAAAEUAAAAXAAAAXAAAAFwAAABfAAAAXwAAAF8AAABFAAAAXwAAAFwAAABcAAAARQAAABcAAABFAAAAFwAAAEUAAAAXAAAARQAAAFwAAABcAAAAXwAAAF8AAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAARQAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAABwAAABfAAAAXwAAAFwAAABcAAAAXAAAAF8AAABfAAAASwAAAEUAAABfAAAAXAAAAFwAAABcAAAAXwAAABcAAAAXAAAAFwAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAAA== -2,1: ind: -2,1 - tiles: RQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAA== + tiles: RQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAA== -1,1: ind: -1,1 tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAASwAAAEsAAABLAAAASwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAAASwAAAEsAAABfAAAAXwAAAEUAAABFAAAAFwAAABcAAAAXAAAARQAAAEUAAABfAAAAAAAAAAAAAABfAAAASwAAAEsAAABLAAAAXwAAAF8AAABFAAAARQAAABcAAAAXAAAAFwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAARQAAAF8AAABfAAAARQAAAEUAAAAXAAAAFwAAABcAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAFwAAAF8AAABFAAAAXwAAAF8AAAAcAAAAHAAAAEUAAABFAAAARQAAABwAAAAcAAAAXwAAABwAAABfAAAAXwAAABwAAABfAAAARQAAAF8AAABfAAAAHAAAABwAAABFAAAARQAAAEUAAAAcAAAAHAAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAABwAAAAcAAAARQAAAEUAAABFAAAAHAAAABwAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABfAAAAHAAAABwAAABFAAAARQAAAEUAAAAcAAAAHAAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAMgAAADIAAAAyAAAAMgAAAFIAAABSAAAAUgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABFAAAAXwAAADIAAAAyAAAAMgAAADIAAABSAAAAUgAAAFIAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAA== @@ -112,10 +111,10 @@ entities: tiles: XwAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFAAAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABQAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAUAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABQAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAUAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFAAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABQAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAABcAAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAXAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABLAAAAXwAAAF8AAABfAAAAXwAAAA== 1,-2: ind: 1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAALwAAAC8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAALwAAAC8AAAAvAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAALwAAAC8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAALwAAAC8AAAAvAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAA== -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAABSAAAAXwAAADIAAAAyAAAAXwAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAAAyAAAAMgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAABfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAAAHAAAAF8AAAAcAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAAAcAAAAHAAAABwAAAAcAAAAHAAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAHAAAABwAAAAcAAAAXwAAABwAAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAFwAAABfAAAAMAAAADAAAAAwAAAAMAAAADAAAABfAAAAAAAAAAAAAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABcAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAAAAAAAAAAAAAXwAAAEgAAABIAAAASAAAAEgAAABIAAAAXAAAAF8AAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAABSAAAAXwAAADIAAAAyAAAAXwAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAAAyAAAAMgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAABfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAAAHAAAAF8AAAAcAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAE8AAAAcAAAAHAAAABwAAAAcAAAAHAAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAHAAAABwAAAAcAAAAXwAAABwAAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAAAHAAAABwAAAAcAAAAHAAAAFwAAABfAAAAMAAAADAAAAAwAAAAMAAAADAAAABfAAAAAAAAAAAAAABfAAAAHAAAABwAAAAcAAAAHAAAABwAAABcAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAAAAAAAAAAAAAXwAAABwAAAAcAAAAHAAAABwAAAAcAAAAXAAAAF8AAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -1,2: ind: -1,2 tiles: XwAAACAAAAAgAAAAIAAAADIAAAAyAAAAMgAAADIAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAF8AAAAgAAAAIAAAACAAAAAyAAAAMgAAADIAAAAyAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAEUAAABfAAAAIAAAACAAAAAgAAAAMgAAADIAAAAyAAAAMgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAEsAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAF8AAABfAAAASwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFIAAABSAAAAUgAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABLAAAARQAAAEUAAABFAAAAXwAAAEUAAABSAAAAUgAAAFIAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAASwAAAEUAAABIAAAASAAAAF8AAABFAAAAUgAAAFIAAABSAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAABIAAAARQAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAFAAAABQAAAATwAAAE8AAABPAAAATwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAcAAAAHAAAAF8AAABQAAAAUAAAAE8AAABPAAAATwAAAE8AAABQAAAASwAAAEUAAABFAAAARQAAAF8AAABFAAAAHAAAABwAAAAcAAAAUAAAAFAAAABPAAAATwAAAE8AAABPAAAAUAAAAEsAAABFAAAARQAAAEgAAABfAAAARQAAABwAAAAcAAAAXwAAAFAAAABQAAAATwAAAE8AAABPAAAATwAAAFAAAABfAAAARQAAAEgAAABIAAAAXwAAAEUAAABfAAAAXwAAAF8AAABQAAAAUAAAAE8AAABPAAAATwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAABcAAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAEsAAABFAAAASAAAAEgAAABfAAAARQAAABwAAAAXAAAAHAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABLAAAASAAAAEgAAABFAAAAXwAAAEUAAABfAAAAFwAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAA== @@ -190,7 +189,7 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -3,1: ind: -3,1 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAEsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAACcAAABLAAAASwAAAEsAAABLAAAAJwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAAAnAAAASwAAAEsAAABLAAAASwAAACcAAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAACcAAAAnAAAAJwAAACcAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAEsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAACcAAABLAAAASwAAAEsAAABLAAAAJwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAAAnAAAASwAAAEsAAABLAAAASwAAACcAAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAACcAAAAnAAAAJwAAACcAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -3,0: ind: -3,0 tiles: PQAAAD0AAAA9AAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAMQAAADEAAAAxAAAAXwAAAF8AAABfAAAARQAAAFAAAABfAAAAJwAAAEsAAABfAAAAXwAAAD0AAAA9AAAAXwAAADEAAAAxAAAAMQAAAF8AAABfAAAAXwAAAEUAAABQAAAAXwAAAEsAAAAcAAAAPQAAAD0AAAA9AAAAPQAAAF8AAAAxAAAAMQAAADEAAABfAAAAXwAAAF8AAABFAAAAUAAAAF8AAABLAAAAHAAAAF8AAABfAAAAXwAAAD0AAABfAAAAUAAAAFAAAABQAAAARQAAAEUAAABFAAAARQAAAFAAAABfAAAASwAAABwAAABfAAAAUAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAnAAAAJwAAAEUAAABQAAAAXwAAACcAAABLAAAAXwAAAFAAAAAnAAAAJwAAAEUAAABFAAAARQAAAEUAAABFAAAAJwAAACcAAABFAAAAUAAAAF8AAABfAAAAXwAAAF8AAABQAAAAJwAAACcAAABFAAAARQAAAEUAAABFAAAARQAAACcAAAAnAAAARQAAAFAAAABfAAAARQAAAEUAAABfAAAAUAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABQAAAAXwAAAEUAAABFAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAASwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAA== @@ -354,126 +353,132 @@ entities: color: '#FFFFFFFF' id: Basalt5 decals: - 2198: 31,31 + 2197: 31,31 - node: color: '#334E6DC8' id: Bot decals: - 3089: -3,5 + 3088: -3,5 - node: color: '#A4610696' id: Bot decals: - 3090: -2,-1 + 3089: -2,-1 - node: color: '#D381C996' id: Bot decals: - 3092: 3,-1 + 3091: 3,-1 - node: color: '#DE3A3A96' id: Bot decals: - 3088: -2,5 + 3087: -2,5 - node: color: '#EFB34196' id: Bot decals: - 1362: -6,-52 - 1363: -5,-52 - 1364: -4,-52 - 1365: -1,-48 - 1366: 0,-48 - 1367: 4,-52 - 1368: 5,-52 - 1369: 6,-52 - 1370: 7,-52 - 1371: 8,-52 - 3091: -3,-1 + 1361: -6,-52 + 1362: -5,-52 + 1363: -4,-52 + 1364: -1,-48 + 1365: 0,-48 + 1366: 4,-52 + 1367: 5,-52 + 1368: 6,-52 + 1369: 7,-52 + 1370: 8,-52 + 3090: -3,-1 - node: color: '#FFFF007F' id: Bot decals: - 1372: -11,-49 - 1373: -12,-49 - 1374: -13,-49 - 1375: -13,-50 - 1376: -12,-50 - 1377: -11,-50 + 1371: -11,-49 + 1372: -12,-49 + 1373: -13,-49 + 1374: -13,-50 + 1375: -12,-50 + 1376: -11,-50 + - node: + color: '#FFFFFF66' + id: Bot + decals: + 3371: -59,-3 + 3372: -56,-3 - node: color: '#FFFFFF7F' id: Bot decals: - 1525: 2,-23 - 1526: 2,-24 - 1527: 2,-25 - 1528: 2,-29 - 1529: 2,-30 - 1535: -18,-25 - 1536: -18,-24 - 1537: -18,-23 - 1538: -20,-23 - 1539: -20,-22 - 1547: -21,-45 - 1548: -24,-46 - 1549: -24,-44 - 1558: 9,-22 - 1559: 10,-22 - 1560: 11,-22 - 1561: 12,-22 - 1562: 15,-21 - 1563: 16,-21 - 1564: 17,-21 - 1565: 18,-21 - 1588: 36,-19 - 1589: 35,-16 - 1590: 36,-16 - 1591: 43,-51 - 1592: 49,-51 - 1593: 48,-51 - 1594: 49,19 - 1605: 23,20 - 1606: 24,20 - 1607: 25,20 - 1608: 23,23 - 1609: 23,22 - 1634: 15,39 - 1635: 16,39 - 1638: 11,39 - 1639: 12,39 - 1640: 10,36 - 1641: 11,36 - 1655: 3,36 - 1656: 4,36 - 1657: 5,36 - 1658: 7,36 - 1659: 8,36 - 1660: 16,46 - 1661: 17,46 - 1662: 16,44 - 1663: 17,44 - 1716: -33,24 - 1717: -33,23 - 1718: -33,21 - 1719: -29,29 - 1720: -29,28 - 1721: -31,29 - 1722: -31,28 - 1731: -68,29 - 1732: -68,30 - 1904: -32,-14 - 1905: -32,-15 - 1906: -33,-14 - 1907: -33,-15 - 1908: -33,-16 - 1909: -33,-17 - 1910: -32,-17 - 1911: -28,-17 - 1912: -28,-16 - 1913: -29,-16 - 1914: -28,-15 - 1915: -28,-14 - 1916: -29,-14 + 1524: 2,-23 + 1525: 2,-24 + 1526: 2,-25 + 1527: 2,-29 + 1528: 2,-30 + 1534: -18,-25 + 1535: -18,-24 + 1536: -18,-23 + 1537: -20,-23 + 1538: -20,-22 + 1546: -21,-45 + 1547: -24,-46 + 1548: -24,-44 + 1557: 9,-22 + 1558: 10,-22 + 1559: 11,-22 + 1560: 12,-22 + 1561: 15,-21 + 1562: 16,-21 + 1563: 17,-21 + 1564: 18,-21 + 1587: 36,-19 + 1588: 35,-16 + 1589: 36,-16 + 1590: 43,-51 + 1591: 49,-51 + 1592: 48,-51 + 1593: 49,19 + 1604: 23,20 + 1605: 24,20 + 1606: 25,20 + 1607: 23,23 + 1608: 23,22 + 1633: 15,39 + 1634: 16,39 + 1637: 11,39 + 1638: 12,39 + 1639: 10,36 + 1640: 11,36 + 1654: 3,36 + 1655: 4,36 + 1656: 5,36 + 1657: 7,36 + 1658: 8,36 + 1659: 16,46 + 1660: 17,46 + 1661: 16,44 + 1662: 17,44 + 1715: -33,24 + 1716: -33,23 + 1717: -33,21 + 1718: -29,29 + 1719: -29,28 + 1720: -31,29 + 1721: -31,28 + 1730: -68,29 + 1731: -68,30 + 1903: -32,-14 + 1904: -32,-15 + 1905: -33,-14 + 1906: -33,-15 + 1907: -33,-16 + 1908: -33,-17 + 1909: -32,-17 + 1910: -28,-17 + 1911: -28,-16 + 1912: -29,-16 + 1913: -28,-15 + 1914: -28,-14 + 1915: -29,-14 - node: color: '#FFFFFFFF' id: Bot @@ -521,93 +526,93 @@ entities: 534: -30,-8 535: -30,-7 536: -30,-6 - 844: -52,23 - 845: -52,24 - 846: -50,24 - 847: -50,23 - 886: -14,26 - 887: -13,26 - 893: -14,22 - 894: -13,22 - 897: -14,24 - 898: -13,24 - 899: -8,24 - 900: -9,24 - 901: -8,22 - 902: -9,22 - 945: -6,20 - 946: -5,20 - 1048: 38,6 - 1049: 39,6 - 1050: 34,6 - 1051: 34,7 - 1052: 34,8 - 1053: 35,8 - 1054: 36,8 - 1055: 36,7 - 1056: 36,6 - 1058: 32,7 - 1059: 32,8 - 1060: 32,9 - 1198: -21,-33 - 1199: -21,-32 - 1201: -5,-28 - 1218: -13,-23 - 1378: -2,-48 - 1379: -3,-48 - 1380: -9,-50 - 1381: -8,-50 - 1382: -12,-57 - 1383: -13,-57 - 1384: 2,-49 - 1385: 3,-49 - 1439: 21,-36 - 1440: 20,-35 - 1441: 21,-34 - 1515: 4,-49 - 1517: 4,-24 - 1518: 4,-23 - 1519: 5,-23 - 1520: 5,-24 - 1521: 6,-24 - 1522: 6,-23 - 1523: 7,-23 - 1524: 7,-24 - 1668: -22,39 - 1669: -23,39 - 2098: 30,-11 - 2099: 29,-11 - 2100: 28,-11 - 2527: 1,68 - 2528: -1,68 - 2529: -2,68 - 2530: -3,68 - 2531: -4,68 - 2532: -5,68 - 2533: -5,63 - 2534: -3,63 - 2535: -2,63 - 2536: 0,63 - 2537: 1,63 - 2538: -13,68 - 2539: -13,67 - 2540: -13,66 - 2541: -12,66 - 2542: -11,66 - 2543: -11,67 - 2544: -11,68 - 2545: -12,68 - 2546: -12,67 - 2547: -10,68 - 2548: -10,67 - 2549: -9,67 - 2550: -9,68 - 2551: -15,66 - 2552: -15,65 - 2553: -15,64 - 3324: 72,-34 - 3325: 73,-34 - 3326: 74,-34 + 843: -52,23 + 844: -52,24 + 845: -50,24 + 846: -50,23 + 885: -14,26 + 886: -13,26 + 892: -14,22 + 893: -13,22 + 896: -14,24 + 897: -13,24 + 898: -8,24 + 899: -9,24 + 900: -8,22 + 901: -9,22 + 944: -6,20 + 945: -5,20 + 1047: 38,6 + 1048: 39,6 + 1049: 34,6 + 1050: 34,7 + 1051: 34,8 + 1052: 35,8 + 1053: 36,8 + 1054: 36,7 + 1055: 36,6 + 1057: 32,7 + 1058: 32,8 + 1059: 32,9 + 1197: -21,-33 + 1198: -21,-32 + 1200: -5,-28 + 1217: -13,-23 + 1377: -2,-48 + 1378: -3,-48 + 1379: -9,-50 + 1380: -8,-50 + 1381: -12,-57 + 1382: -13,-57 + 1383: 2,-49 + 1384: 3,-49 + 1438: 21,-36 + 1439: 20,-35 + 1440: 21,-34 + 1514: 4,-49 + 1516: 4,-24 + 1517: 4,-23 + 1518: 5,-23 + 1519: 5,-24 + 1520: 6,-24 + 1521: 6,-23 + 1522: 7,-23 + 1523: 7,-24 + 1667: -22,39 + 1668: -23,39 + 2097: 30,-11 + 2098: 29,-11 + 2099: 28,-11 + 2526: 1,68 + 2527: -1,68 + 2528: -2,68 + 2529: -3,68 + 2530: -4,68 + 2531: -5,68 + 2532: -5,63 + 2533: -3,63 + 2534: -2,63 + 2535: 0,63 + 2536: 1,63 + 2537: -13,68 + 2538: -13,67 + 2539: -13,66 + 2540: -12,66 + 2541: -11,66 + 2542: -11,67 + 2543: -11,68 + 2544: -12,68 + 2545: -12,67 + 2546: -10,68 + 2547: -10,67 + 2548: -9,67 + 2549: -9,68 + 2550: -15,66 + 2551: -15,65 + 2552: -15,64 + 3313: 72,-34 + 3314: 73,-34 + 3315: 74,-34 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -626,91 +631,91 @@ entities: color: '#334E6DC8' id: BotGreyscale decals: - 3096: -1,-4 + 3095: -1,-4 - node: color: '#52B4E996' id: BotGreyscale decals: - 3093: 2,-1 - 3102: 3,-4 + 3092: 2,-1 + 3101: 3,-4 - node: color: '#9FED5896' id: BotGreyscale decals: - 3094: 2,5 - 3103: 3,-6 + 3093: 2,5 + 3102: 3,-6 - node: color: '#A4610696' id: BotGreyscale decals: - 3099: -3,-5 + 3098: -3,-5 - node: color: '#D381C996' id: BotGreyscale decals: - 3101: 3,-5 + 3100: 3,-5 - node: color: '#D4D4D496' id: BotGreyscale decals: - 3095: 3,5 - 3097: 1,-4 + 3094: 3,5 + 3096: 1,-4 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 3100: -3,-6 + 3099: -3,-6 - node: color: '#EFB34196' id: BotGreyscale decals: - 3098: -3,-4 + 3097: -3,-4 - node: color: '#FFFFFF0C' id: BotGreyscale decals: - 2334: 11,51 - 2335: 11,50 - 2336: 11,49 - 2337: 11,48 + 2333: 11,51 + 2334: 11,50 + 2335: 11,49 + 2336: 11,48 - node: color: '#FFFFFF7F' id: BotGreyscale decals: - 2580: -17,49 + 2579: -17,49 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 1516: 10,-51 + 1515: 10,-51 - node: color: '#FFFFFF7F' id: BotLeft decals: - 1603: 30,18 - 1604: 29,18 + 1602: 30,18 + 1603: 29,18 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1032: 31,13 - 1033: 31,14 - 1034: 31,15 - 1035: 31,16 - 1037: 32,17 - 1038: 33,17 - 1039: 34,17 + 1031: 31,13 + 1032: 31,14 + 1033: 31,15 + 1034: 31,16 + 1036: 32,17 + 1037: 33,17 + 1038: 34,17 - node: color: '#FFFFFFFF' id: BotRight decals: - 1216: -9,-21 - 1217: -9,-20 + 1215: -9,-21 + 1216: -9,-20 - node: color: '#FFFFFFFF' id: Box decals: - 1215: -7,-22 + 1214: -7,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -791,258 +796,258 @@ entities: 467: -7,1 468: -7,2 469: -6,4 - 2598: -12,34 - 2599: -12,33 - 2600: -12,32 + 2597: -12,34 + 2598: -12,33 + 2599: -12,32 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 994: -30,8 - 995: -34,8 - 996: -34,4 - 997: -30,4 + 993: -30,8 + 994: -34,8 + 995: -34,4 + 996: -30,4 - node: color: '#00FFFF7F' id: BrickTileSteelCornerNe decals: - 2169: 18,29 + 2168: 18,29 - node: color: '#32CD32AC' id: BrickTileSteelCornerNe decals: - 3017: 46,-37 - 3024: 53,-37 - 3025: 50,-37 - 3026: 46,-40 - 3027: 49,-46 + 3016: 46,-37 + 3023: 53,-37 + 3024: 50,-37 + 3025: 46,-40 + 3026: 49,-46 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 2732: 61,-14 - 2733: 57,-10 - 2793: 46,0 - 2884: 43,-12 - 2929: 53,-20 - 2941: 49,-27 - 2952: 55,-27 - 2975: 43,-26 - 3357: 50,-9 + 2731: 61,-14 + 2732: 57,-10 + 2792: 46,0 + 2883: 43,-12 + 2928: 53,-20 + 2940: 49,-27 + 2951: 55,-27 + 2974: 43,-26 + 3346: 50,-9 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2108: 27,-11 + 2107: 27,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 2351: 5,54 - 2476: -9,57 - 2590: -15,42 + 2350: 5,54 + 2475: -9,57 + 2589: -15,42 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 1977: 35,-3 - 2019: 25,-7 + 1976: 35,-3 + 2018: 25,-7 - node: color: '#32CD32AC' id: BrickTileSteelCornerNw decals: - 3016: 44,-37 - 3042: 52,-37 - 3043: 48,-37 - 3045: 45,-46 - 3062: 43,-41 - 3063: 44,-40 + 3015: 44,-37 + 3041: 52,-37 + 3042: 48,-37 + 3044: 45,-46 + 3061: 43,-41 + 3062: 44,-40 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 2719: 48,0 - 2737: 59,-14 - 2738: 55,-10 - 2757: 56,-15 - 2779: 48,-9 - 2796: 41,0 - 2885: 41,-12 - 2934: 50,-20 - 2940: 48,-27 - 2953: 51,-27 - 2976: 40,-26 - 2987: 48,-33 + 2718: 48,0 + 2736: 59,-14 + 2737: 55,-10 + 2756: 56,-15 + 2778: 48,-9 + 2795: 41,0 + 2884: 41,-12 + 2933: 50,-20 + 2939: 48,-27 + 2952: 51,-27 + 2975: 40,-26 + 2986: 48,-33 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2123: 19,-11 + 2122: 19,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 2473: -6,57 - 2589: -17,42 + 2472: -6,57 + 2588: -17,42 - node: color: '#00FFFF7F' id: BrickTileSteelCornerSe decals: - 2167: 18,25 + 2166: 18,25 - node: color: '#32CD32AC' id: BrickTileSteelCornerSe decals: - 3018: 46,-38 - 3028: 50,-39 - 3029: 47,-44 - 3030: 49,-47 - 3031: 48,-48 + 3017: 46,-38 + 3027: 50,-39 + 3028: 47,-44 + 3029: 49,-47 + 3030: 48,-48 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 2709: 50,-7 - 2748: 61,-18 - 2760: 53,-14 - 2874: 46,-35 - 2887: 43,-18 - 2905: 43,-23 - 2928: 53,-25 - 2942: 49,-31 - 2954: 55,-31 - 2977: 43,-31 - 3358: 50,-11 + 2708: 50,-7 + 2747: 61,-18 + 2759: 53,-14 + 2873: 46,-35 + 2886: 43,-18 + 2904: 43,-23 + 2927: 53,-25 + 2941: 49,-31 + 2953: 55,-31 + 2976: 43,-31 + 3347: 50,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 2592: -15,40 + 2591: -15,40 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2011: 26,-5 + 2010: 26,-5 - node: color: '#32CD32AC' id: BrickTileSteelCornerSw decals: - 3019: 44,-38 - 3020: 48,-39 - 3021: 52,-39 - 3046: 45,-48 - 3064: 43,-43 - 3065: 44,-44 + 3018: 44,-38 + 3019: 48,-39 + 3020: 52,-39 + 3045: 45,-48 + 3063: 43,-43 + 3064: 44,-44 - node: color: '#334E6DC8' id: BrickTileSteelCornerSw decals: - 2490: -4,56 + 2489: -4,56 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2716: 48,-7 - 2739: 55,-13 - 2740: 56,-18 - 2777: 48,-11 - 2803: 41,-7 - 2825: 41,-10 - 2886: 41,-18 - 2906: 40,-23 - 2933: 50,-25 - 2939: 48,-31 - 2955: 51,-31 - 2978: 40,-31 - 2986: 48,-35 - 3005: 44,-35 + 2715: 48,-7 + 2738: 55,-13 + 2739: 56,-18 + 2776: 48,-11 + 2802: 41,-7 + 2824: 41,-10 + 2885: 41,-18 + 2905: 40,-23 + 2932: 50,-25 + 2938: 48,-31 + 2954: 51,-31 + 2977: 40,-31 + 2985: 48,-35 + 3004: 44,-35 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2119: 19,-16 + 2118: 19,-16 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 2365: -5,48 - 2416: -13,36 - 2591: -17,40 + 2364: -5,48 + 2415: -13,36 + 2590: -17,40 - node: color: '#52B4E996' id: BrickTileSteelEndN decals: - 2903: 40,-20 - 2904: 43,-20 + 2902: 40,-20 + 2903: 43,-20 - node: color: '#DE3A3A96' id: BrickTileSteelEndN decals: - 2581: -15,46 + 2580: -15,46 - node: color: '#BBC1C4B2' id: BrickTileSteelEndS decals: - 1092: -2,18 - 1093: 2,18 + 1091: -2,18 + 1092: 2,18 - node: color: '#DE3A3A96' id: BrickTileSteelEndS decals: - 2582: -15,44 + 2581: -15,44 - node: color: '#32CD32AC' id: BrickTileSteelInnerNe decals: - 3032: 46,-41 + 3031: 46,-41 - node: color: '#334E6DC8' id: BrickTileSteelInnerNe decals: - 2378: -4,54 + 2377: -4,54 - node: color: '#52B4E996' id: BrickTileSteelInnerNe decals: - 2782: 46,-13 - 2912: 40,-21 + 2781: 46,-13 + 2911: 40,-21 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 2354: 2,54 - 2369: 1,48 - 2407: -7,36 - 2452: -12,38 + 2353: 2,54 + 2368: 1,48 + 2406: -7,36 + 2451: -12,38 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2003: 29,-3 + 2002: 29,-3 - node: color: '#32CD32AC' id: BrickTileSteelInnerNw decals: - 3067: 44,-41 + 3066: 44,-41 - node: color: '#334E6DC8' id: BrickTileSteelInnerNw decals: - 2377: 2,54 + 2376: 2,54 - node: color: '#52B4E996' id: BrickTileSteelInnerNw decals: - 2736: 59,-15 - 2767: 52,-13 - 2846: 45,-33 - 2911: 43,-21 + 2735: 59,-15 + 2766: 52,-13 + 2845: 45,-33 + 2910: 43,-21 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNw decals: - 2426: -8,46 - 2451: -7,38 + 2425: -8,46 + 2450: -7,38 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw @@ -1052,447 +1057,447 @@ entities: color: '#32CD32AC' id: BrickTileSteelInnerSe decals: - 3051: 48,-47 + 3050: 48,-47 - node: color: '#52B4E996' id: BrickTileSteelInnerSe decals: - 2781: 46,-14 + 2780: 46,-14 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 2344: 1,44 - 2453: -12,44 + 2343: 1,44 + 2452: -12,44 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2002: 29,-3 + 2001: 29,-3 - node: color: '#32CD32AC' id: BrickTileSteelInnerSw decals: - 3066: 44,-43 + 3065: 44,-43 - node: color: '#52B4E996' id: BrickTileSteelInnerSw decals: - 2829: 45,-10 + 2828: 45,-10 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSw decals: - 2454: -7,44 - 2472: -8,53 + 2453: -7,44 + 2471: -8,53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2009: 35,-3 + 2008: 35,-3 - node: color: '#00FFFF7F' id: BrickTileSteelLineE decals: - 2168: 18,26 + 2167: 18,26 - node: color: '#32CD32AC' id: BrickTileSteelLineE decals: - 3039: 50,-38 - 3040: 53,-38 - 3041: 53,-39 - 3052: 47,-43 - 3053: 47,-42 + 3038: 50,-38 + 3039: 53,-38 + 3040: 53,-39 + 3051: 47,-43 + 3052: 47,-42 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2704: 50,-1 - 2705: 50,-2 - 2706: 50,-3 - 2707: 50,-4 - 2708: 50,-5 - 2725: 50,0 - 2726: 53,-9 - 2727: 53,-10 - 2728: 53,-13 - 2729: 57,-11 - 2730: 57,-12 - 2731: 61,-17 - 2759: 57,-13 - 2783: 46,-10 - 2784: 46,-11 - 2785: 46,-12 - 2786: 46,-7 - 2787: 46,-6 - 2788: 46,-5 - 2789: 46,-4 - 2790: 46,-3 - 2791: 46,-2 - 2792: 46,-1 - 2819: 46,-9 - 2847: 46,-33 - 2848: 46,-32 - 2849: 46,-31 - 2850: 46,-30 - 2851: 46,-28 - 2852: 46,-27 - 2853: 46,-26 - 2854: 46,-25 - 2855: 46,-24 - 2856: 46,-23 - 2857: 46,-19 - 2858: 46,-18 - 2859: 46,-17 - 2860: 46,-15 - 2924: 53,-21 - 2925: 53,-22 - 2926: 53,-23 - 2927: 53,-24 - 2943: 49,-28 - 2944: 49,-29 - 2945: 49,-30 - 2946: 55,-28 - 2947: 55,-29 - 2948: 55,-30 - 2972: 43,-27 - 2973: 43,-28 - 2974: 43,-29 - 3305: 61,-16 - 3359: 50,-10 + 2703: 50,-1 + 2704: 50,-2 + 2705: 50,-3 + 2706: 50,-4 + 2707: 50,-5 + 2724: 50,0 + 2725: 53,-9 + 2726: 53,-10 + 2727: 53,-13 + 2728: 57,-11 + 2729: 57,-12 + 2730: 61,-17 + 2758: 57,-13 + 2782: 46,-10 + 2783: 46,-11 + 2784: 46,-12 + 2785: 46,-7 + 2786: 46,-6 + 2787: 46,-5 + 2788: 46,-4 + 2789: 46,-3 + 2790: 46,-2 + 2791: 46,-1 + 2818: 46,-9 + 2846: 46,-33 + 2847: 46,-32 + 2848: 46,-31 + 2849: 46,-30 + 2850: 46,-28 + 2851: 46,-27 + 2852: 46,-26 + 2853: 46,-25 + 2854: 46,-24 + 2855: 46,-23 + 2856: 46,-19 + 2857: 46,-18 + 2858: 46,-17 + 2859: 46,-15 + 2923: 53,-21 + 2924: 53,-22 + 2925: 53,-23 + 2926: 53,-24 + 2942: 49,-28 + 2943: 49,-29 + 2944: 49,-30 + 2945: 55,-28 + 2946: 55,-29 + 2947: 55,-30 + 2971: 43,-27 + 2972: 43,-28 + 2973: 43,-29 + 3294: 61,-16 + 3348: 50,-10 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 1965: -63,9 - 1966: -63,8 - 1967: -63,7 - 1968: -63,5 - 1969: -63,10 + 1964: -63,9 + 1965: -63,8 + 1966: -63,7 + 1967: -63,5 + 1968: -63,10 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 2271: 1,39 - 2272: 1,38 - 2273: 1,37 - 2274: 1,36 - 2275: 1,41 - 2276: 1,42 - 2277: 1,43 - 2352: 5,53 - 2355: 1,51 - 2356: 1,50 - 2393: -7,52 - 2394: -7,51 - 2395: -7,50 - 2396: -7,49 - 2397: -7,48 - 2398: -7,47 - 2399: -7,46 - 2400: -7,44 - 2401: -7,43 - 2402: -7,42 - 2403: -7,40 - 2404: -7,39 - 2405: -7,38 - 2442: -12,43 - 2443: -12,42 - 2444: -12,41 - 2445: -12,40 - 2446: -12,39 - 2475: -9,56 - 2556: -11,60 - 2557: -11,59 - 2558: -11,58 - 2559: -11,57 - 2583: -17,46 - 2584: -17,44 + 2270: 1,39 + 2271: 1,38 + 2272: 1,37 + 2273: 1,36 + 2274: 1,41 + 2275: 1,42 + 2276: 1,43 + 2351: 5,53 + 2354: 1,51 + 2355: 1,50 + 2392: -7,52 + 2393: -7,51 + 2394: -7,50 + 2395: -7,49 + 2396: -7,48 + 2397: -7,47 + 2398: -7,46 + 2399: -7,44 + 2400: -7,43 + 2401: -7,42 + 2402: -7,40 + 2403: -7,39 + 2404: -7,38 + 2441: -12,43 + 2442: -12,42 + 2443: -12,41 + 2444: -12,40 + 2445: -12,39 + 2474: -9,56 + 2555: -11,60 + 2556: -11,59 + 2557: -11,58 + 2558: -11,57 + 2582: -17,46 + 2583: -17,44 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 1970: -63,2 - 3086: 1,28 - 3087: 1,26 + 1969: -63,2 + 3085: 1,28 + 3086: 1,26 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1983: 29,0 - 1984: 29,-1 - 1985: 29,-2 - 1986: 29,-4 - 1987: 29,-5 - 1988: 29,-6 - 1989: 29,-7 - 1990: 29,-8 - 1991: 29,-9 - 2012: 26,-4 - 2013: 26,-3 - 2014: 26,-2 - 2015: 26,-1 - 2016: 25,-8 - 2017: 25,-9 - 2082: 26,0 + 1982: 29,0 + 1983: 29,-1 + 1984: 29,-2 + 1985: 29,-4 + 1986: 29,-5 + 1987: 29,-6 + 1988: 29,-7 + 1989: 29,-8 + 1990: 29,-9 + 2011: 26,-4 + 2012: 26,-3 + 2013: 26,-2 + 2014: 26,-1 + 2015: 25,-8 + 2016: 25,-9 + 2081: 26,0 - node: color: '#00FFFF7F' id: BrickTileSteelLineN decals: - 2170: 16,29 - 2171: 15,29 - 2172: 14,29 - 2173: 12,29 - 2174: 11,29 + 2169: 16,29 + 2170: 15,29 + 2171: 14,29 + 2172: 12,29 + 2173: 11,29 - node: color: '#32CD32AC' id: BrickTileSteelLineN decals: - 3033: 47,-41 - 3034: 48,-41 - 3035: 50,-41 - 3036: 51,-41 - 3037: 52,-41 - 3038: 49,-37 - 3049: 48,-46 - 3050: 47,-46 + 3032: 47,-41 + 3033: 48,-41 + 3034: 50,-41 + 3035: 51,-41 + 3036: 52,-41 + 3037: 49,-37 + 3048: 48,-46 + 3049: 47,-46 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 2373: 1,54 - 2374: -1,54 - 2375: -2,54 - 2376: -3,54 + 2372: 1,54 + 2373: -1,54 + 2374: -2,54 + 2375: -3,54 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 2718: 49,0 - 2734: 56,-10 - 2735: 58,-15 - 2773: 51,-13 - 2774: 50,-13 - 2775: 48,-13 - 2780: 49,-9 - 2794: 45,0 - 2795: 42,0 - 2820: 44,-9 - 2821: 43,-9 - 2824: 41,-9 - 2873: 44,-33 - 2889: 42,-12 - 2930: 52,-20 - 2931: 51,-20 - 2956: 54,-27 - 2957: 53,-27 - 2982: 41,-26 - 2983: 42,-26 - 2988: 49,-33 - 2989: 50,-33 - 2990: 51,-33 - 2991: 53,-33 - 2992: 54,-33 - 2993: 55,-33 - 3356: 49,-13 + 2717: 49,0 + 2733: 56,-10 + 2734: 58,-15 + 2772: 51,-13 + 2773: 50,-13 + 2774: 48,-13 + 2779: 49,-9 + 2793: 45,0 + 2794: 42,0 + 2819: 44,-9 + 2820: 43,-9 + 2823: 41,-9 + 2872: 44,-33 + 2888: 42,-12 + 2929: 52,-20 + 2930: 51,-20 + 2955: 54,-27 + 2956: 53,-27 + 2981: 41,-26 + 2982: 42,-26 + 2987: 49,-33 + 2988: 50,-33 + 2989: 51,-33 + 2990: 53,-33 + 2991: 54,-33 + 2992: 55,-33 + 3345: 49,-13 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2101: 20,-11 - 2102: 21,-11 - 2103: 22,-11 - 2104: 23,-11 - 2105: 24,-11 - 2106: 25,-11 - 2107: 26,-11 + 2100: 20,-11 + 2101: 21,-11 + 2102: 22,-11 + 2103: 23,-11 + 2104: 24,-11 + 2105: 25,-11 + 2106: 26,-11 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 2251: 4,38 - 2252: 6,38 - 2253: 8,38 - 2254: 3,41 - 2255: 4,41 - 2256: 5,41 - 2257: 6,41 - 2282: 5,46 - 2283: 4,46 - 2284: 3,46 - 2285: 2,46 - 2353: 3,54 - 2423: -12,46 - 2424: -11,46 - 2425: -9,46 - 2447: -11,38 - 2448: -10,38 - 2449: -9,38 - 2450: -8,38 - 2466: -7,54 - 2467: -9,54 - 2468: -10,54 - 2586: -20,42 - 2587: -19,42 - 2588: -16,42 + 2250: 4,38 + 2251: 6,38 + 2252: 8,38 + 2253: 3,41 + 2254: 4,41 + 2255: 5,41 + 2256: 6,41 + 2281: 5,46 + 2282: 4,46 + 2283: 3,46 + 2284: 2,46 + 2352: 3,54 + 2422: -12,46 + 2423: -11,46 + 2424: -9,46 + 2446: -11,38 + 2447: -10,38 + 2448: -9,38 + 2449: -8,38 + 2465: -7,54 + 2466: -9,54 + 2467: -10,54 + 2585: -20,42 + 2586: -19,42 + 2587: -16,42 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: 587: -66,-3 - 1944: -69,27 - 1945: -70,27 - 1946: -72,27 - 1947: -73,27 - 1948: -74,27 - 1949: -76,27 - 1950: -65,27 - 1951: -64,27 - 1952: -63,27 - 1978: 34,-3 - 1979: 33,-3 - 1980: 32,-3 - 1981: 31,-3 - 1982: 30,-3 - 2018: 24,-7 - 3198: -77,27 - 3212: -74,13 - 3216: -67,13 - 3217: -66,13 - 3218: -65,13 - 3229: -78,27 - 3230: -75,13 - 3244: -76,13 - 3245: -69,13 - 3246: -68,13 + 1943: -69,27 + 1944: -70,27 + 1945: -72,27 + 1946: -73,27 + 1947: -74,27 + 1948: -76,27 + 1949: -65,27 + 1950: -64,27 + 1951: -63,27 + 1977: 34,-3 + 1978: 33,-3 + 1979: 32,-3 + 1980: 31,-3 + 1981: 30,-3 + 2017: 24,-7 + 3197: -77,27 + 3211: -74,13 + 3215: -67,13 + 3216: -66,13 + 3217: -65,13 + 3218: -78,27 + 3219: -75,13 + 3233: -76,13 + 3234: -69,13 + 3235: -68,13 - node: color: '#00FFFF7F' id: BrickTileSteelLineS decals: - 2185: 14,25 - 2186: 15,25 - 2187: 12,25 - 2188: 11,25 - 2197: 17,25 + 2184: 14,25 + 2185: 15,25 + 2186: 12,25 + 2187: 11,25 + 2196: 17,25 - node: color: '#32CD32AC' id: BrickTileSteelLineS decals: - 3047: 46,-48 - 3048: 47,-48 - 3061: 45,-44 + 3046: 46,-48 + 3047: 47,-48 + 3060: 45,-44 - node: color: '#334E6DC8' id: BrickTileSteelLineS decals: - 2486: 1,56 - 2487: -1,56 - 2488: -2,56 - 2489: -3,56 - 2493: 2,56 + 2485: 1,56 + 2486: -1,56 + 2487: -2,56 + 2488: -3,56 + 2492: 2,56 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 2700: 56,2 - 2701: 53,2 - 2702: 51,2 - 2703: 49,2 - 2717: 49,-7 - 2720: 45,2 - 2721: 46,2 - 2722: 42,2 - 2723: 41,2 - 2741: 57,-18 - 2742: 58,-18 - 2743: 59,-18 - 2744: 60,-18 - 2745: 56,-13 - 2769: 51,-14 - 2770: 50,-14 - 2771: 49,-14 - 2772: 48,-14 - 2804: 43,-7 - 2805: 44,-7 - 2826: 42,-10 - 2827: 43,-10 - 2828: 44,-10 - 2888: 42,-18 - 2909: 42,-23 - 2910: 41,-23 - 2932: 51,-25 - 2958: 54,-31 - 2959: 53,-31 - 2980: 41,-31 - 2981: 42,-31 - 2994: 49,-35 - 2995: 50,-35 - 2996: 51,-35 - 2997: 52,-35 - 2998: 53,-35 - 2999: 54,-35 - 3355: 49,-11 + 2699: 56,2 + 2700: 53,2 + 2701: 51,2 + 2702: 49,2 + 2716: 49,-7 + 2719: 45,2 + 2720: 46,2 + 2721: 42,2 + 2722: 41,2 + 2740: 57,-18 + 2741: 58,-18 + 2742: 59,-18 + 2743: 60,-18 + 2744: 56,-13 + 2768: 51,-14 + 2769: 50,-14 + 2770: 49,-14 + 2771: 48,-14 + 2803: 43,-7 + 2804: 44,-7 + 2825: 42,-10 + 2826: 43,-10 + 2827: 44,-10 + 2887: 42,-18 + 2908: 42,-23 + 2909: 41,-23 + 2931: 51,-25 + 2957: 54,-31 + 2958: 53,-31 + 2979: 41,-31 + 2980: 42,-31 + 2993: 49,-35 + 2994: 50,-35 + 2995: 51,-35 + 2996: 52,-35 + 2997: 53,-35 + 2998: 54,-35 + 3344: 49,-11 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 1938: -40,14 - 1939: -39,14 - 1940: -43,14 - 1941: -44,14 - 2109: 29,-16 - 2110: 28,-16 - 2111: 27,-16 - 2112: 26,-16 - 2113: 25,-16 - 2114: 24,-16 - 2115: 23,-16 - 2116: 22,-16 - 2117: 21,-16 - 2118: 20,-16 - 2596: -8,36 + 1937: -40,14 + 1938: -39,14 + 1939: -43,14 + 1940: -44,14 + 2108: 29,-16 + 2109: 28,-16 + 2110: 27,-16 + 2111: 26,-16 + 2112: 25,-16 + 2113: 24,-16 + 2114: 23,-16 + 2115: 22,-16 + 2116: 21,-16 + 2117: 20,-16 + 2595: -8,36 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 2245: 8,39 - 2246: 7,39 - 2247: 6,39 - 2248: 5,39 - 2249: 4,39 - 2250: 3,39 - 2258: 4,42 - 2259: 6,42 - 2278: 2,44 - 2279: 3,44 - 2280: 4,44 - 2281: 5,44 - 2338: 14,48 - 2339: 13,48 - 2340: 12,48 - 2341: 10,48 - 2342: 9,48 - 2343: 8,48 - 2357: 0,48 - 2358: -2,48 - 2359: -3,48 - 2360: -4,48 - 2406: -9,36 - 2414: -11,36 - 2415: -12,36 - 2438: -8,44 - 2439: -9,44 - 2440: -10,44 - 2441: -11,44 - 2469: -9,53 - 2470: -11,53 - 2471: -12,53 - 2477: -9,59 - 2478: -8,59 - 2479: -7,59 - 2480: -6,59 - 2585: -16,40 + 2244: 8,39 + 2245: 7,39 + 2246: 6,39 + 2247: 5,39 + 2248: 4,39 + 2249: 3,39 + 2257: 4,42 + 2258: 6,42 + 2277: 2,44 + 2278: 3,44 + 2279: 4,44 + 2280: 5,44 + 2337: 14,48 + 2338: 13,48 + 2339: 12,48 + 2340: 10,48 + 2341: 9,48 + 2342: 8,48 + 2356: 0,48 + 2357: -2,48 + 2358: -3,48 + 2359: -4,48 + 2405: -9,36 + 2413: -11,36 + 2414: -12,36 + 2437: -8,44 + 2438: -9,44 + 2439: -10,44 + 2440: -11,44 + 2468: -9,53 + 2469: -11,53 + 2470: -12,53 + 2476: -9,59 + 2477: -8,59 + 2478: -7,59 + 2479: -6,59 + 2584: -16,40 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1501,135 +1506,135 @@ entities: 591: -65,-4 592: -64,-4 593: -63,-4 - 2004: 30,-3 - 2005: 31,-3 - 2006: 32,-3 - 2007: 33,-3 - 2008: 34,-3 - 2010: 25,-5 - 2094: 27,2 - 2095: 26,2 - 2096: 31,2 - 2097: 32,2 - 3199: -65,11 - 3200: -66,11 - 3201: -67,11 - 3202: -68,11 - 3203: -69,11 - 3204: -70,11 - 3205: -71,11 - 3206: -72,11 - 3207: -73,11 - 3208: -74,11 - 3209: -76,11 - 3210: -75,11 - 3211: -77,11 - 3213: -65,25 - 3214: -66,25 - 3215: -67,25 - 3231: -76,25 - 3232: -75,25 - 3233: -74,25 - 3234: -73,25 - 3247: -69,25 - 3248: -68,25 - 3266: -78,11 + 2003: 30,-3 + 2004: 31,-3 + 2005: 32,-3 + 2006: 33,-3 + 2007: 34,-3 + 2009: 25,-5 + 2093: 27,2 + 2094: 26,2 + 2095: 31,2 + 2096: 32,2 + 3198: -65,11 + 3199: -66,11 + 3200: -67,11 + 3201: -68,11 + 3202: -69,11 + 3203: -70,11 + 3204: -71,11 + 3205: -72,11 + 3206: -73,11 + 3207: -74,11 + 3208: -76,11 + 3209: -75,11 + 3210: -77,11 + 3212: -65,25 + 3213: -66,25 + 3214: -67,25 + 3220: -76,25 + 3221: -75,25 + 3222: -74,25 + 3223: -73,25 + 3236: -69,25 + 3237: -68,25 + 3255: -78,11 - node: color: '#00FFFF7F' id: BrickTileSteelLineW decals: - 2175: 9,32 - 2176: 9,31 - 2177: 9,30 - 2178: 9,28 - 2179: 9,27 - 2180: 9,26 - 2181: 9,25 - 2182: 9,24 - 2183: 9,21 - 2184: 9,22 + 2174: 9,32 + 2175: 9,31 + 2176: 9,30 + 2177: 9,28 + 2178: 9,27 + 2179: 9,26 + 2180: 9,25 + 2181: 9,24 + 2182: 9,21 + 2183: 9,22 - node: color: '#32CD32AC' id: BrickTileSteelLineW decals: - 3022: 52,-38 - 3023: 43,-42 - 3044: 48,-38 + 3021: 52,-38 + 3022: 43,-42 + 3043: 48,-38 - node: color: '#334E6DC8' id: BrickTileSteelLineW decals: - 2491: -4,57 - 2492: -4,59 + 2490: -4,57 + 2491: -4,59 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 2710: 48,-1 - 2711: 48,-2 - 2712: 48,-3 - 2713: 48,-4 - 2714: 48,-5 - 2715: 48,-6 - 2746: 56,-16 - 2747: 56,-17 - 2761: 52,-12 - 2762: 52,-11 - 2763: 52,-10 - 2764: 52,-9 - 2765: 52,-8 - 2766: 52,-7 - 2778: 48,-10 - 2797: 41,-1 - 2798: 41,-2 - 2799: 41,-3 - 2800: 41,-4 - 2801: 41,-5 - 2802: 41,-6 - 2830: 45,-11 - 2831: 45,-12 - 2832: 45,-14 - 2833: 45,-15 - 2834: 45,-16 - 2835: 45,-18 - 2836: 45,-19 - 2837: 45,-23 - 2838: 45,-24 - 2839: 45,-25 - 2840: 45,-26 - 2841: 45,-27 - 2842: 45,-28 - 2843: 45,-29 - 2844: 45,-31 - 2845: 45,-32 - 2890: 41,-13 - 2891: 41,-14 - 2892: 41,-15 - 2893: 41,-16 - 2894: 41,-17 - 2907: 40,-22 - 2908: 40,-21 - 2935: 50,-24 - 2936: 50,-23 - 2937: 48,-28 - 2938: 48,-30 - 2949: 51,-28 - 2950: 51,-29 - 2951: 51,-30 - 2969: 40,-27 - 2970: 40,-28 - 2971: 40,-29 - 2979: 40,-30 + 2709: 48,-1 + 2710: 48,-2 + 2711: 48,-3 + 2712: 48,-4 + 2713: 48,-5 + 2714: 48,-6 + 2745: 56,-16 + 2746: 56,-17 + 2760: 52,-12 + 2761: 52,-11 + 2762: 52,-10 + 2763: 52,-9 + 2764: 52,-8 + 2765: 52,-7 + 2777: 48,-10 + 2796: 41,-1 + 2797: 41,-2 + 2798: 41,-3 + 2799: 41,-4 + 2800: 41,-5 + 2801: 41,-6 + 2829: 45,-11 + 2830: 45,-12 + 2831: 45,-14 + 2832: 45,-15 + 2833: 45,-16 + 2834: 45,-18 + 2835: 45,-19 + 2836: 45,-23 + 2837: 45,-24 + 2838: 45,-25 + 2839: 45,-26 + 2840: 45,-27 + 2841: 45,-28 + 2842: 45,-29 + 2843: 45,-31 + 2844: 45,-32 + 2889: 41,-13 + 2890: 41,-14 + 2891: 41,-15 + 2892: 41,-16 + 2893: 41,-17 + 2906: 40,-22 + 2907: 40,-21 + 2934: 50,-24 + 2935: 50,-23 + 2936: 48,-28 + 2937: 48,-30 + 2948: 51,-28 + 2949: 51,-29 + 2950: 51,-30 + 2968: 40,-27 + 2969: 40,-28 + 2970: 40,-29 + 2978: 40,-30 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2120: 19,-15 - 2121: 19,-13 - 2122: 19,-12 - 3081: -1,33 - 3082: -1,32 - 3083: -1,31 + 2119: 19,-15 + 2120: 19,-13 + 2121: 19,-12 + 3080: -1,33 + 3081: -1,32 + 3082: -1,31 - node: color: '#D381C9FF' id: BrickTileSteelLineW @@ -1639,99 +1644,99 @@ entities: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 2286: -1,46 - 2287: -1,45 - 2288: -1,44 - 2289: -1,43 - 2290: -1,42 - 2291: -1,41 - 2292: -1,40 - 2293: -1,39 - 2294: -1,38 - 2295: -1,37 - 2296: -1,36 - 2297: 7,44 - 2298: 7,46 - 2299: 7,47 - 2300: 7,51 - 2301: 7,53 - 2361: -5,52 - 2362: -5,51 - 2363: -5,50 - 2364: -5,49 - 2408: -5,36 - 2409: -5,38 - 2410: -5,40 - 2411: -5,42 - 2412: -5,44 - 2413: -5,46 - 2417: -13,38 - 2418: -13,39 - 2419: -13,40 - 2420: -13,42 - 2421: -13,43 - 2422: -13,44 - 2427: -8,47 - 2428: -8,48 - 2429: -8,49 - 2430: -8,51 - 2431: -8,52 - 2433: -7,43 - 2434: -7,42 - 2435: -7,41 - 2436: -7,40 - 2437: -7,39 - 2474: -6,56 - 2560: -12,60 - 2561: -12,59 - 2562: -12,58 - 2563: -12,57 + 2285: -1,46 + 2286: -1,45 + 2287: -1,44 + 2288: -1,43 + 2289: -1,42 + 2290: -1,41 + 2291: -1,40 + 2292: -1,39 + 2293: -1,38 + 2294: -1,37 + 2295: -1,36 + 2296: 7,44 + 2297: 7,46 + 2298: 7,47 + 2299: 7,51 + 2300: 7,53 + 2360: -5,52 + 2361: -5,51 + 2362: -5,50 + 2363: -5,49 + 2407: -5,36 + 2408: -5,38 + 2409: -5,40 + 2410: -5,42 + 2411: -5,44 + 2412: -5,46 + 2416: -13,38 + 2417: -13,39 + 2418: -13,40 + 2419: -13,42 + 2420: -13,43 + 2421: -13,44 + 2426: -8,47 + 2427: -8,48 + 2428: -8,49 + 2429: -8,51 + 2430: -8,52 + 2432: -7,43 + 2433: -7,42 + 2434: -7,41 + 2435: -7,40 + 2436: -7,39 + 2473: -6,56 + 2559: -12,60 + 2560: -12,59 + 2561: -12,58 + 2562: -12,57 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: - 3084: -1,29 - 3085: -1,27 + 3083: -1,29 + 3084: -1,27 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: 588: -65,-2 - 1992: 29,-9 - 1993: 29,-8 - 1994: 29,-7 - 1995: 29,-6 - 1996: 29,-5 - 1997: 29,-4 - 1998: 29,-3 - 1999: 29,-2 - 2000: 29,-1 - 2001: 29,0 + 1991: 29,-9 + 1992: 29,-8 + 1993: 29,-7 + 1994: 29,-6 + 1995: 29,-5 + 1996: 29,-4 + 1997: 29,-3 + 1998: 29,-2 + 1999: 29,-1 + 2000: 29,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: 667: 11,5 - 768: 13,-6 + 767: 13,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2687: 57,0 + 2686: 57,0 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 1741: -19,-5 - 1772: -19,-12 - 1811: -19,-2 - 1840: -30,-2 - 1888: -24,-18 + 1740: -19,-5 + 1771: -19,-12 + 1810: -19,-2 + 1839: -30,-2 + 1887: -24,-18 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1131: -5,-37 + 1130: -5,-37 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNe @@ -1741,15 +1746,15 @@ entities: 196: 76,-18 208: 60,0 221: 72,-7 - 3300: 64,-1 - 3322: 85,-16 - 3344: 76,-27 + 3289: 64,-1 + 3311: 85,-16 + 3333: 76,-27 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1223: 2,-39 - 1245: 6,-35 + 1222: 2,-39 + 1244: 6,-35 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw @@ -1759,18 +1764,18 @@ entities: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2684: 52,0 + 2683: 52,0 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 1771: -22,-12 - 1887: -26,-18 + 1770: -22,-12 + 1886: -26,-18 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1130: -3,-37 + 1129: -3,-37 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNw @@ -1779,28 +1784,28 @@ entities: 153: 66,-25 195: 74,-18 207: 59,0 - 3288: 59,-5 - 3311: 63,-8 + 3277: 59,-5 + 3300: 63,-8 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 1244: 4,-35 - 1281: 2,-49 - 1299: -9,-45 + 1243: 4,-35 + 1280: 2,-49 + 1298: -9,-45 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 766: 13,-11 + 765: 13,-11 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 1740: -19,-10 - 1773: -19,-15 - 1794: -24,-16 - 1812: -19,-3 + 1739: -19,-10 + 1772: -19,-15 + 1793: -24,-16 + 1811: -19,-3 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSe @@ -1809,12 +1814,12 @@ entities: 136: 61,-24 201: 61,-9 216: 64,-6 - 3323: 85,-22 + 3312: 85,-22 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1255: 10,-42 + 1254: 10,-42 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1824,13 +1829,13 @@ entities: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2688: 52,-4 + 2687: 52,-4 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 1774: -22,-15 - 1793: -26,-16 + 1773: -22,-15 + 1792: -26,-16 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSw @@ -1838,46 +1843,46 @@ entities: 95: 62,-43 123: 57,-26 202: 59,-9 - 2663: 57,-24 - 3303: 59,-2 + 2662: 57,-24 + 3292: 59,-2 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1254: 8,-42 - 1288: -10,-55 - 1300: -9,-48 + 1253: 8,-42 + 1287: -10,-55 + 1299: -9,-48 - node: color: '#6A6B73FF' id: BrickTileWhiteEndE decals: - 937: -5,26 + 936: -5,26 - node: color: '#6A6B73FF' id: BrickTileWhiteEndN decals: - 942: -3,26 + 941: -3,26 - node: color: '#6A6B73FF' id: BrickTileWhiteEndS decals: - 940: -3,25 + 939: -3,25 - node: color: '#6A6B73FF' id: BrickTileWhiteEndW decals: - 935: -6,26 + 934: -6,26 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: 668: 11,4 - 1503: 4,-49 + 1502: 4,-49 - node: color: '#474F52B2' id: BrickTileWhiteInnerNe decals: - 1063: -4,14 + 1062: -4,14 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe @@ -1886,34 +1891,34 @@ entities: 209: 60,-1 224: 69,-7 230: 64,-38 - 3277: 76,-20 + 3266: 76,-20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1224: 1,-39 - 1284: 6,-49 + 1223: 1,-39 + 1283: 6,-49 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1492: 5,-47 - 1502: 6,-49 + 1491: 5,-47 + 1501: 6,-49 - node: color: '#474F52B2' id: BrickTileWhiteInnerNw decals: - 1062: 4,14 + 1061: 4,14 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 985: 30,4 + 984: 30,4 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 1136: -1,-37 + 1135: -1,-37 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw @@ -1921,149 +1926,149 @@ entities: 200: 74,-20 225: 66,-8 229: 63,-38 - 3279: 81,-20 - 3298: 63,-5 + 3268: 81,-20 + 3287: 63,-5 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1280: 2,-50 + 1279: 2,-50 - node: color: '#474F52B2' id: BrickTileWhiteInnerSe decals: - 1061: -4,16 + 1060: -4,16 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: 181: 81,-25 - 905: 64,-9 - 2668: 61,-6 + 904: 64,-9 + 2667: 61,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1241: 1,-22 - 1269: -3,-51 + 1240: 1,-22 + 1268: -3,-51 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1496: 5,-43 + 1495: 5,-43 - node: color: '#474F52B2' id: BrickTileWhiteInnerSw decals: - 1057: 4,16 + 1056: 4,16 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 2691: 55,-4 + 2690: 55,-4 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1810: -23,2 + 1809: -23,2 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 1137: -1,-32 + 1136: -1,-32 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 3278: 81,-21 - 3297: 63,-2 + 3267: 81,-21 + 3286: 63,-2 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1266: 3,-51 + 1265: 3,-51 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 719: -15,-12 - 720: -15,-10 - 721: -15,-8 - 722: -15,-7 - 723: -15,-6 - 724: -15,-5 - 725: -15,-4 - 726: -15,-3 - 727: -15,-2 - 728: -15,-1 - 729: -15,0 - 730: -15,1 - 731: -15,2 - 732: -15,3 - 733: -15,4 - 734: -15,5 - 735: -15,6 - 736: -13,7 - 737: -13,9 - 738: -15,10 - 739: -15,11 - 740: -15,12 - 741: -15,13 + 718: -15,-12 + 719: -15,-10 + 720: -15,-8 + 721: -15,-7 + 722: -15,-6 + 723: -15,-5 + 724: -15,-4 + 725: -15,-3 + 726: -15,-2 + 727: -15,-1 + 728: -15,0 + 729: -15,1 + 730: -15,2 + 731: -15,3 + 732: -15,4 + 733: -15,5 + 734: -15,6 + 735: -13,7 + 736: -13,9 + 737: -15,10 + 738: -15,11 + 739: -15,12 + 740: -15,13 - node: color: '#3C44AAFF' id: BrickTileWhiteLineE decals: - 3196: 12,50 - 3197: 12,49 + 3195: 12,50 + 3196: 12,49 - node: color: '#474F52B2' id: BrickTileWhiteLineE decals: - 1036: -4,15 + 1035: -4,15 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2669: 57,-1 - 2670: 57,-6 - 2671: 57,-7 + 2668: 57,-1 + 2669: 57,-6 + 2670: 57,-7 - node: color: '#6A6B73FF' id: BrickTileWhiteLineE decals: - 914: -10,22 - 915: -10,23 - 916: -10,24 - 917: -13,20 - 918: -13,19 - 919: -13,18 + 913: -10,22 + 914: -10,23 + 915: -10,24 + 916: -13,20 + 917: -13,19 + 918: -13,18 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1743: -19,-6 - 1744: -19,-9 - 1775: -19,-13 - 1787: -24,-5 - 1788: -24,-7 - 1789: -24,-8 - 1790: -24,-10 - 1791: -24,-11 - 1792: -24,-12 - 1795: -24,-15 - 1796: -24,-14 - 1847: -30,-10 - 1848: -30,-5 - 1889: -24,-19 + 1742: -19,-6 + 1743: -19,-9 + 1774: -19,-13 + 1786: -24,-5 + 1787: -24,-7 + 1788: -24,-8 + 1789: -24,-10 + 1790: -24,-11 + 1791: -24,-12 + 1794: -24,-15 + 1795: -24,-14 + 1846: -30,-10 + 1847: -30,-5 + 1888: -24,-19 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: 390: 8,-9 391: 8,-8 - 3284: 66,-1 - 3285: 66,-2 - 3286: 66,-3 + 3273: 66,-1 + 3274: 66,-2 + 3275: 66,-3 - node: color: '#D381C9FF' id: BrickTileWhiteLineE @@ -2092,48 +2097,48 @@ entities: 214: 64,-4 215: 64,-5 223: 69,-6 - 878: 64,-19 - 879: 64,-18 - 880: 64,-17 - 881: 64,-16 - 882: 64,-15 - 883: 64,-14 - 884: 64,-11 - 885: 64,-12 - 3302: 61,-7 - 3314: 85,-19 - 3315: 85,-21 - 3320: 85,-20 - 3321: 85,-18 - 3348: 76,-28 + 877: 64,-19 + 878: 64,-18 + 879: 64,-17 + 880: 64,-16 + 881: 64,-15 + 882: 64,-14 + 883: 64,-11 + 884: 64,-12 + 3291: 61,-7 + 3303: 85,-19 + 3304: 85,-21 + 3309: 85,-20 + 3310: 85,-18 + 3337: 76,-28 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1225: 1,-38 - 1226: 1,-37 - 1227: 1,-36 - 1228: 1,-35 - 1229: 1,-33 - 1230: 1,-31 - 1231: 1,-29 - 1232: 1,-27 - 1233: 1,-26 - 1234: 1,-24 - 1235: 1,-32 - 1236: 1,-34 - 1237: 1,-30 - 1238: 1,-28 - 1239: 1,-25 - 1240: 1,-23 - 1242: 2,-41 - 1256: 10,-41 - 1257: 10,-40 - 1261: 11,-54 - 1262: 11,-53 - 1285: -12,-55 - 1286: -12,-54 - 1287: -12,-53 + 1224: 1,-38 + 1225: 1,-37 + 1226: 1,-36 + 1227: 1,-35 + 1228: 1,-33 + 1229: 1,-31 + 1230: 1,-29 + 1231: 1,-27 + 1232: 1,-26 + 1233: 1,-24 + 1234: 1,-32 + 1235: 1,-34 + 1236: 1,-30 + 1237: 1,-28 + 1238: 1,-25 + 1239: 1,-23 + 1241: 2,-41 + 1255: 10,-41 + 1256: 10,-40 + 1260: 11,-54 + 1261: 11,-53 + 1284: -12,-55 + 1285: -12,-54 + 1286: -12,-53 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2143,118 +2148,118 @@ entities: 664: 8,5 665: 9,5 666: 10,5 - 694: 14,-13 - 695: 13,-13 - 696: 12,-13 - 697: 11,-13 - 698: 10,-13 - 699: 8,-13 - 700: 9,-13 - 701: 5,-13 - 702: 3,-13 - 703: 4,-13 - 704: 2,-13 - 705: 1,-13 - 706: -1,-13 - 707: -3,-13 - 708: -2,-13 - 709: -4,-13 - 710: -5,-13 - 711: -7,-13 - 712: -8,-13 - 713: -9,-13 - 714: -10,-13 - 715: -11,-13 - 716: -12,-13 - 717: -13,-13 - 718: -14,-13 - 751: 8,-6 - 752: 9,-6 - 753: 10,-6 - 754: 11,-6 - 755: 12,-6 - 1103: -10,16 - 1104: -12,16 - 1489: 2,-47 - 1490: 3,-47 - 1491: 4,-47 - 1500: 5,-43 - 1501: 4,-43 + 693: 14,-13 + 694: 13,-13 + 695: 12,-13 + 696: 11,-13 + 697: 10,-13 + 698: 8,-13 + 699: 9,-13 + 700: 5,-13 + 701: 3,-13 + 702: 4,-13 + 703: 2,-13 + 704: 1,-13 + 705: -1,-13 + 706: -3,-13 + 707: -2,-13 + 708: -4,-13 + 709: -5,-13 + 710: -7,-13 + 711: -8,-13 + 712: -9,-13 + 713: -10,-13 + 714: -11,-13 + 715: -12,-13 + 716: -13,-13 + 717: -14,-13 + 750: 8,-6 + 751: 9,-6 + 752: 10,-6 + 753: 11,-6 + 754: 12,-6 + 1102: -10,16 + 1103: -12,16 + 1488: 2,-47 + 1489: 3,-47 + 1490: 4,-47 + 1499: 5,-43 + 1500: 4,-43 - node: color: '#474F52B2' id: BrickTileWhiteLineN decals: - 1041: 3,14 - 1042: 2,14 - 1043: 1,14 - 1044: 0,14 - 1045: -2,14 - 1046: -3,14 - 1047: -1,14 + 1040: 3,14 + 1041: 2,14 + 1042: 1,14 + 1043: 0,14 + 1044: -2,14 + 1045: -3,14 + 1046: -1,14 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2685: 53,0 - 2686: 56,0 - 3129: 5,11 + 2684: 53,0 + 2685: 56,0 + 3128: 5,11 - node: color: '#6A6B73FF' id: BrickTileWhiteLineN decals: - 926: -14,25 - 927: -13,25 - 928: -12,25 - 929: -11,25 - 930: -10,25 - 931: -9,25 - 932: -8,25 + 925: -14,25 + 926: -13,25 + 927: -12,25 + 928: -11,25 + 929: -10,25 + 930: -9,25 + 931: -8,25 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 962: 22,4 - 963: 21,4 - 964: 20,4 - 980: 26,4 - 981: 27,4 - 982: 29,4 - 990: 28,4 - 1065: 42,4 - 1066: 43,4 - 1067: 44,4 - 1068: 47,4 - 1069: 48,4 - 1070: 49,4 - 1071: 50,4 - 1072: 51,4 - 1073: 55,4 - 1074: 56,4 - 1075: 57,4 - 1076: 58,4 - 1077: 62,4 - 1078: 63,4 - 1079: 64,4 + 961: 22,4 + 962: 21,4 + 963: 20,4 + 979: 26,4 + 980: 27,4 + 981: 29,4 + 989: 28,4 + 1064: 42,4 + 1065: 43,4 + 1066: 44,4 + 1067: 47,4 + 1068: 48,4 + 1069: 49,4 + 1070: 50,4 + 1071: 51,4 + 1072: 55,4 + 1073: 56,4 + 1074: 57,4 + 1075: 58,4 + 1076: 62,4 + 1077: 63,4 + 1078: 64,4 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 1742: -20,-5 - 1748: -22,-5 - 1776: -20,-12 - 1777: -21,-12 - 1808: -21,-2 - 1809: -20,-2 - 1841: -32,-2 - 1842: -33,-2 - 1843: -34,-2 + 1741: -20,-5 + 1747: -22,-5 + 1775: -20,-12 + 1776: -21,-12 + 1807: -21,-2 + 1808: -20,-2 + 1840: -32,-2 + 1841: -33,-2 + 1842: -34,-2 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1128: -3,-31 - 1132: -2,-37 - 3136: 8,9 + 1127: -3,-31 + 1131: -2,-37 + 3135: 8,9 - node: color: '#D381C9FF' id: BrickTileWhiteLineN @@ -2283,16 +2288,16 @@ entities: 211: 62,-1 218: 64,-8 222: 71,-7 - 3287: 65,-8 - 3289: 60,-5 - 3290: 61,-5 - 3291: 62,-5 - 3301: 63,-1 - 3304: 70,-7 - 3327: 84,-16 - 3340: 65,-38 - 3345: 75,-27 - 3346: 74,-27 + 3276: 65,-8 + 3278: 60,-5 + 3279: 61,-5 + 3280: 62,-5 + 3290: 63,-1 + 3293: 70,-7 + 3316: 84,-16 + 3329: 65,-38 + 3334: 75,-27 + 3335: 74,-27 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN @@ -2308,44 +2313,44 @@ entities: 388: 9,-10 389: 10,-10 594: -68,27 - 804: -44,16 - 805: -43,16 - 806: -41,16 - 807: -40,16 - 808: -42,16 - 809: -39,16 - 810: -37,16 - 811: -46,16 - 957: -29,16 - 958: -31,16 - 965: -22,16 - 966: -20,16 - 967: -17,16 - 968: -15,16 - 1246: 5,-40 - 1247: 6,-40 - 1248: 7,-40 - 1249: 8,-40 - 1259: 8,-48 - 1260: 10,-48 - 1270: -9,-50 - 1271: -8,-50 - 1272: -7,-50 - 1273: -6,-50 - 1274: -4,-50 - 1275: -3,-50 - 1276: -2,-50 - 1277: -1,-50 - 1278: 0,-50 - 1279: 1,-50 - 1282: 3,-49 - 1283: 7,-49 - 1296: -3,-45 - 1297: -4,-45 - 1298: -8,-45 - 1953: -66,27 - 3120: -4,11 - 3121: -5,11 + 803: -44,16 + 804: -43,16 + 805: -41,16 + 806: -40,16 + 807: -42,16 + 808: -39,16 + 809: -37,16 + 810: -46,16 + 956: -29,16 + 957: -31,16 + 964: -22,16 + 965: -20,16 + 966: -17,16 + 967: -15,16 + 1245: 5,-40 + 1246: 6,-40 + 1247: 7,-40 + 1248: 8,-40 + 1258: 8,-48 + 1259: 10,-48 + 1269: -9,-50 + 1270: -8,-50 + 1271: -7,-50 + 1272: -6,-50 + 1273: -4,-50 + 1274: -3,-50 + 1275: -2,-50 + 1276: -1,-50 + 1277: 0,-50 + 1278: 1,-50 + 1281: 3,-49 + 1282: 7,-49 + 1295: -3,-45 + 1296: -4,-45 + 1297: -8,-45 + 1952: -66,27 + 3119: -4,11 + 3120: -5,11 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2387,62 +2392,62 @@ entities: 659: -12,14 660: -13,14 661: -14,14 - 760: 12,-11 - 812: -3,8 - 813: -2,8 - 814: 2,8 - 1497: 4,-43 - 1498: 3,-43 - 1499: 2,-43 - 1504: 6,-47 - 1505: 4,-47 - 1506: 3,-47 - 1507: 2,-47 - 1512: 7,-41 - 1513: 5,-41 - 1514: 4,-41 - 1974: 8,-10 + 759: 12,-11 + 811: -3,8 + 812: -2,8 + 813: 2,8 + 1496: 4,-43 + 1497: 3,-43 + 1498: 2,-43 + 1503: 6,-47 + 1504: 4,-47 + 1505: 3,-47 + 1506: 2,-47 + 1511: 7,-41 + 1512: 5,-41 + 1513: 4,-41 + 1973: 8,-10 - node: color: '#474F52B2' id: BrickTileWhiteLineS decals: - 1025: -3,16 - 1026: -2,16 - 1027: -1,16 - 1028: 0,16 - 1029: 2,16 - 1030: 1,16 - 1031: 3,16 + 1024: -3,16 + 1025: -2,16 + 1026: -1,16 + 1027: 0,16 + 1028: 2,16 + 1029: 1,16 + 1030: 3,16 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2689: 53,-4 - 2690: 54,-4 + 2688: 53,-4 + 2689: 54,-4 - node: color: '#6A6B73FF' id: BrickTileWhiteLineS decals: - 943: -6,21 - 944: -5,21 + 942: -6,21 + 943: -5,21 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 1745: -20,-10 - 1746: -21,-10 - 1747: -22,-10 - 1779: -21,-15 - 1780: -20,-15 - 1804: -24,-3 - 1805: -23,-3 - 1806: -22,-3 - 1807: -20,-3 + 1744: -20,-10 + 1745: -21,-10 + 1746: -22,-10 + 1778: -21,-15 + 1779: -20,-15 + 1803: -24,-3 + 1804: -23,-3 + 1805: -22,-3 + 1806: -20,-3 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1129: -3,-32 + 1128: -3,-32 - node: color: '#D381C9FF' id: BrickTileWhiteLineS @@ -2466,27 +2471,27 @@ entities: 226: 69,1 227: 66,1 228: 62,1 - 888: 71,-9 - 889: 70,-9 - 890: 69,-9 - 891: 68,-9 - 892: 67,-9 - 895: 65,-9 - 896: 66,-9 - 2625: 71,-21 - 2626: 72,-21 - 2627: 73,-21 - 2628: 74,-21 - 2629: 75,-21 - 2630: 77,-21 - 2631: 76,-21 - 2632: 70,-21 - 2633: 66,-21 - 3292: 62,-2 - 3293: 61,-2 - 3294: 60,-2 - 3299: 62,-6 - 3341: 65,-43 + 887: 71,-9 + 888: 70,-9 + 889: 69,-9 + 890: 68,-9 + 891: 67,-9 + 894: 65,-9 + 895: 66,-9 + 2624: 71,-21 + 2625: 72,-21 + 2626: 73,-21 + 2627: 74,-21 + 2628: 75,-21 + 2629: 77,-21 + 2630: 76,-21 + 2631: 70,-21 + 2632: 66,-21 + 3281: 62,-2 + 3282: 61,-2 + 3283: 60,-2 + 3288: 62,-6 + 3330: 65,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -2497,22 +2502,22 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 969: -29,14 - 970: -32,14 - 1250: 5,-36 - 1251: 6,-36 - 1252: 7,-36 - 1253: 8,-36 - 1263: 10,-55 - 1264: 8,-55 - 1265: 2,-51 - 1267: 0,-51 - 1268: -2,-51 - 1291: -8,-55 - 1292: -8,-48 - 1293: -7,-48 - 1294: -6,-48 - 1295: -4,-48 + 968: -29,14 + 969: -32,14 + 1249: 5,-36 + 1250: 6,-36 + 1251: 7,-36 + 1252: 8,-36 + 1262: 10,-55 + 1263: 8,-55 + 1264: 2,-51 + 1266: 0,-51 + 1267: -2,-51 + 1290: -8,-55 + 1291: -8,-48 + 1292: -7,-48 + 1293: -6,-48 + 1294: -4,-48 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2529,89 +2534,89 @@ entities: 680: 15,10 681: 15,6 682: 15,4 - 684: 15,2 - 685: 15,1 - 686: 15,0 - 687: 15,-4 - 688: 15,-5 - 689: 15,-6 - 690: 15,-12 - 691: 15,-10 - 692: 15,-9 - 693: 15,-8 - 1493: 5,-46 - 1494: 5,-45 - 1495: 5,-44 - 3383: 15,3 + 683: 15,2 + 684: 15,1 + 685: 15,0 + 686: 15,-4 + 687: 15,-5 + 688: 15,-6 + 689: 15,-12 + 690: 15,-10 + 691: 15,-9 + 692: 15,-8 + 1492: 5,-46 + 1493: 5,-45 + 1494: 5,-44 + 3364: 15,3 - node: color: '#474F52B2' id: BrickTileWhiteLineW decals: - 1040: 4,15 + 1039: 4,15 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: 386: 11,-8 387: 11,-9 - 2692: 55,-5 + 2691: 55,-5 - node: color: '#6A6B73FF' id: BrickTileWhiteLineW decals: - 920: -9,20 - 921: -9,19 - 922: -9,18 - 923: -12,22 - 924: -12,23 - 925: -12,24 + 919: -9,20 + 920: -9,19 + 921: -9,18 + 922: -12,22 + 923: -12,23 + 924: -12,24 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 1759: -17,-6 - 1760: -17,-5 - 1761: -17,-4 - 1762: -17,-3 - 1763: -17,-2 - 1764: -17,5 - 1765: -17,6 - 1766: -17,-9 - 1767: -17,-10 - 1768: -17,-12 - 1769: -17,-13 - 1770: -17,-15 - 1778: -22,-14 - 1797: -26,-15 - 1798: -26,-14 - 1799: -26,-13 - 1800: -23,-2 - 1801: -23,-1 - 1802: -23,0 - 1803: -23,1 - 1819: -28,-2 - 1820: -28,-5 - 1821: -28,-6 - 1822: -28,-7 - 1823: -28,-8 - 1824: -28,-9 - 1825: -28,-10 - 1890: -34,-21 - 1891: -34,-23 + 1758: -17,-6 + 1759: -17,-5 + 1760: -17,-4 + 1761: -17,-3 + 1762: -17,-2 + 1763: -17,5 + 1764: -17,6 + 1765: -17,-9 + 1766: -17,-10 + 1767: -17,-12 + 1768: -17,-13 + 1769: -17,-15 + 1777: -22,-14 + 1796: -26,-15 + 1797: -26,-14 + 1798: -26,-13 + 1799: -23,-2 + 1800: -23,-1 + 1801: -23,0 + 1802: -23,1 + 1818: -28,-2 + 1819: -28,-5 + 1820: -28,-6 + 1821: -28,-7 + 1822: -28,-8 + 1823: -28,-9 + 1824: -28,-10 + 1889: -34,-21 + 1890: -34,-23 - node: color: '#B02E26FF' id: BrickTileWhiteLineW decals: - 3194: 10,49 - 3195: 10,50 + 3193: 10,49 + 3194: 10,50 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1134: -1,-36 - 1135: -1,-33 - 3282: 69,-2 - 3283: 69,-1 + 1133: -1,-36 + 1134: -1,-33 + 3271: 69,-2 + 3272: 69,-1 - node: color: '#D381C9FF' id: BrickTileWhiteLineW @@ -2654,189 +2659,190 @@ entities: 219: 66,-7 220: 66,-6 231: 63,-37 - 2664: 57,-22 - 3295: 63,-3 - 3296: 63,-4 - 3310: 57,-21 - 3328: 81,-19 + 2663: 57,-22 + 3284: 63,-3 + 3285: 63,-4 + 3299: 57,-21 + 3317: 81,-19 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1243: 4,-39 - 1258: 4,-38 - 1289: -10,-54 - 1290: -10,-53 + 1242: 4,-39 + 1257: 4,-38 + 1288: -10,-54 + 1289: -10,-53 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2199: 30,33 + 2198: 30,33 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 2209: 32,25 + 2208: 32,25 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 3377: 14.268872,0.6427367 + 3359: 14.268872,0.6427367 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 3181: 69.01351,8.883068 - 3182: 68.9666,7.148692 + 3180: 69.01351,8.883068 + 3181: 68.9666,7.148692 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 2200: 32,28 - 3055: 49,-43 - 3378: 14.154289,0.12154174 + 2199: 32,28 + 3054: 49,-43 + 3360: 14.154289,0.12154174 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 3180: 68.98224,10.211193 + 3179: 68.98224,10.211193 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 2207: 30,31 - 2208: 29,26 + 2206: 30,31 + 2207: 29,26 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 2204: 29,31 - 2205: 32,29 - 2206: 30,25 + 2203: 29,31 + 2204: 32,29 + 2205: 30,25 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 3179: 68.91969,6.867442 + 3178: 68.91969,6.867442 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 3056: 49,-44 + 3055: 49,-44 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 3057: 51,-44 - 3370: 14.081372,4.0930495 + 3056: 51,-44 + 3357: 14.081372,4.0930495 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 3371: 14.039706,3.842876 + 3358: 14.039706,3.842876 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 3177: 68.90405,5.992442 - 3178: 68.95096,9.508068 + 3176: 68.90405,5.992442 + 3177: 68.95096,9.508068 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 2220: 28.350689,28.64137 + 2219: 28.350689,28.64137 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 1886: -22,2 + 1885: -22,2 - node: color: '#FFFFFFFF' id: Caution decals: - 1963: -71.01562,-4.4287972 - 1964: -70.0052,-4.4287972 + 1962: -71.01562,-4.4287972 + 1963: -70.0052,-4.4287972 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 1900: -39,-21 - 1901: -39,-20 - 1902: -39,-19 + 1899: -39,-21 + 1900: -39,-20 + 1901: -39,-19 - node: color: '#79150096' id: CheckerNWSE decals: - 2020: 27,0 - 2021: 28,0 - 2022: 30,0 - 2023: 27,-1 - 2024: 28,-1 - 2025: 27,-2 - 2026: 28,-2 - 2027: 27,-3 - 2028: 28,-3 - 2029: 27,-4 - 2030: 28,-4 - 2031: 27,-5 - 2032: 28,-5 - 2033: 27,-6 - 2034: 28,-6 - 2035: 26,-6 - 2036: 25,-6 - 2037: 24,-6 - 2038: 26,-7 - 2039: 27,-7 - 2040: 28,-7 - 2041: 26,-8 - 2042: 27,-8 - 2043: 28,-8 - 2044: 26,-9 - 2045: 27,-9 - 2046: 28,-9 - 2047: 30,-1 - 2048: 30,-2 - 2049: 32,-2 - 2050: 33,-2 - 2051: 34,-2 - 2052: 35,-2 - 2053: 36,-2 - 2054: 36,-3 - 2055: 30,-4 - 2056: 30,-5 - 2057: 30,-6 - 2058: 30,-7 - 2059: 30,-8 - 2060: 30,-9 - 2061: 32,-4 - 2062: 32,-5 - 2063: 32,-6 - 2064: 32,-7 - 2065: 32,-8 - 2066: 32,-9 + 2019: 27,0 + 2020: 28,0 + 2021: 30,0 + 2022: 27,-1 + 2023: 28,-1 + 2024: 27,-2 + 2025: 28,-2 + 2026: 27,-3 + 2027: 28,-3 + 2028: 27,-4 + 2029: 28,-4 + 2030: 27,-5 + 2031: 28,-5 + 2032: 27,-6 + 2033: 28,-6 + 2034: 26,-6 + 2035: 25,-6 + 2036: 24,-6 + 2037: 26,-7 + 2038: 27,-7 + 2039: 28,-7 + 2040: 26,-8 + 2041: 27,-8 + 2042: 28,-8 + 2043: 26,-9 + 2044: 27,-9 + 2045: 28,-9 + 2046: 30,-1 + 2047: 30,-2 + 2048: 32,-2 + 2049: 33,-2 + 2050: 34,-2 + 2051: 35,-2 + 2052: 36,-2 + 2053: 36,-3 + 2054: 30,-4 + 2055: 30,-5 + 2056: 30,-6 + 2057: 30,-7 + 2058: 30,-8 + 2059: 30,-9 + 2060: 32,-4 + 2061: 32,-5 + 2062: 32,-6 + 2063: 32,-7 + 2064: 32,-8 + 2065: 32,-9 - node: - cleanable: True - color: '#FFFFFFFF' + color: '#FFFFFF39' id: Damaged decals: - 3349: -56,8 + 3368: -58.646984,9.214298 + 3369: -61.521984,7.1607885 + 3370: -56.782402,4.419301 - node: color: '#D58C18FF' id: Delivery decals: - 1976: 18,-9 - 2165: 9,20 - 2166: 10,20 + 1975: 18,-9 + 2164: 9,20 + 2165: 10,20 - node: color: '#F9801DFF' id: Delivery decals: - 2638: 72,-24 - 2639: 73,-24 - 2640: 74,-24 - 2641: 75,-24 + 2637: 72,-24 + 2638: 73,-24 + 2639: 74,-24 + 2640: 75,-24 - node: color: '#FFA500FF' id: Delivery @@ -2877,56 +2883,56 @@ entities: 584: 6,15 585: 6,16 586: 6,14 - 745: 15,-11 - 746: -6,-13 - 747: -15,-1 - 748: -1,20 - 749: 0,20 - 750: 1,20 - 852: 7,-11 - 853: -6,16 - 854: -6,15 - 855: -6,14 - 856: 52,4 - 857: 52,3 - 858: 52,2 - 859: -19,16 - 860: -19,15 - 861: -19,14 - 862: -36,16 - 863: -36,15 - 864: -36,14 - 865: -50,16 - 866: -50,15 - 867: -50,14 - 868: -52,16 - 869: -52,15 - 870: -52,14 - 871: -41,13 - 872: -42,13 - 873: -64,4 - 874: -63,4 - 875: -64,24 - 876: -63,24 - 912: 64,-10 - 913: 63,-10 - 1179: -2,-31 - 1180: -2,-32 - 1736: -17,-11 - 1737: -16,-1 - 1738: -17,-1 - 1973: -6,-15 - 2656: 58,-34 - 2657: 57,-34 - 2658: 57,-32 - 2659: 58,-32 - 2660: 61,-32 - 2661: 61,-34 - 2662: 60,-34 - 3351: -56,18 - 3352: -56,17 - 3353: -56,12 - 3354: -56,11 + 744: 15,-11 + 745: -6,-13 + 746: -15,-1 + 747: -1,20 + 748: 0,20 + 749: 1,20 + 851: 7,-11 + 852: -6,16 + 853: -6,15 + 854: -6,14 + 855: 52,4 + 856: 52,3 + 857: 52,2 + 858: -19,16 + 859: -19,15 + 860: -19,14 + 861: -36,16 + 862: -36,15 + 863: -36,14 + 864: -50,16 + 865: -50,15 + 866: -50,14 + 867: -52,16 + 868: -52,15 + 869: -52,14 + 870: -41,13 + 871: -42,13 + 872: -64,4 + 873: -63,4 + 874: -64,24 + 875: -63,24 + 911: 64,-10 + 912: 63,-10 + 1178: -2,-31 + 1179: -2,-32 + 1735: -17,-11 + 1736: -16,-1 + 1737: -17,-1 + 1972: -6,-15 + 2655: 58,-34 + 2656: 57,-34 + 2657: 57,-32 + 2658: 58,-32 + 2659: 61,-32 + 2660: 61,-34 + 2661: 60,-34 + 3340: -56,18 + 3341: -56,17 + 3342: -56,12 + 3343: -56,11 - node: color: '#FFFFFFFF' id: Delivery @@ -2953,160 +2959,184 @@ entities: 539: -31,-8 540: -31,-9 642: -58,19 - 1122: -15,-35 - 1123: -15,-34 - 1124: -14,-29 - 1125: -13,-29 - 1177: -4,-40 - 1178: -5,-40 - 1386: 8,-46 - 1387: 9,-46 - 1388: 10,-46 - 1389: 4,-33 - 1390: 5,-33 - 1391: 6,-33 - 1392: -5,-45 - 1393: -6,-45 - 1394: -7,-45 - 1395: -17,-49 - 1396: -17,-50 - 1397: -17,-51 - 2160: 24,-16 - 2516: -15,68 - 2517: -15,67 - 2518: -14,67 - 2519: -14,68 - 2520: -10,63 - 2521: -9,63 - 2522: -8,63 - 2523: -7,63 - 2524: -4,63 - 2525: -1,63 - 2526: 0,68 - 2594: -21,42 - 2595: -21,41 - 3003: 41,-33 - 3004: 40,-33 + 1121: -15,-35 + 1122: -15,-34 + 1123: -14,-29 + 1124: -13,-29 + 1176: -4,-40 + 1177: -5,-40 + 1385: 8,-46 + 1386: 9,-46 + 1387: 10,-46 + 1388: 4,-33 + 1389: 5,-33 + 1390: 6,-33 + 1391: -5,-45 + 1392: -6,-45 + 1393: -7,-45 + 1394: -17,-49 + 1395: -17,-50 + 1396: -17,-51 + 2159: 24,-16 + 2515: -15,68 + 2516: -15,67 + 2517: -14,67 + 2518: -14,68 + 2519: -10,63 + 2520: -9,63 + 2521: -8,63 + 2522: -7,63 + 2523: -4,63 + 2524: -1,63 + 2525: 0,68 + 2593: -21,42 + 2594: -21,41 + 3002: 41,-33 + 3003: 40,-33 - node: color: '#A4610696' id: DeliveryGreyscale decals: - 1836: -29,-11 - 1837: -29,-12 - 1838: -29,-3 - 1839: -29,-4 + 1835: -29,-11 + 1836: -29,-12 + 1837: -29,-3 + 1838: -29,-4 - node: color: '#D381C9FF' id: DeliveryGreyscale decals: - 2652: 66,-5 - 2653: 67,-5 - 2654: 68,-5 - 2655: 69,-5 + 2651: 66,-5 + 2652: 67,-5 + 2653: 68,-5 + 2654: 69,-5 - node: color: '#FFA500FF' id: DeliveryGreyscale decals: - 1813: -19,4 - 1814: -20,4 - 1815: -19,2 - 1816: -20,2 - 1817: -19,0 - 1818: -20,0 + 1812: -19,4 + 1813: -20,4 + 1814: -19,2 + 1815: -20,2 + 1816: -19,0 + 1817: -20,0 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DeliveryGreyscale decals: 508: -21,20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3376: -46,21 + 3377: -46,21 + 3378: -37,21 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 3379: -37,21 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3381: -45,21 + 3382: -38,18 + 3383: -38,18 + 3388: -42,19 + 3389: -42,19 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 3381: 14.060539,3.0089636 + 3362: 14.060539,3.0089636 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 3190: 31.014624,32.46632 + 3189: 31.014624,32.46632 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 3188: 27.996756,28.231945 - 3382: 14.050122,1.5808885 + 3187: 27.996756,28.231945 + 3363: 14.050122,1.5808885 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3187: 28.059301,25.075695 - 3192: 27.746569,24.981945 + 3186: 28.059301,25.075695 + 3191: 27.746569,24.981945 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 3189: 31.812096,30.294445 + 3188: 31.812096,30.294445 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 3186: 29.435324,32.31007 - 3191: 29.607328,24.06007 + 3185: 29.435324,32.31007 + 3190: 29.607328,24.06007 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3185: 30.98335,27.981945 - 3379: 14.091789,1.9769971 + 3184: 30.98335,27.981945 + 3361: 14.091789,1.9769971 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 3175: 68.91969,6.195567 - 3176: 69.044785,9.929943 - 3183: 31.984097,24.06007 - 3184: 30.670618,31.99757 + 3174: 68.91969,6.195567 + 3175: 69.044785,9.929943 + 3182: 31.984097,24.06007 + 3183: 30.670618,31.99757 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 2201: 32,30 - 2202: 31,29 - 2210: 30,26 - 2211: 30,24 - 2213: 32,33 - 2214: 32,32 - 2217: 28,32 - 2218: 29,33 - 2219: 29,32 - 2221: 29,28 - 2222: 28,28 - 2223: 28,29 - 2224: 29,29 - 3058: 50,-44 - 3059: 50,-43 - 3060: 51,-43 + 2200: 32,30 + 2201: 31,29 + 2209: 30,26 + 2210: 30,24 + 2212: 32,33 + 2213: 32,32 + 2216: 28,32 + 2217: 29,33 + 2218: 29,32 + 2220: 29,28 + 2221: 28,28 + 2222: 28,29 + 2223: 29,29 + 3057: 50,-44 + 3058: 50,-43 + 3059: 51,-43 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 2212: 31,30 + 2211: 31,30 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 2215: 31,33 - 2216: 28,33 + 2214: 31,33 + 2215: 28,33 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 3169: 68.99787,5.961192 - 3170: 68.9666,6.679942 - 3171: 68.99787,7.242442 - 3172: 68.935326,8.836193 - 3173: 68.99787,9.492443 - 3174: 68.98224,10.117443 + 3168: 68.99787,5.961192 + 3169: 68.9666,6.679942 + 3170: 68.99787,7.242442 + 3171: 68.935326,8.836193 + 3172: 68.99787,9.492443 + 3173: 68.98224,10.117443 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3119,7 +3149,7 @@ entities: color: '#18A2D5FF' id: HalfTileOverlayGreyscale180 decals: - 1442: 18,-43 + 1441: 18,-43 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -3129,7 +3159,7 @@ entities: color: '#B02E26FF' id: HalfTileOverlayGreyscale180 decals: - 1462: 14,-43 + 1461: 14,-43 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3147,7 +3177,7 @@ entities: color: '#5E7C16FF' id: HalfTileOverlayGreyscale90 decals: - 1469: 23,-27 + 1468: 23,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3157,37 +3187,37 @@ entities: color: '#F9801DFF' id: HalfTileOverlayGreyscale90 decals: - 1455: 23,-39 + 1454: 23,-39 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 3237: -71,25 - 3238: -78,25 + 3226: -71,25 + 3227: -78,25 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1883: -32,-12 + 1882: -32,-12 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1398: -17,-52 - 3235: -78,13 - 3236: -71,13 + 1397: -17,-52 + 3224: -78,13 + 3225: -71,13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: 497: 14,-1 - 1126: -4,-31 - 1127: -4,-32 - 1425: 4,-26 - 1884: -37,-4 + 1125: -4,-31 + 1126: -4,-32 + 1424: 4,-26 + 1883: -37,-4 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3198,192 +3228,192 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 2319: 11,44 + 2318: 11,44 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 2318: 11,44 + 2317: 11,44 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2302: 7,47 - 2303: 7,46 - 2304: 7,45 - 2306: 11,47 - 2307: 11,46 - 2308: 11,45 + 2301: 7,47 + 2302: 7,46 + 2303: 7,45 + 2305: 11,47 + 2306: 11,46 + 2307: 11,45 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 1160: 12,31 - 1161: 13,31 - 1162: 14,31 - 1163: 16,31 - 1164: 17,31 - 1165: 18,31 - 2312: 10,44 - 2313: 9,44 - 2314: 8,44 - 2315: 12,44 - 2316: 13,44 - 2317: 14,44 + 1159: 12,31 + 1160: 13,31 + 1161: 14,31 + 1162: 16,31 + 1163: 17,31 + 1164: 18,31 + 2311: 10,44 + 2312: 9,44 + 2313: 8,44 + 2314: 12,44 + 2315: 13,44 + 2316: 14,44 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1148: 6,32 - 1150: 6,31 - 1151: 6,30 - 1152: 6,29 - 1153: 6,28 - 1154: 6,26 - 1155: 6,25 - 1156: 6,24 - 1157: 6,23 - 1158: 6,22 - 2309: 11,47 - 2310: 11,46 - 2311: 11,45 + 1147: 6,32 + 1149: 6,31 + 1150: 6,30 + 1151: 6,29 + 1152: 6,28 + 1153: 6,26 + 1154: 6,25 + 1155: 6,24 + 1156: 6,23 + 1157: 6,22 + 2308: 11,47 + 2309: 11,46 + 2310: 11,45 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 1200: 11,25 + 1199: 11,25 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 3193: 17,25 + 3192: 17,25 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 1202: 11,29 + 1201: 11,29 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 1204: 17,29 + 1203: 17,29 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1184: 11,28 - 1185: 11,27 - 1186: 11,26 + 1183: 11,28 + 1184: 11,27 + 1185: 11,26 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1192: 12,25 - 1193: 13,25 - 1194: 14,25 - 1195: 15,25 - 1196: 16,25 + 1191: 12,25 + 1192: 13,25 + 1193: 14,25 + 1194: 15,25 + 1195: 16,25 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 1187: 13,29 - 1188: 14,29 - 1189: 15,29 - 1190: 16,29 - 1203: 12,29 + 1186: 13,29 + 1187: 14,29 + 1188: 15,29 + 1189: 16,29 + 1202: 12,29 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1181: 17,28 - 1182: 17,27 - 1183: 17,26 + 1180: 17,28 + 1181: 17,27 + 1182: 17,26 - node: color: '#18A2D5FF' id: QuarterTileOverlayGreyscale + decals: + 1444: 21,-43 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale + decals: + 1455: 23,-30 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1479: 4,-31 + 1480: 4,-32 + - node: + color: '#18A2D5FF' + id: QuarterTileOverlayGreyscale180 decals: 1445: 21,-43 + 1446: 22,-43 + 1447: 23,-43 - node: color: '#B02E26FF' - id: QuarterTileOverlayGreyscale + id: QuarterTileOverlayGreyscale180 decals: 1456: 23,-30 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1480: 4,-31 - 1481: 4,-32 - - node: - color: '#18A2D5FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1446: 21,-43 - 1447: 22,-43 - 1448: 23,-43 - - node: - color: '#B02E26FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1457: 23,-30 - 1458: 23,-31 - 1459: 23,-32 + 1457: 23,-31 + 1458: 23,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1482: 8,-32 - 1483: 8,-31 - 1484: 8,-29 - 1485: 8,-28 - 1486: 8,-27 - 1487: 8,-26 - 1488: 8,-25 + 1481: 8,-32 + 1482: 8,-31 + 1483: 8,-29 + 1484: 8,-28 + 1485: 8,-27 + 1486: 8,-26 + 1487: 8,-25 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1470: 4,-32 - 1471: 4,-31 - 1479: 8,-29 + 1469: 4,-32 + 1470: 4,-31 + 1478: 8,-29 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale270 decals: - 1449: 21,-43 - 1450: 22,-43 + 1448: 21,-43 + 1449: 22,-43 + 1450: 23,-43 + 1462: 23,-32 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 1471: 8,-32 + 1472: 8,-31 + 1473: 8,-29 + 1474: 8,-28 + 1475: 8,-27 + 1476: 8,-26 + 1477: 8,-25 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: 1451: 23,-43 1463: 23,-32 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 1472: 8,-32 - 1473: 8,-31 - 1474: 8,-29 - 1475: 8,-28 - 1476: 8,-27 - 1477: 8,-26 - 1478: 8,-25 - - node: - color: '#FFFFFFFF' - id: QuarterTileOverlayGreyscale90 - decals: - 1452: 23,-43 - 1464: 23,-32 - 1465: 23,-31 - 1466: 23,-30 + 1464: 23,-31 + 1465: 23,-30 - node: color: '#FFFFFFFF' id: Rock06 decals: - 2203: 28,31 + 2202: 28,31 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 1064: -3,15 + 1063: -3,15 - node: color: '#FFFFFFFF' id: SpaceStationSign2 @@ -3423,17 +3453,17 @@ entities: color: '#18A2D5FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1444: 19,-43 + 1443: 19,-43 - node: color: '#5E7C16FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1467: 23,-28 + 1466: 23,-28 - node: color: '#B02E26FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1461: 15,-43 + 1460: 15,-43 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 @@ -3443,17 +3473,17 @@ entities: color: '#F9801DFF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1454: 23,-40 + 1453: 23,-40 - node: color: '#18A2D5FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1443: 17,-43 + 1442: 17,-43 - node: color: '#B02E26FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1460: 13,-43 + 1459: 13,-43 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -3463,7 +3493,7 @@ entities: color: '#5E7C16FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1468: 23,-26 + 1467: 23,-26 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 @@ -3473,7 +3503,7 @@ entities: color: '#F9801DFF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1453: 23,-38 + 1452: 23,-38 - node: color: '#FFFFFFFF' id: WarnBox @@ -3485,40 +3515,40 @@ entities: 357: 8,-1 541: -66,7 542: -66,1 - 817: -38,22 - 877: -11,26 - 1113: -11,-38 - 1399: -12,-56 - 1424: 6,-29 - 2432: -13,46 - 3002: 43,-33 - 3054: 45,-47 + 816: -38,22 + 876: -11,26 + 1112: -11,-38 + 1398: -12,-56 + 1423: 6,-29 + 2431: -13,46 + 3001: 43,-33 + 3053: 45,-47 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE decals: - 2679: 53,-1 + 2678: 53,-1 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 2269: 7,41 + 2268: 7,41 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 818: -40,20 + 817: -40,20 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 2459: -12,54 + 2458: -12,54 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: 510: -22,20 - 819: -43,20 + 818: -43,20 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3534,34 +3564,34 @@ entities: color: '#52B4E996' id: WarnCornerGreyscaleSE decals: - 2672: 57,-8 - 2680: 53,-3 + 2671: 57,-8 + 2679: 53,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleSE decals: - 3071: -18,-43 + 3070: -18,-43 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSE decals: 254: 72,-9 - 2636: 69,-22 + 2635: 69,-22 - node: color: '#EFB34196' id: WarnCornerGreyscaleSE decals: - 1325: 11,-55 + 1324: 11,-55 - node: color: '#FFFF007F' id: WarnCornerGreyscaleSE decals: - 1438: -22,-49 + 1437: -22,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 829: -44,21 + 828: -44,21 - node: color: '#334E6DC8' id: WarnCornerGreyscaleSW @@ -3571,27 +3601,27 @@ entities: color: '#52B4E996' id: WarnCornerGreyscaleSW decals: - 2673: 55,-8 + 2672: 55,-8 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSW decals: - 2637: 67,-22 + 2636: 67,-22 - node: color: '#FFFF007F' id: WarnCornerGreyscaleSW decals: - 1437: -19,-49 + 1436: -19,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 828: -39,21 + 827: -39,21 - node: color: '#FFFFFF7F' id: WarnCornerNE decals: - 1554: 12,-22 + 1553: 12,-22 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -3600,17 +3630,17 @@ entities: 67: 79,-8 342: 2,-5 359: -22,5 - 907: -8,24 - 1024: 37,15 - 1427: 23,-34 - 2565: -14,62 - 2917: 49,-23 + 906: -8,24 + 1023: 37,15 + 1426: 23,-34 + 2564: -14,62 + 2916: 49,-23 - node: color: '#FFFFFF7F' id: WarnCornerNW decals: - 1540: -20,-22 - 1581: 39,-10 + 1539: -20,-22 + 1580: 39,-10 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -3620,41 +3650,41 @@ entities: 341: -2,-5 360: -24,5 543: -65,-1 - 906: -14,24 - 936: -26,-29 - 1007: 32,16 - 1885: -38,-5 - 1893: -37,-21 - 2564: -16,62 - 2895: 43,-14 + 905: -14,24 + 935: -26,-29 + 1006: 32,16 + 1884: -38,-5 + 1892: -37,-21 + 2563: -16,62 + 2894: 43,-14 - node: color: '#FFFFFF7F' id: WarnCornerSE decals: - 1553: 18,-21 - 1733: -51,10 + 1552: 18,-21 + 1732: -51,10 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 49: 58,-28 66: 79,-10 - 903: -8,22 - 1207: -8,-22 - 1412: 0,-46 - 1426: 23,-36 - 2515: -11,63 - 2567: -14,60 - 2899: 42,-20 - 2915: 49,-20 - 2916: 49,-25 - 3112: -36,-12 + 902: -8,22 + 1206: -8,-22 + 1411: 0,-46 + 1425: 23,-36 + 2514: -11,63 + 2566: -14,60 + 2898: 42,-20 + 2914: 49,-20 + 2915: 49,-25 + 3111: -36,-12 - node: color: '#FFFFFF7F' id: WarnCornerSW decals: - 1550: 15,-21 - 1566: 39,-8 + 1549: 15,-21 + 1565: 39,-8 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -3664,52 +3694,52 @@ entities: 351: 5,-18 358: -24,2 369: -19,10 - 904: -14,22 - 1098: 49,23 - 1208: -6,-22 - 1411: -1,-46 - 1892: -37,-23 - 2514: -12,63 - 2566: -16,60 - 2896: 43,-16 - 2898: 41,-20 + 903: -14,22 + 1097: 49,23 + 1207: -6,-22 + 1410: -1,-46 + 1891: -37,-23 + 2513: -12,63 + 2565: -16,60 + 2895: 43,-16 + 2897: 41,-20 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNE decals: 397: -2,10 399: 0,10 - 2500: -4,56 + 2499: -4,56 - node: color: '#9FED5896' id: WarnCornerSmallGreyscaleNE decals: - 2154: 21,-15 - 2155: 24,-15 - 2156: 27,-15 + 2153: 21,-15 + 2154: 24,-15 + 2155: 27,-15 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 3075: -15,-38 - 3077: -18,-38 - 3135: 5,9 + 3074: -15,-38 + 3076: -18,-38 + 3134: 5,9 - node: color: '#DE3A3A96' id: WarnCornerSmallGreyscaleNE decals: - 2267: 7,39 + 2266: 7,39 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleNE decals: - 1321: 9,-40 - 1348: -7,-54 + 1320: 9,-40 + 1347: -7,-54 - node: color: '#F9801DFF' id: WarnCornerSmallGreyscaleNE decals: - 2243: 20,26 + 2242: 20,26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -3718,48 +3748,48 @@ entities: 444: 7,0 445: 8,0 446: 11,-11 - 781: -40,7 - 782: -47,8 - 788: 12,-11 - 798: 2,8 - 820: -45,18 - 821: -40,18 + 780: -40,7 + 781: -47,8 + 787: 12,-11 + 797: 2,8 + 819: -45,18 + 820: -40,18 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNW decals: 396: 2,10 400: 0,10 - 2501: -2,56 + 2500: -2,56 - node: color: '#9FED5896' id: WarnCornerSmallGreyscaleNW decals: - 2157: 30,-15 - 2158: 27,-15 - 2159: 24,-15 + 2156: 30,-15 + 2157: 27,-15 + 2158: 24,-15 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleNW decals: - 1176: -7,-38 - 3076: -15,-38 - 3078: -19,-40 + 1175: -7,-38 + 3075: -15,-38 + 3077: -19,-40 - node: color: '#DE3A3A96' id: WarnCornerSmallGreyscaleNW decals: - 1133: -5,9 + 1132: -5,9 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleNW decals: - 1335: 9,-54 + 1334: 9,-54 - node: color: '#F9801DFF' id: WarnCornerSmallGreyscaleNW decals: - 2244: 25,26 + 2243: 25,26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW @@ -3767,48 +3797,48 @@ entities: 429: 5,8 442: 9,0 443: 8,0 - 784: -37,7 - 785: -44,8 - 793: 13,-11 - 794: 12,-11 - 799: -2,8 - 822: -38,18 - 823: -43,18 + 783: -37,7 + 784: -44,8 + 792: 13,-11 + 793: 12,-11 + 798: -2,8 + 821: -38,18 + 822: -43,18 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleSE decals: 412: 9,2 - 2498: -4,59 + 2497: -4,59 - node: color: '#9FED5896' id: WarnCornerSmallGreyscaleSE decals: - 2148: 21,-12 - 2149: 24,-12 - 2150: 27,-12 + 2147: 21,-12 + 2148: 24,-12 + 2149: 27,-12 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleSE decals: - 3072: -18,-40 - 3079: -20,-43 + 3071: -18,-40 + 3078: -20,-43 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE decals: - 2634: 69,-21 + 2633: 69,-21 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleSE decals: - 1350: -7,-52 - 1361: -2,-47 + 1349: -7,-52 + 1360: -2,-47 - node: color: '#F9801DFF' id: WarnCornerSmallGreyscaleSE decals: - 2241: 20,31 + 2240: 20,31 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE @@ -3816,171 +3846,170 @@ entities: 438: 8,4 439: 7,4 447: 11,-6 - 777: -40,11 - 778: -47,11 - 787: 12,-6 - 824: -44,22 - 827: -45,21 - 2081: 30,-1 - 3116: -5,11 - 3122: 2,11 + 776: -40,11 + 777: -47,11 + 786: 12,-6 + 823: -44,22 + 2080: 30,-1 + 3115: -5,11 + 3121: 2,11 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleSW decals: - 2499: -2,59 + 2498: -2,59 - node: color: '#9FED5896' id: WarnCornerSmallGreyscaleSW decals: - 2151: 30,-12 - 2152: 27,-12 - 2153: 24,-12 + 2150: 30,-12 + 2151: 27,-12 + 2152: 24,-12 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleSW decals: - 3074: -16,-40 + 3073: -16,-40 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSW decals: - 2635: 67,-21 + 2634: 67,-21 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleSW decals: - 1337: 9,-52 + 1336: 9,-52 - node: color: '#F9801DFF' id: WarnCornerSmallGreyscaleSW decals: - 2242: 25,31 + 2241: 25,31 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW decals: 440: 9,4 441: 8,4 - 779: -44,11 - 780: -37,11 - 783: 12,-6 - 786: 13,-6 - 825: -39,22 - 826: -38,21 - 3117: -2,11 - 3125: 5,11 + 778: -44,11 + 779: -37,11 + 782: 12,-6 + 785: 13,-6 + 824: -39,22 + 825: -38,21 + 3116: -2,11 + 3124: 5,11 - node: color: '#FFFFFF7F' id: WarnCornerSmallNE decals: - 1629: 14,38 - 1647: 10,38 - 1684: -31,21 - 1685: -29,21 - 1704: -28,21 - 1705: -30,21 - 1706: -32,21 - 1729: -30,25 + 1628: 14,38 + 1646: 10,38 + 1683: -31,21 + 1684: -29,21 + 1703: -28,21 + 1704: -30,21 + 1705: -32,21 + 1728: -30,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 303: 68,4 348: 0,-5 - 1677: -22,34 - 1858: -30,-10 - 1859: -32,-10 - 1860: -35,-10 - 1861: -37,-10 - 1956: -72,27 - 1957: -76,27 - 2621: 71,2 - 2622: 71,4 - 2623: 71,10 - 2624: 71,12 - 2646: 67,-33 - 3258: -73,12 + 1676: -22,34 + 1857: -30,-10 + 1858: -32,-10 + 1859: -35,-10 + 1860: -37,-10 + 1955: -72,27 + 1956: -76,27 + 2620: 71,2 + 2621: 71,4 + 2622: 71,10 + 2623: 71,12 + 2645: 67,-33 + 3247: -73,12 - node: color: '#FFFFFF7F' id: WarnCornerSmallNW decals: - 1682: -31,21 - 1683: -29,21 - 1711: -28,21 - 1712: -30,21 - 1730: -30,25 + 1681: -31,21 + 1682: -29,21 + 1710: -28,21 + 1711: -30,21 + 1729: -30,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 302: 70,4 347: 0,-5 - 1014: 32,12 - 1676: -22,34 - 1855: -31,-10 - 1856: -36,-10 - 1857: -34,-10 - 1954: -70,27 - 1955: -74,27 - 1960: -66,-3 - 1962: -65,-2 - 2647: 71,-33 - 3108: -38,-10 - 3257: -69,12 - 3259: -76,12 - 3335: 84,-19 + 1013: 32,12 + 1675: -22,34 + 1854: -31,-10 + 1855: -36,-10 + 1856: -34,-10 + 1953: -70,27 + 1954: -74,27 + 1959: -66,-3 + 1961: -65,-2 + 2646: 71,-33 + 3107: -38,-10 + 3246: -69,12 + 3248: -76,12 + 3324: 84,-19 - node: color: '#FFFFFF7F' id: WarnCornerSmallSE decals: - 1587: 35,-18 - 1678: -28,24 - 1679: -29,25 - 1680: -31,25 - 1709: -30,25 - 1710: -32,25 + 1586: 35,-18 + 1677: -28,24 + 1678: -29,25 + 1679: -31,25 + 1708: -30,25 + 1709: -32,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: 300: 68,12 - 1626: 16,37 - 1674: -22,36 - 1739: -12,-15 - 1849: -37,-5 - 1850: -32,-5 - 1853: -35,-5 - 1854: -30,-5 - 2617: 71,12 - 2618: 71,14 - 2619: 71,6 - 2620: 71,4 - 3113: -36,-11 - 3254: -73,26 + 1625: 16,37 + 1673: -22,36 + 1738: -12,-15 + 1848: -37,-5 + 1849: -32,-5 + 1852: -35,-5 + 1853: -30,-5 + 2616: 71,12 + 2617: 71,14 + 2618: 71,6 + 2619: 71,4 + 3112: -36,-11 + 3243: -73,26 - node: color: '#FFFFFF7F' id: WarnCornerSmallSW decals: - 1648: 12,37 - 1686: -31,25 - 1687: -29,25 - 1707: -28,25 - 1708: -30,25 + 1647: 12,37 + 1685: -31,25 + 1686: -29,25 + 1706: -28,25 + 1707: -30,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 301: 70,12 349: -1,-15 - 797: -37,7 - 1675: -22,36 - 1851: -34,-5 - 1852: -36,-5 - 1881: -31,-11 - 1961: -66,-4 - 3255: -69,26 - 3256: -76,26 + 796: -37,7 + 1674: -22,36 + 1850: -34,-5 + 1851: -36,-5 + 1880: -31,-11 + 1960: -66,-4 + 3244: -69,26 + 3245: -76,26 - node: color: '#FFFFFFFF' id: WarnEndE @@ -3995,42 +4024,42 @@ entities: color: '#D381C9FF' id: WarnEndGreyscaleW decals: - 3316: 85,-18 - 3317: 85,-16 - 3318: 85,-20 - 3319: 85,-22 + 3305: 85,-18 + 3306: 85,-16 + 3307: 85,-20 + 3308: 85,-22 - node: color: '#FFFF007F' id: WarnEndGreyscaleW decals: - 1435: -19,-52 + 1434: -19,-52 - node: color: '#FFFFFF7F' id: WarnEndN decals: - 1681: -30,26 + 1680: -30,26 - node: color: '#FFFFFFFF' id: WarnEndN decals: 336: 0,0 - 1015: 35,7 + 1014: 35,7 - node: color: '#FFFFFF7F' id: WarnEndS decals: - 2161: 12,18 - 2162: 14,18 - 2163: 16,18 - 2164: 18,18 + 2160: 12,18 + 2161: 14,18 + 2162: 16,18 + 2163: 18,18 - node: color: '#FFFFFF7F' id: WarnEndW decals: - 1926: -48,6 - 1927: -48,4 - 1928: -48,2 - 1929: -48,0 + 1925: -48,6 + 1926: -48,4 + 1927: -48,2 + 1928: -48,0 - node: color: '#FFFFFFFF' id: WarnEndW @@ -4043,93 +4072,93 @@ entities: color: '#D58C187F' id: WarnFull decals: - 1975: 19,-9 + 1974: 19,-9 - node: color: '#FFFFFF7F' id: WarnFull decals: - 1930: -38,6 - 1931: -39,6 - 1932: -39,5 - 1933: -38,5 - 1934: -38,4 - 1935: -39,4 - 1936: -39,3 - 1937: -38,3 + 1929: -38,6 + 1930: -39,6 + 1931: -39,5 + 1932: -38,5 + 1933: -38,4 + 1934: -39,4 + 1935: -39,3 + 1936: -38,3 - node: color: '#FFFFFFFF' id: WarnFull decals: - 998: -33,7 - 999: -32,7 - 1000: -31,7 - 1001: -31,6 - 1002: -32,6 - 1003: -33,6 - 1004: -33,5 - 1005: -32,5 - 1006: -31,5 - 2502: -6,67 - 2503: -6,66 - 2504: -6,65 - 2505: -6,64 + 997: -33,7 + 998: -32,7 + 999: -31,7 + 1000: -31,6 + 1001: -32,6 + 1002: -33,6 + 1003: -33,5 + 1004: -32,5 + 1005: -31,5 + 2501: -6,67 + 2502: -6,66 + 2503: -6,65 + 2504: -6,64 - node: color: '#334E6DC8' id: WarnFullGreyscale decals: - 1097: -3,19 - 1102: -11,17 + 1096: -3,19 + 1101: -11,17 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 2776: 52,-15 - 2811: 44,1 - 2812: 43,1 - 2813: 50,1 - 2814: 42,-8 - 2815: 45,-8 - 2816: 46,-8 - 2875: 44,-30 - 2876: 44,-22 - 2877: 44,-21 - 2878: 44,-17 - 2879: 44,-13 - 2880: 47,-29 - 2881: 47,-16 - 2963: 52,-26 - 2964: 52,-32 - 2967: 47,-21 - 2968: 47,-22 - 2985: 47,-34 - 3267: 47,-9 - 3268: 47,-10 - 3269: 47,-11 - 3273: 47,-13 - 3274: 47,-14 - 3275: 46,-20 - 3276: 45,-20 - 3360: 51,-9 - 3361: 51,-10 - 3362: 51,-11 + 2775: 52,-15 + 2810: 44,1 + 2811: 43,1 + 2812: 50,1 + 2813: 42,-8 + 2814: 45,-8 + 2815: 46,-8 + 2874: 44,-30 + 2875: 44,-22 + 2876: 44,-21 + 2877: 44,-17 + 2878: 44,-13 + 2879: 47,-29 + 2880: 47,-16 + 2962: 52,-26 + 2963: 52,-32 + 2966: 47,-21 + 2967: 47,-22 + 2984: 47,-34 + 3256: 47,-9 + 3257: 47,-10 + 3258: 47,-11 + 3262: 47,-13 + 3263: 47,-14 + 3264: 46,-20 + 3265: 45,-20 + 3349: 51,-9 + 3350: 51,-10 + 3351: 51,-11 - node: color: '#9FED5896' id: WarnFullGreyscale decals: - 991: 25,5 - 992: 24,5 - 993: 23,5 - 1085: 45,5 - 1086: 46,5 - 1087: 59,5 - 1088: 60,5 - 1089: 61,5 + 990: 25,5 + 991: 24,5 + 992: 23,5 + 1084: 45,5 + 1085: 46,5 + 1086: 59,5 + 1087: 60,5 + 1088: 61,5 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 1140: -2,-34 - 1141: -2,-35 + 1139: -2,-34 + 1140: -2,-35 - node: color: '#D381C9FF' id: WarnFullGreyscale @@ -4152,24 +4181,24 @@ entities: color: '#FFFFFF7F' id: WarnLineE decals: - 1586: 35,-19 - 1610: 22,23 - 1611: 22,22 - 1628: 14,39 - 1646: 10,39 - 1702: -28,23 - 1703: -28,22 - 1713: -32,24 - 1714: -32,23 - 1715: -32,22 - 1725: -30,24 - 1726: -30,23 - 1727: -30,22 - 1734: -51,12 - 1735: -51,11 - 2577: -15,50 - 2578: -15,49 - 2579: -15,48 + 1585: 35,-19 + 1609: 22,23 + 1610: 22,22 + 1627: 14,39 + 1645: 10,39 + 1701: -28,23 + 1702: -28,22 + 1712: -32,24 + 1713: -32,23 + 1714: -32,22 + 1724: -30,24 + 1725: -30,23 + 1726: -30,22 + 1733: -51,12 + 1734: -51,11 + 2576: -15,50 + 2577: -15,49 + 2578: -15,48 - node: color: '#FFFFFFFF' id: WarnLineE @@ -4203,64 +4232,64 @@ entities: 380: -10,19 381: -10,18 383: -8,23 - 1017: 35,6 - 1018: 31,9 - 1019: 31,8 - 1020: 31,7 - 1094: 47,23 - 1095: 47,22 - 1096: 47,21 - 1212: -8,-21 - 1213: -8,-20 - 1214: -8,-19 - 1219: -15,-23 - 1220: -13,-25 - 1409: 0,-45 - 1415: 9,-45 - 1416: 9,-44 - 1417: 12,-42 - 1418: 12,-41 - 1419: 12,-39 - 1420: 12,-38 - 1421: 12,-37 - 1422: 12,-35 - 1423: 12,-34 - 1428: 23,-35 - 1545: -22,-18 - 1546: -22,-17 - 1623: 19,36 - 1624: 16,36 - 1673: -22,35 - 1862: -32,-6 - 1863: -32,-7 - 1864: -32,-8 - 1865: -32,-9 - 1866: -37,-6 - 1867: -37,-7 - 1868: -37,-8 - 1869: -37,-9 - 1903: -38,-19 - 1921: -31,-14 - 1922: -31,-15 - 1923: -31,-16 - 1924: -31,-17 - 2510: -7,64 - 2511: -7,65 - 2512: -7,66 - 2513: -7,67 - 2644: 67,-31 - 2645: 67,-32 - 2921: 49,-24 - 3264: -73,25 - 3265: -73,13 - 3342: 65,-43 - 3343: 65,-38 + 1016: 35,6 + 1017: 31,9 + 1018: 31,8 + 1019: 31,7 + 1093: 47,23 + 1094: 47,22 + 1095: 47,21 + 1211: -8,-21 + 1212: -8,-20 + 1213: -8,-19 + 1218: -15,-23 + 1219: -13,-25 + 1408: 0,-45 + 1414: 9,-45 + 1415: 9,-44 + 1416: 12,-42 + 1417: 12,-41 + 1418: 12,-39 + 1419: 12,-38 + 1420: 12,-37 + 1421: 12,-35 + 1422: 12,-34 + 1427: 23,-35 + 1544: -22,-18 + 1545: -22,-17 + 1622: 19,36 + 1623: 16,36 + 1672: -22,35 + 1861: -32,-6 + 1862: -32,-7 + 1863: -32,-8 + 1864: -32,-9 + 1865: -37,-6 + 1866: -37,-7 + 1867: -37,-8 + 1868: -37,-9 + 1902: -38,-19 + 1920: -31,-14 + 1921: -31,-15 + 1922: -31,-16 + 1923: -31,-17 + 2509: -7,64 + 2510: -7,65 + 2511: -7,66 + 2512: -7,67 + 2643: 67,-31 + 2644: 67,-32 + 2920: 49,-24 + 3253: -73,25 + 3254: -73,13 + 3331: 65,-43 + 3332: 65,-38 - node: color: '#00FFFF7F' id: WarnLineGreyscaleE decals: - 2193: 18,28 - 2194: 18,27 + 2192: 18,28 + 2193: 18,27 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4273,70 +4302,70 @@ entities: 418: 13,-7 419: 13,-9 422: -15,-9 - 742: -13,8 - 743: 8,8 - 2484: -6,58 - 2494: -4,58 - 2495: -4,57 + 741: -13,8 + 742: 8,8 + 2483: -6,58 + 2493: -4,58 + 2494: -4,57 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2674: 57,-2 - 2681: 53,-2 - 2699: 50,-6 - 2749: 61,-15 - 2750: 53,-11 - 2751: 53,-12 - 2861: 46,-16 - 2862: 46,-29 - 2863: 46,-34 - 2864: 43,-22 - 2865: 43,-21 - 2870: 46,-21 - 2871: 46,-22 - 2882: 43,-13 - 2883: 43,-17 - 2984: 43,-30 - 3270: 53,-8 - 3271: 53,-7 - 3272: 53,-6 + 2673: 57,-2 + 2680: 53,-2 + 2698: 50,-6 + 2748: 61,-15 + 2749: 53,-11 + 2750: 53,-12 + 2860: 46,-16 + 2861: 46,-29 + 2862: 46,-34 + 2863: 43,-22 + 2864: 43,-21 + 2869: 46,-21 + 2870: 46,-22 + 2881: 43,-13 + 2882: 43,-17 + 2983: 43,-30 + 3259: 53,-8 + 3260: 53,-7 + 3261: 53,-6 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 1972: -63,6 - 2124: 21,-13 - 2125: 21,-14 - 2126: 24,-13 - 2127: 24,-14 - 2128: 27,-13 - 2129: 27,-14 + 1971: -63,6 + 2123: 21,-13 + 2124: 21,-14 + 2125: 24,-13 + 2126: 24,-14 + 2127: 27,-13 + 2128: 27,-14 - node: color: '#A4610696' id: WarnLineGreyscaleE decals: - 1749: -19,-7 - 1750: -19,-8 - 1781: -19,-14 - 1783: -24,-9 - 1784: -24,-6 - 1830: -30,-12 - 1831: -30,-11 - 1832: -30,-4 - 1833: -30,-3 - 1835: -24,-13 + 1748: -19,-7 + 1749: -19,-8 + 1780: -19,-14 + 1782: -24,-9 + 1783: -24,-6 + 1829: -30,-12 + 1830: -30,-11 + 1831: -30,-4 + 1832: -30,-3 + 1834: -24,-13 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 1142: -3,-34 - 1143: -3,-35 - 1144: -5,-38 - 1145: -5,-39 - 3069: -18,-42 - 3070: -18,-41 - 3134: 5,10 + 1141: -3,-34 + 1142: -3,-35 + 1143: -5,-38 + 1144: -5,-39 + 3068: -18,-42 + 3069: -18,-41 + 3133: 5,10 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4348,58 +4377,58 @@ entities: 240: 61,-22 249: 64,-13 255: 72,-8 - 3313: 61,-8 - 3337: 64,-32 - 3338: 64,-33 - 3339: 64,-34 + 3302: 61,-8 + 3326: 64,-32 + 3327: 64,-33 + 3328: 64,-34 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 2268: 7,40 - 2270: 1,40 - 2350: 5,52 - 2368: 1,49 - 2385: -15,45 - 2386: -17,45 - 2387: -15,41 - 2388: -7,37 - 2389: -7,41 - 2390: -7,45 - 2391: -7,53 - 2392: -7,54 - 2463: -14,53 - 2464: -14,54 + 2267: 7,40 + 2269: 1,40 + 2349: 5,52 + 2367: 1,49 + 2384: -15,45 + 2385: -17,45 + 2386: -15,41 + 2387: -7,37 + 2388: -7,41 + 2389: -7,45 + 2390: -7,53 + 2391: -7,54 + 2462: -14,53 + 2463: -14,54 - node: color: '#EFB34196' id: WarnLineGreyscaleE decals: - 955: -27,-33 - 956: -27,-34 - 1309: 10,-35 - 1310: 10,-34 - 1311: 2,-40 - 1312: 8,-39 - 1313: 8,-38 - 1314: 8,-37 - 1315: 9,-36 - 1316: 9,-37 - 1317: 9,-38 - 1318: 9,-39 - 1324: 11,-52 - 1349: -7,-53 - 1351: -12,-52 - 1358: -11,-47 - 1359: -11,-46 - 1971: -63,3 + 954: -27,-33 + 955: -27,-34 + 1308: 10,-35 + 1309: 10,-34 + 1310: 2,-40 + 1311: 8,-39 + 1312: 8,-38 + 1313: 8,-37 + 1314: 9,-36 + 1315: 9,-37 + 1316: 9,-38 + 1317: 9,-39 + 1323: 11,-52 + 1348: -7,-53 + 1350: -12,-52 + 1357: -11,-47 + 1358: -11,-46 + 1970: -63,3 - node: color: '#F9801DFF' id: WarnLineGreyscaleE decals: - 2225: 20,27 - 2226: 20,28 - 2227: 20,29 - 2228: 20,30 + 2224: 20,27 + 2225: 20,28 + 2226: 20,29 + 2227: 20,30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -4417,112 +4446,112 @@ entities: 455: 11,-10 513: -20,19 514: -20,18 - 767: -40,10 - 769: -40,9 - 770: -40,8 - 771: -47,10 - 772: -47,9 - 836: -45,20 - 837: -45,19 - 838: -40,19 - 2074: 30,-9 - 2075: 30,-8 - 2076: 30,-7 - 2077: 30,-6 - 2078: 30,-5 - 2079: 30,-4 - 2080: 30,-2 + 766: -40,10 + 768: -40,9 + 769: -40,8 + 770: -47,10 + 771: -47,9 + 835: -45,20 + 836: -45,19 + 837: -40,19 + 2073: 30,-9 + 2074: 30,-8 + 2075: 30,-7 + 2076: 30,-6 + 2077: 30,-5 + 2078: 30,-4 + 2079: 30,-2 - node: color: '#00FFFF7F' id: WarnLineGreyscaleN decals: - 2191: 17,29 - 2192: 13,29 + 2190: 17,29 + 2191: 13,29 - node: color: '#32CD32AC' id: WarnLineGreyscaleN decals: - 3010: 46,-46 - 3011: 45,-40 - 3012: 49,-41 - 3013: 53,-41 - 3014: 45,-37 + 3009: 46,-46 + 3010: 45,-40 + 3011: 49,-41 + 3012: 53,-41 + 3013: 45,-37 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: 420: 7,-13 - 850: 7,-3 - 851: 7,-6 - 1099: -3,18 - 1101: -11,16 - 1510: 6,-43 - 1511: 5,-49 - 2372: 0,54 - 2496: -3,56 + 849: 7,-3 + 850: 7,-6 + 1098: -3,18 + 1100: -11,16 + 1509: 6,-43 + 1510: 5,-49 + 2371: 0,54 + 2495: -3,56 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2677: 55,0 - 2678: 54,0 - 2682: 52,-1 - 2724: 50,0 - 2755: 57,-15 - 2756: 60,-14 - 2809: 43,0 - 2810: 44,0 - 2817: 46,-9 - 2818: 45,-9 - 2822: 42,-9 - 2913: 41,-21 - 2914: 42,-21 - 2923: 52,-27 - 2961: 52,-33 - 3126: 4,11 - 3127: 3,11 - 3128: 2,11 + 2676: 55,0 + 2677: 54,0 + 2681: 52,-1 + 2723: 50,0 + 2754: 57,-15 + 2755: 60,-14 + 2808: 43,0 + 2809: 44,0 + 2816: 46,-9 + 2817: 45,-9 + 2821: 42,-9 + 2912: 41,-21 + 2913: 42,-21 + 2922: 52,-27 + 2960: 52,-33 + 3125: 4,11 + 3126: 3,11 + 3127: 2,11 - node: color: '#9FED5896' id: WarnLineGreyscaleN decals: - 959: 23,4 - 960: 24,4 - 961: 25,4 - 1080: 59,4 - 1081: 61,4 - 1082: 60,4 - 1083: 46,4 - 1084: 45,4 - 2130: 22,-15 - 2131: 23,-15 - 2132: 25,-15 - 2133: 26,-15 - 2134: 28,-15 - 2135: 29,-15 + 958: 23,4 + 959: 24,4 + 960: 25,4 + 1079: 59,4 + 1080: 61,4 + 1081: 60,4 + 1082: 46,4 + 1083: 45,4 + 2129: 22,-15 + 2130: 23,-15 + 2131: 25,-15 + 2132: 26,-15 + 2133: 28,-15 + 2134: 29,-15 - node: color: '#A4610696' id: WarnLineGreyscaleN decals: - 1785: -21,-5 - 1844: -36,-3 - 1845: -35,-3 - 1846: -31,-2 - 3281: -37,-3 + 1784: -21,-5 + 1843: -36,-3 + 1844: -35,-3 + 1845: -31,-2 + 3270: -37,-3 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1168: -17,-38 - 1169: -16,-38 - 1170: -14,-38 - 1171: -13,-38 - 1172: -12,-38 - 1173: -10,-38 - 1174: -9,-38 - 1175: -8,-38 - 3132: 6,9 - 3133: 7,9 + 1167: -17,-38 + 1168: -16,-38 + 1169: -14,-38 + 1170: -13,-38 + 1171: -12,-38 + 1172: -10,-38 + 1173: -9,-38 + 1174: -8,-38 + 3131: 6,9 + 3132: 7,9 - node: color: '#D381C9FF' id: WarnLineGreyscaleN @@ -4546,86 +4575,86 @@ entities: 393: -7,9 394: -6,9 606: -60,18 - 2263: 7,38 - 2264: 5,38 - 2265: 3,38 - 2266: 8,39 - 2305: 11,47 - 2347: 1,46 - 2348: -1,46 - 2349: 4,54 - 2456: -10,46 - 2458: -11,54 - 2465: -8,54 - 2554: -12,61 - 2555: -11,61 - 3105: -58,18 + 2262: 7,38 + 2263: 5,38 + 2264: 3,38 + 2265: 8,39 + 2304: 11,47 + 2346: 1,46 + 2347: -1,46 + 2348: 4,54 + 2455: -10,46 + 2457: -11,54 + 2464: -8,54 + 2553: -12,61 + 2554: -11,61 + 3104: -58,18 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: 595: -67,27 - 815: -45,16 - 816: -38,16 - 950: -21,-30 - 951: -20,-30 - 952: -19,-30 - 971: -21,16 - 972: -16,16 - 1100: 3,18 - 1197: -23,-33 - 1320: 10,-40 - 1322: 10,-36 - 1323: 9,-48 - 1330: 4,-54 - 1331: 5,-54 - 1332: 6,-54 - 1333: 7,-54 - 1334: 8,-54 - 1345: -4,-54 - 1346: -5,-54 - 1347: -6,-54 - 1360: -5,-50 - 3118: -3,11 - 3119: -2,11 + 814: -45,16 + 815: -38,16 + 949: -21,-30 + 950: -20,-30 + 951: -19,-30 + 970: -21,16 + 971: -16,16 + 1099: 3,18 + 1196: -23,-33 + 1319: 10,-40 + 1321: 10,-36 + 1322: 9,-48 + 1329: 4,-54 + 1330: 5,-54 + 1331: 6,-54 + 1332: 7,-54 + 1333: 8,-54 + 1344: -4,-54 + 1345: -5,-54 + 1346: -6,-54 + 1359: -5,-50 + 3117: -3,11 + 3118: -2,11 - node: color: '#F9801DFF' id: WarnLineGreyscaleN decals: - 2229: 21,26 - 2230: 22,26 - 2231: 23,26 - 2232: 24,26 + 2228: 21,26 + 2229: 22,26 + 2230: 23,26 + 2231: 24,26 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 756: -46,8 - 757: -45,8 - 758: -39,7 - 759: -38,7 - 800: -4,8 - 801: -3,8 - 802: 3,8 - 803: 4,8 - 840: -39,18 - 841: -44,18 - 842: -41,20 - 843: -42,20 + 755: -46,8 + 756: -45,8 + 757: -39,7 + 758: -38,7 + 799: -4,8 + 800: -3,8 + 801: 3,8 + 802: 4,8 + 839: -39,18 + 840: -44,18 + 841: -41,20 + 842: -42,20 - node: color: '#00FFFF7F' id: WarnLineGreyscaleS decals: - 2189: 16,25 - 2190: 13,25 + 2188: 16,25 + 2189: 13,25 - node: color: '#32CD32AC' id: WarnLineGreyscaleS decals: - 3007: 49,-39 - 3008: 53,-39 - 3009: 46,-44 - 3015: 45,-38 + 3006: 49,-39 + 3007: 53,-39 + 3008: 46,-44 + 3014: 45,-38 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -4638,56 +4667,56 @@ entities: 414: 10,-11 415: 9,-11 421: 7,-10 - 848: 7,-4 - 849: 7,-1 - 1508: 6,-41 - 1509: 5,-47 - 2485: 0,56 - 2497: -3,59 + 847: 7,-4 + 848: 7,-1 + 1507: 6,-41 + 1508: 5,-47 + 2484: 0,56 + 2496: -3,59 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2675: 55,2 - 2676: 54,2 - 2683: 52,-3 - 2695: 50,2 - 2696: 44,2 - 2697: 43,2 - 2758: 57,-13 - 2768: 52,-14 - 2806: 45,-7 - 2807: 46,-7 - 2808: 42,-7 - 2922: 52,-25 - 2960: 52,-31 - 3000: 55,-35 - 3006: 45,-35 + 2674: 55,2 + 2675: 54,2 + 2682: 52,-3 + 2694: 50,2 + 2695: 44,2 + 2696: 43,2 + 2757: 57,-13 + 2767: 52,-14 + 2805: 45,-7 + 2806: 46,-7 + 2807: 42,-7 + 2921: 52,-25 + 2959: 52,-31 + 2999: 55,-35 + 3005: 45,-35 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 1942: -42,14 - 1943: -41,14 - 2136: 29,-12 - 2137: 28,-12 - 2138: 26,-12 - 2139: 25,-12 - 2140: 23,-12 - 2141: 22,-12 - 2597: -7,36 + 1941: -42,14 + 1942: -41,14 + 2135: 29,-12 + 2136: 28,-12 + 2137: 26,-12 + 2138: 25,-12 + 2139: 23,-12 + 2140: 22,-12 + 2596: -7,36 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 1786: -21,-3 - 1834: -25,-16 + 1785: -21,-3 + 1833: -25,-16 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1105: -19,-43 - 3073: -17,-40 + 1104: -19,-43 + 3072: -17,-40 - node: color: '#D381C9FF' id: WarnLineGreyscaleS @@ -4702,155 +4731,155 @@ entities: 258: 67,1 259: 68,1 276: 68,-22 - 2651: 81,-22 - 2666: 63,1 - 2667: 64,1 + 2650: 81,-22 + 2665: 63,1 + 2666: 64,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2260: 3,42 - 2261: 5,42 - 2262: 7,42 - 2366: -1,48 - 2367: 1,48 - 2455: -10,36 - 2457: -10,53 - 2461: -12,56 - 2462: -11,56 + 2259: 3,42 + 2260: 5,42 + 2261: 7,42 + 2365: -1,48 + 2366: 1,48 + 2454: -10,36 + 2456: -10,53 + 2460: -12,56 + 2461: -11,56 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 947: -21,-28 - 948: -20,-28 - 949: -19,-28 - 973: -31,14 - 974: -30,14 - 1191: -23,-31 - 1319: 9,-42 - 1326: 9,-55 - 1327: 7,-55 - 1328: 6,-55 - 1329: 4,-55 - 1338: 1,-51 - 1339: -1,-51 - 1340: -7,-55 - 1341: -9,-55 - 1342: -6,-55 - 1343: -5,-55 - 1344: -4,-55 - 1355: -1,-47 - 1356: 0,-47 - 1357: -5,-48 - 3104: 5,-55 + 946: -21,-28 + 947: -20,-28 + 948: -19,-28 + 972: -31,14 + 973: -30,14 + 1190: -23,-31 + 1318: 9,-42 + 1325: 9,-55 + 1326: 7,-55 + 1327: 6,-55 + 1328: 4,-55 + 1337: 1,-51 + 1338: -1,-51 + 1339: -7,-55 + 1340: -9,-55 + 1341: -6,-55 + 1342: -5,-55 + 1343: -4,-55 + 1354: -1,-47 + 1355: 0,-47 + 1356: -5,-48 + 3103: 5,-55 - node: color: '#F9801DFF' id: WarnLineGreyscaleS decals: - 2237: 21,31 - 2238: 22,31 - 2239: 23,31 - 2240: 24,31 + 2236: 21,31 + 2237: 22,31 + 2238: 23,31 + 2239: 24,31 - node: color: '#FFFF007F' id: WarnLineGreyscaleS decals: - 1436: -23,-49 + 1435: -23,-49 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 773: -46,11 - 774: -45,11 - 775: -39,11 - 776: -38,11 - 832: -40,22 - 833: -41,22 - 834: -42,22 - 835: -43,22 - 2091: 30,2 - 2092: 29,2 - 2093: 28,2 - 3114: -3,11 - 3115: -4,11 - 3123: 3,11 - 3124: 4,11 + 772: -46,11 + 773: -45,11 + 774: -39,11 + 775: -38,11 + 831: -40,22 + 832: -41,22 + 833: -42,22 + 834: -43,22 + 2090: 30,2 + 2091: 29,2 + 2092: 28,2 + 3113: -3,11 + 3114: -4,11 + 3122: 3,11 + 3123: 4,11 - node: color: '#00FFFF7F' id: WarnLineGreyscaleW decals: - 2195: 9,29 - 2196: 9,23 + 2194: 9,29 + 2195: 9,23 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: 402: -8,8 406: 13,8 - 2481: -4,58 - 2482: -2,58 - 2483: -2,57 + 2480: -4,58 + 2481: -2,58 + 2482: -2,57 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2693: 55,-6 - 2694: 55,-7 - 2698: 52,-6 - 2752: 55,-11 - 2753: 55,-12 - 2823: 41,-9 - 2866: 45,-13 - 2867: 45,-17 - 2868: 45,-21 - 2869: 45,-22 - 2872: 45,-30 - 2962: 48,-29 - 2965: 48,-21 - 2966: 48,-22 - 3001: 48,-34 + 2692: 55,-6 + 2693: 55,-7 + 2697: 52,-6 + 2751: 55,-11 + 2752: 55,-12 + 2822: 41,-9 + 2865: 45,-13 + 2866: 45,-17 + 2867: 45,-21 + 2868: 45,-22 + 2871: 45,-30 + 2961: 48,-29 + 2964: 48,-21 + 2965: 48,-22 + 3000: 48,-34 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 2142: 24,-13 - 2143: 24,-14 - 2144: 27,-13 - 2145: 27,-14 - 2146: 30,-13 - 2147: 30,-14 - 3080: -1,34 + 2141: 24,-13 + 2142: 24,-14 + 2143: 27,-13 + 2144: 27,-14 + 2145: 30,-13 + 2146: 30,-14 + 3079: -1,34 - node: color: '#A4610696' id: WarnLineGreyscaleW decals: - 1751: -17,-14 - 1752: -17,-8 - 1753: -17,-7 - 1754: -17,4 - 1755: -17,3 - 1756: -17,2 - 1757: -17,1 - 1758: -17,0 - 1782: -22,-13 - 1826: -28,-4 - 1827: -28,-3 - 1828: -28,-11 - 1829: -28,-12 - 1925: -34,-22 + 1750: -17,-14 + 1751: -17,-8 + 1752: -17,-7 + 1753: -17,4 + 1754: -17,3 + 1755: -17,2 + 1756: -17,1 + 1757: -17,0 + 1781: -22,-13 + 1825: -28,-4 + 1826: -28,-3 + 1827: -28,-11 + 1828: -28,-12 + 1924: -34,-22 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 1138: -1,-34 - 1139: -1,-35 - 1146: -3,-38 - 1147: -3,-39 - 1149: -3,-40 - 1159: -7,-37 - 1166: -19,-38 - 1167: -19,-39 + 1137: -1,-34 + 1138: -1,-35 + 1145: -3,-38 + 1146: -3,-39 + 1148: -3,-40 + 1158: -7,-37 + 1165: -19,-38 + 1166: -19,-39 - node: color: '#D381C9FF' id: WarnLineGreyscaleW @@ -4858,53 +4887,53 @@ entities: 232: 63,-22 235: 63,-36 237: 66,-27 - 2665: 57,-23 - 2754: 63,-15 - 3312: 59,-8 - 3336: 63,-33 + 2664: 57,-23 + 2753: 63,-15 + 3301: 59,-8 + 3325: 63,-33 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: 395: -5,10 - 2345: 7,45 - 2346: 7,52 - 2370: -5,53 - 2371: -5,54 - 2379: -5,45 - 2380: -5,41 - 2381: -5,37 - 2382: -13,41 - 2383: -13,45 - 2384: -15,45 - 2460: -12,53 - 2593: -17,41 + 2344: 7,45 + 2345: 7,52 + 2369: -5,53 + 2370: -5,54 + 2378: -5,45 + 2379: -5,41 + 2380: -5,37 + 2381: -13,41 + 2382: -13,45 + 2383: -15,45 + 2459: -12,53 + 2592: -17,41 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 953: -25,-33 - 954: -25,-34 - 1301: 4,-40 - 1302: 5,-39 - 1303: 5,-38 - 1304: 5,-37 - 1305: 4,-37 - 1306: 4,-36 - 1307: 8,-35 - 1308: 8,-34 - 1336: 9,-53 - 1352: -10,-52 - 1353: -9,-47 - 1354: -9,-46 + 952: -25,-33 + 953: -25,-34 + 1300: 4,-40 + 1301: 5,-39 + 1302: 5,-38 + 1303: 5,-37 + 1304: 4,-37 + 1305: 4,-36 + 1306: 8,-35 + 1307: 8,-34 + 1335: 9,-53 + 1351: -10,-52 + 1352: -9,-47 + 1353: -9,-46 - node: color: '#F9801DFF' id: WarnLineGreyscaleW decals: - 2233: 25,27 - 2234: 25,28 - 2235: 25,29 - 2236: 25,30 + 2232: 25,27 + 2233: 25,28 + 2234: 25,29 + 2235: 25,30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -4920,43 +4949,43 @@ entities: 451: 13,-7 511: -22,19 512: -22,18 - 761: -44,9 - 762: -44,10 - 763: -37,10 - 764: -37,9 - 765: -37,8 - 830: -38,20 - 831: -38,19 - 839: -43,19 - 2067: 32,-9 - 2068: 32,-8 - 2069: 32,-7 - 2070: 32,-6 - 2071: 32,-5 - 2072: 32,-4 - 2073: 32,-2 - 3130: 5,10 - 3131: 5,9 + 760: -44,9 + 761: -44,10 + 762: -37,10 + 763: -37,9 + 764: -37,8 + 829: -38,20 + 830: -38,19 + 838: -43,19 + 2066: 32,-9 + 2067: 32,-8 + 2068: 32,-7 + 2069: 32,-6 + 2070: 32,-5 + 2071: 32,-4 + 2072: 32,-2 + 3129: 5,10 + 3130: 5,9 - node: color: '#FFFFFF7F' id: WarnLineN decals: - 1551: 16,-21 - 1552: 17,-21 - 1585: 36,-18 - 1595: 38,20 - 1596: 37,20 - 1597: 35,20 - 1598: 36,20 - 1599: 34,20 - 1600: 33,20 - 1601: 32,20 - 1602: 31,20 - 1642: 10,37 - 1643: 11,37 - 1664: 16,45 - 1665: 17,45 - 1694: -27,24 + 1550: 16,-21 + 1551: 17,-21 + 1584: 36,-18 + 1594: 38,20 + 1595: 37,20 + 1596: 35,20 + 1597: 36,20 + 1598: 34,20 + 1599: 33,20 + 1600: 32,20 + 1601: 31,20 + 1641: 10,37 + 1642: 11,37 + 1663: 16,45 + 1664: 17,45 + 1693: -27,24 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5012,92 +5041,92 @@ entities: 372: -25,9 544: -68,-4 545: -67,-4 - 795: -38,7 - 796: -39,7 - 910: -13,22 - 911: -9,22 - 975: -30,10 - 976: -31,10 - 977: -32,10 - 978: -34,10 - 979: -33,10 - 983: -34,9 - 984: -30,9 - 986: -31,9 - 987: -32,9 - 988: -33,9 - 989: -30,9 - 1021: 39,7 - 1022: 38,7 - 1106: -12,-40 - 1107: -11,-40 - 1108: -13,-40 + 794: -38,7 + 795: -39,7 + 909: -13,22 + 910: -9,22 + 974: -30,10 + 975: -31,10 + 976: -32,10 + 977: -34,10 + 978: -33,10 + 982: -34,9 + 983: -30,9 + 985: -31,9 + 986: -32,9 + 987: -33,9 + 988: -30,9 + 1020: 39,7 + 1021: 38,7 + 1105: -12,-40 + 1106: -11,-40 + 1107: -13,-40 + 1108: -14,-40 1109: -14,-40 - 1110: -14,-40 - 1111: -13,-40 - 1112: -10,-40 - 1205: -5,-22 - 1206: -9,-22 - 1403: -13,-45 - 1404: -12,-45 - 1405: -11,-45 - 1429: 13,-54 - 1430: 14,-54 - 1530: -6,-26 - 1531: -5,-26 - 1532: -7,-26 - 1533: -8,-26 - 1534: -9,-26 - 1542: -19,-18 - 1543: -20,-18 - 1544: -21,-18 - 1877: -35,-11 - 1878: -33,-11 - 1879: -34,-11 - 1880: -32,-11 - 1896: -36,-23 - 2919: 48,-20 - 2920: 48,-25 - 3068: -15,-40 - 3109: -39,-12 - 3110: -38,-12 - 3111: -37,-12 - 3239: -78,26 - 3240: -77,26 - 3241: -72,26 - 3242: -71,26 - 3243: -70,26 - 3347: 76,-28 + 1110: -13,-40 + 1111: -10,-40 + 1204: -5,-22 + 1205: -9,-22 + 1402: -13,-45 + 1403: -12,-45 + 1404: -11,-45 + 1428: 13,-54 + 1429: 14,-54 + 1529: -6,-26 + 1530: -5,-26 + 1531: -7,-26 + 1532: -8,-26 + 1533: -9,-26 + 1541: -19,-18 + 1542: -20,-18 + 1543: -21,-18 + 1876: -35,-11 + 1877: -33,-11 + 1878: -34,-11 + 1879: -32,-11 + 1895: -36,-23 + 2918: 48,-20 + 2919: 48,-25 + 3067: -15,-40 + 3108: -39,-12 + 3109: -38,-12 + 3110: -37,-12 + 3228: -78,26 + 3229: -77,26 + 3230: -72,26 + 3231: -71,26 + 3232: -70,26 + 3336: 76,-28 - node: color: '#FFFFFF7F' id: WarnLineS decals: - 1541: -20,-23 - 1567: 39,-7 - 1568: 39,-6 - 1569: 39,-5 - 1570: 39,-4 - 1571: 39,-2 - 1572: 39,-1 - 1573: 39,0 - 1574: 39,-18 - 1575: 39,-17 - 1576: 39,-16 - 1577: 39,-15 - 1578: 39,-14 - 1579: 39,-13 - 1580: 39,-12 - 1582: 39,-11 - 1649: 12,36 - 1688: -30,24 - 1689: -30,23 - 1690: -30,22 - 1691: -28,24 - 1692: -28,23 - 1693: -28,22 - 2574: -14,50 - 2575: -14,49 - 2576: -14,48 + 1540: -20,-23 + 1566: 39,-7 + 1567: 39,-6 + 1568: 39,-5 + 1569: 39,-4 + 1570: 39,-2 + 1571: 39,-1 + 1572: 39,0 + 1573: 39,-18 + 1574: 39,-17 + 1575: 39,-16 + 1576: 39,-15 + 1577: 39,-14 + 1578: 39,-13 + 1579: 39,-12 + 1581: 39,-11 + 1648: 12,36 + 1687: -30,24 + 1688: -30,23 + 1689: -30,22 + 1690: -28,24 + 1691: -28,23 + 1692: -28,22 + 2573: -14,50 + 2574: -14,49 + 2575: -14,48 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5139,88 +5168,88 @@ entities: 376: -12,19 377: -12,20 382: -14,23 - 789: -37,3 - 790: -37,4 - 791: -37,5 - 792: -37,6 - 933: -26,-31 - 934: -26,-30 - 1010: 32,15 - 1011: 32,14 - 1012: 32,13 - 1016: 35,6 - 1209: -6,-21 - 1210: -6,-20 - 1211: -6,-19 - 1221: -11,-25 - 1222: -13,-25 - 1410: -1,-45 - 1413: 9,-45 - 1414: 9,-44 - 1433: 15,-57 - 1434: 15,-54 - 1621: 18,36 - 1672: -22,35 - 1870: -34,-6 - 1871: -34,-7 - 1872: -34,-8 - 1873: -34,-9 - 1874: -38,-6 - 1875: -38,-7 - 1876: -38,-8 - 1882: -31,-12 - 1894: -37,-22 - 1897: -40,-21 - 1898: -40,-19 - 1899: -40,-20 - 1917: -29,-14 - 1918: -29,-15 - 1919: -29,-16 - 1920: -29,-17 - 2506: -5,67 - 2507: -5,66 - 2508: -5,65 - 2509: -5,64 - 2642: 71,-31 - 2643: 71,-32 - 2897: 43,-15 - 3107: -38,-9 - 3260: -76,13 - 3261: -69,13 - 3262: -69,25 - 3263: -76,25 - 3329: 84,-16 - 3330: 84,-17 - 3331: 84,-18 - 3390: 86,-21 - 3391: 86,-17 + 788: -37,3 + 789: -37,4 + 790: -37,5 + 791: -37,6 + 932: -26,-31 + 933: -26,-30 + 1009: 32,15 + 1010: 32,14 + 1011: 32,13 + 1015: 35,6 + 1208: -6,-21 + 1209: -6,-20 + 1210: -6,-19 + 1220: -11,-25 + 1221: -13,-25 + 1409: -1,-45 + 1412: 9,-45 + 1413: 9,-44 + 1432: 15,-57 + 1433: 15,-54 + 1620: 18,36 + 1671: -22,35 + 1869: -34,-6 + 1870: -34,-7 + 1871: -34,-8 + 1872: -34,-9 + 1873: -38,-6 + 1874: -38,-7 + 1875: -38,-8 + 1881: -31,-12 + 1893: -37,-22 + 1896: -40,-21 + 1897: -40,-19 + 1898: -40,-20 + 1916: -29,-14 + 1917: -29,-15 + 1918: -29,-16 + 1919: -29,-17 + 2505: -5,67 + 2506: -5,66 + 2507: -5,65 + 2508: -5,64 + 2641: 71,-31 + 2642: 71,-32 + 2896: 43,-15 + 3106: -38,-9 + 3249: -76,13 + 3250: -69,13 + 3251: -69,25 + 3252: -76,25 + 3318: 84,-16 + 3319: 84,-17 + 3320: 84,-18 + 3365: 86,-21 + 3366: 86,-17 - node: color: '#FFFFFF7F' id: WarnLineW decals: - 1555: 11,-22 - 1556: 10,-22 - 1557: 9,-22 - 1583: 35,-17 - 1584: 36,-17 - 1630: 15,38 - 1631: 16,38 - 1644: 12,38 - 1645: 11,38 - 1650: 8,35 - 1651: 7,35 - 1652: 5,35 - 1653: 4,35 - 1654: 3,35 - 1666: 16,45 - 1667: 17,45 - 1695: -27,21 - 1696: -33,25 - 1697: -32,25 - 1698: -31,25 - 1699: -29,25 - 1700: -28,25 - 1701: -27,25 + 1554: 11,-22 + 1555: 10,-22 + 1556: 9,-22 + 1582: 35,-17 + 1583: 36,-17 + 1629: 15,38 + 1630: 16,38 + 1643: 12,38 + 1644: 11,38 + 1649: 8,35 + 1650: 7,35 + 1651: 5,35 + 1652: 4,35 + 1653: 3,35 + 1665: 16,45 + 1666: 17,45 + 1694: -27,21 + 1695: -33,25 + 1696: -32,25 + 1697: -31,25 + 1698: -29,25 + 1699: -28,25 + 1700: -27,25 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5250,97 +5279,97 @@ entities: 374: -25,10 546: -68,-3 547: -67,-3 - 908: -9,24 - 909: -13,24 - 938: -25,-29 - 939: -24,-29 - 941: -23,-29 - 1008: 33,16 - 1009: 34,16 - 1013: 31,12 - 1023: 36,15 - 1114: -13,-34 - 1115: -12,-34 - 1116: -8,-34 - 1117: -9,-34 - 1118: -8,-31 - 1119: -9,-31 - 1120: -12,-31 - 1121: -13,-31 - 1400: -13,-48 - 1401: -12,-48 - 1402: -11,-48 - 1406: -7,-46 - 1407: -6,-46 - 1408: -5,-46 - 1431: 13,-57 - 1432: 14,-57 - 1670: -23,38 - 1671: -22,38 - 1895: -36,-21 - 1958: -71,27 - 1959: -75,27 - 2568: -15,52 - 2569: -17,52 - 2570: -16,52 - 2571: -18,52 - 2572: -19,52 - 2573: -20,52 - 2648: 70,-33 - 2649: 69,-33 - 2650: 68,-33 - 2900: 41,-24 - 2901: 42,-24 - 2902: 43,-24 - 2918: 48,-23 - 3106: -39,-10 - 3249: -72,12 - 3250: -71,12 - 3251: -70,12 - 3252: -78,12 - 3253: -77,12 - 3280: 81,-27 - 3332: 81,-19 - 3333: 82,-19 - 3334: 83,-19 + 907: -9,24 + 908: -13,24 + 937: -25,-29 + 938: -24,-29 + 940: -23,-29 + 1007: 33,16 + 1008: 34,16 + 1012: 31,12 + 1022: 36,15 + 1113: -13,-34 + 1114: -12,-34 + 1115: -8,-34 + 1116: -9,-34 + 1117: -8,-31 + 1118: -9,-31 + 1119: -12,-31 + 1120: -13,-31 + 1399: -13,-48 + 1400: -12,-48 + 1401: -11,-48 + 1405: -7,-46 + 1406: -6,-46 + 1407: -5,-46 + 1430: 13,-57 + 1431: 14,-57 + 1669: -23,38 + 1670: -22,38 + 1894: -36,-21 + 1957: -71,27 + 1958: -75,27 + 2567: -15,52 + 2568: -17,52 + 2569: -16,52 + 2570: -18,52 + 2571: -19,52 + 2572: -20,52 + 2647: 70,-33 + 2648: 69,-33 + 2649: 68,-33 + 2899: 41,-24 + 2900: 42,-24 + 2901: 43,-24 + 2917: 48,-23 + 3105: -39,-10 + 3238: -72,12 + 3239: -71,12 + 3240: -70,12 + 3241: -78,12 + 3242: -77,12 + 3269: 81,-27 + 3321: 81,-19 + 3322: 82,-19 + 3323: 83,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2328: 9,50 - 2601: -3,34 - 3306: 56,-22 + 2327: 9,50 + 2600: -3,34 + 3295: 56,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2088: 33,-4 - 2329: 13,50 - 2602: -7,34 + 2087: 33,-4 + 2328: 13,50 + 2601: -7,34 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2326: 12,52 - 2327: 9,49 - 2604: -3,30 + 2325: 12,52 + 2326: 9,49 + 2603: -3,30 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2330: 9,52 - 2331: 13,49 - 2603: -7,30 + 2329: 9,52 + 2330: 13,49 + 2602: -7,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2320: 12,53 - 2605: -3,33 - 2606: -3,32 - 2607: -3,31 - 3307: 56,-23 - 3308: 56,-24 + 2319: 12,53 + 2604: -3,33 + 2605: -3,32 + 2606: -3,31 + 3296: 56,-23 + 3297: 56,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5350,16 +5379,16 @@ entities: 603: -59,16 604: -60,16 605: -61,16 - 1090: 43,11 - 1091: 48,11 - 2089: 34,-4 - 2090: 35,-4 - 2332: 14,50 - 2333: 8,50 - 2611: -4,34 - 2612: -5,34 - 2613: -6,34 - 3309: 55,-22 + 1089: 43,11 + 1090: 48,11 + 2088: 34,-4 + 2089: 35,-4 + 2331: 14,50 + 2332: 8,50 + 2610: -4,34 + 2611: -5,34 + 2612: -6,34 + 3298: 55,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5369,139 +5398,144 @@ entities: 598: -59,13 599: -58,13 600: -57,13 - 1618: 56.9901,20.852085 - 1619: 57.946823,20.852085 - 1620: 58.92746,20.876007 - 1622: 60.027687,20.852085 - 1625: 59.549328,20.852085 - 1627: 61.03224,15.983847 - 1632: 60.021652,16.00777 - 1633: 60.52393,15.983847 - 1636: 58.079304,16.00777 - 1637: 57.138126,16.00777 - 1723: 58.84746,20.860836 - 1724: 58.01033,16.004375 - 2322: 14,49 - 2323: 8,49 - 2324: 10,52 - 2325: 11,52 - 2608: -4,30 - 2609: -5,30 - 2610: -6,30 - 3363: -32,51 - 3364: -33,51 - 3365: -34,51 - 3366: -35,51 - 3367: -36,51 + 1617: 56.9901,20.852085 + 1618: 57.946823,20.852085 + 1619: 58.92746,20.876007 + 1621: 60.027687,20.852085 + 1624: 59.549328,20.852085 + 1626: 61.03224,15.983847 + 1631: 60.021652,16.00777 + 1632: 60.52393,15.983847 + 1635: 58.079304,16.00777 + 1636: 57.138126,16.00777 + 1722: 58.84746,20.860836 + 1723: 58.01033,16.004375 + 2321: 14,49 + 2322: 8,49 + 2323: 10,52 + 2324: 11,52 + 2607: -4,30 + 2608: -5,30 + 2609: -6,30 + 3352: -32,51 + 3353: -33,51 + 3354: -34,51 + 3355: -35,51 + 3356: -36,51 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1612: 57.0024,15.971703 - 1613: 56.97848,19.99084 - 1614: 56.97848,19.057827 - 1615: 57.0024,18.029118 - 1616: 57.0024,18.483664 - 1617: 61.854603,17.00041 - 2083: 33,-9 - 2084: 33,-8 - 2085: 33,-7 - 2086: 33,-6 - 2087: 33,-5 - 2321: 9,53 - 2614: -7,33 - 2615: -7,32 - 2616: -7,31 + 1611: 57.0024,15.971703 + 1612: 56.97848,19.99084 + 1613: 56.97848,19.057827 + 1614: 57.0024,18.029118 + 1615: 57.0024,18.483664 + 1616: 61.854603,17.00041 + 2082: 33,-9 + 2083: 33,-8 + 2084: 33,-7 + 2085: 33,-6 + 2086: 33,-5 + 2320: 9,53 + 2613: -7,33 + 2614: -7,32 + 2615: -7,31 + - node: + color: '#FFFFFFFF' + id: body + decals: + 3367: -54.938652,7.00443 - node: cleanable: True angle: 0.17453292519943295 rad color: '#8932B88F' id: i decals: - 3157: -17.52094,-35.10295 - 3158: -17.489668,-35.306076 - 3159: -17.505304,-34.712326 - 3160: -16.614016,-35.337326 - 3161: -16.582743,-34.993576 - 3162: -16.582743,-34.712326 + 3156: -17.52094,-35.10295 + 3157: -17.489668,-35.306076 + 3158: -17.505304,-34.712326 + 3159: -16.614016,-35.337326 + 3160: -16.582743,-34.993576 + 3161: -16.582743,-34.712326 - node: cleanable: True angle: 1.7453292519943295 rad color: '#8932B88F' id: i decals: - 3163: -17.302029,-35.493576 - 3164: -16.97366,-35.493576 - 3165: -16.801657,-35.47795 - 3166: -17.192572,-34.54045 - 3167: -16.83293,-34.556076 - 3168: -16.6922,-34.5717 + 3162: -17.302029,-35.493576 + 3163: -16.97366,-35.493576 + 3164: -16.801657,-35.47795 + 3165: -17.192572,-34.54045 + 3166: -16.83293,-34.556076 + 3167: -16.6922,-34.5717 - node: cleanable: True angle: -2.0943951023931953 rad color: '#FFFFFFFF' id: i decals: - 3152: -16.963999,-35.062138 + 3151: -16.963999,-35.062138 - node: cleanable: True angle: -0.5235987755982988 rad color: '#FFFFFFFF' id: i decals: - 3151: -17.145401,-35.162445 - 3153: -17.026545,-34.843388 - 3154: -16.823269,-35.030888 - 3155: -17.118738,-35.21356 - 3156: -17.181284,-35.15106 + 3150: -17.145401,-35.162445 + 3152: -17.026545,-34.843388 + 3153: -16.823269,-35.030888 + 3154: -17.118738,-35.21356 + 3155: -17.181284,-35.15106 - node: cleanable: True angle: 0.17453292519943295 rad color: '#FFFFFFFF' id: i decals: - 3138: -17.489408,-34.662445 - 3139: -17.505045,-35.006195 - 3140: -17.489408,-35.30307 - 3141: -17.505045,-35.068695 - 3148: -16.59812,-35.287445 - 3149: -16.566847,-34.974945 - 3150: -16.55121,-34.74057 + 3137: -17.489408,-34.662445 + 3138: -17.505045,-35.006195 + 3139: -17.489408,-35.30307 + 3140: -17.505045,-35.068695 + 3147: -16.59812,-35.287445 + 3148: -16.566847,-34.974945 + 3149: -16.55121,-34.74057 - node: cleanable: True angle: 1.7453292519943295 rad color: '#FFFFFFFF' id: i decals: - 3142: -17.301767,-35.506195 - 3143: -16.942125,-35.506195 - 3144: -16.707575,-35.506195 - 3145: -17.254858,-34.568695 - 3146: -16.87958,-34.568695 - 3147: -16.707575,-34.568695 + 3141: -17.301767,-35.506195 + 3142: -16.942125,-35.506195 + 3143: -16.707575,-35.506195 + 3144: -17.254858,-34.568695 + 3145: -16.87958,-34.568695 + 3146: -16.707575,-34.568695 - node: cleanable: True color: '#8932B8FF' id: largebrush decals: - 3137: -17,-35 + 3136: -17,-35 - node: cleanable: True color: '#951710FF' id: revolution decals: - 3350: -57,8 + 3339: -57,8 - node: cleanable: True color: '#79150096' id: splatter decals: - 744: -59,-1 + 743: -59,-1 - node: color: '#A30316FF' id: splatter decals: - 1728: 54,8 + 1727: 54,8 type: DecalGrid - version: 2 data: @@ -7079,9 +7113,9 @@ entities: 18,0: 0: 65467 18,1: - 0: 49151 + 0: 65535 18,2: - 0: 65467 + 0: 65535 18,3: 0: 8191 -8,-10: @@ -9968,6 +10002,16 @@ entities: - pos: 66.5,-13.5 parent: 2 type: Transform + - uid: 19945 + components: + - pos: -38.5,6.5 + parent: 2 + type: Transform + - uid: 19946 + components: + - pos: -38.5,5.5 + parent: 2 + type: Transform - uid: 20842 components: - pos: 4.5,-23.5 @@ -10362,11 +10406,6 @@ entities: type: Transform - proto: AirlockEngineering entities: - - uid: 16201 - components: - - pos: 63.5,-46.5 - parent: 2 - type: Transform - uid: 17406 components: - pos: -41.5,0.5 @@ -10428,6 +10467,11 @@ entities: type: Transform - proto: AirlockEngineeringLocked entities: + - uid: 1449 + components: + - pos: 63.5,-46.5 + parent: 2 + type: Transform - uid: 15604 components: - pos: -17.5,-16.5 @@ -10548,18 +10592,6 @@ entities: pos: -14.5,25.5 parent: 2 type: Transform -- proto: AirlockExternal - entities: - - uid: 16378 - components: - - pos: 17.5,36.5 - parent: 2 - type: Transform - - uid: 16379 - components: - - pos: 20.5,36.5 - parent: 2 - type: Transform - proto: AirlockExternalEngineeringLocked entities: - uid: 4378 @@ -10600,10 +10632,9 @@ entities: type: Transform - proto: AirlockExternalGlass entities: - - uid: 1449 + - uid: 11227 components: - - rot: 1.5707963267948966 rad - pos: -64.5,1.5 + - pos: -64.5,7.5 parent: 2 type: Transform - uid: 11966 @@ -10620,19 +10651,12 @@ entities: type: Transform - uid: 11968 components: - - rot: 1.5707963267948966 rad - pos: -64.5,7.5 + - pos: -64.5,1.5 parent: 2 type: Transform - - uid: 15235 + - uid: 15790 components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 2 - type: Transform - - uid: 15272 - components: - - pos: -13.5,-24.5 + - pos: -20.5,35.5 parent: 2 type: Transform - uid: 16202 @@ -10640,11 +10664,6 @@ entities: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 16203 - components: - - pos: 63.5,-52.5 - parent: 2 - type: Transform - uid: 16223 components: - pos: 84.5,-33.5 @@ -10661,12 +10680,6 @@ entities: pos: 48.5,24.5 parent: 2 type: Transform - - uid: 16251 - components: - - rot: 3.141592653589793 rad - pos: 48.5,26.5 - parent: 2 - type: Transform - uid: 19832 components: - rot: 1.5707963267948966 rad @@ -10715,6 +10728,18 @@ entities: pos: 107.5,-22.5 parent: 2 type: Transform +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 21940 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 22823 + components: + - pos: 23.5,-22.5 + parent: 2 + type: Transform - proto: AirlockExternalGlassCargoLocked entities: - uid: 1446 @@ -10741,8 +10766,45 @@ entities: pos: -34.5,-21.5 parent: 2 type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 15648 + components: + - pos: 63.5,-52.5 + parent: 2 + type: Transform + - uid: 15649 + components: + - pos: 48.5,26.5 + parent: 2 + type: Transform + - uid: 15650 + components: + - pos: -48.5,31.5 + parent: 2 + type: Transform - proto: AirlockExternalGlassLocked entities: + - uid: 8219 + components: + - pos: 20.5,36.5 + parent: 2 + type: Transform + - uid: 11197 + components: + - pos: 17.5,36.5 + parent: 2 + type: Transform + - uid: 15652 + components: + - pos: -65.5,34.5 + parent: 2 + type: Transform + - uid: 15710 + components: + - pos: -65.5,31.5 + parent: 2 + type: Transform - uid: 15714 components: - pos: -28.5,-44.5 @@ -10759,22 +10821,6 @@ entities: pos: -48.5,29.5 parent: 2 type: Transform - - uid: 17175 - components: - - rot: 3.141592653589793 rad - pos: -48.5,31.5 - parent: 2 - type: Transform - - uid: 17315 - components: - - pos: -65.5,31.5 - parent: 2 - type: Transform - - uid: 17316 - components: - - pos: -65.5,34.5 - parent: 2 - type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 11218 @@ -10889,6 +10935,16 @@ entities: type: Transform - proto: AirlockExternalLocked entities: + - uid: 15235 + components: + - pos: -13.5,-24.5 + parent: 2 + type: Transform + - uid: 15272 + components: + - pos: -11.5,-24.5 + parent: 2 + type: Transform - uid: 15907 components: - rot: -1.5707963267948966 rad @@ -10901,11 +10957,6 @@ entities: pos: 34.5,-26.5 parent: 2 type: Transform - - uid: 16579 - components: - - pos: -20.5,35.5 - parent: 2 - type: Transform - uid: 16595 components: - pos: -19.5,25.5 @@ -13629,7 +13680,7 @@ entities: - pos: 43.369972,13.996872 parent: 2 type: Transform - - nextSound: 5320.7224148 + - nextSound: 5320.7224147 type: EmitSoundOnCollide - proto: BalloonCorgi entities: @@ -13675,6 +13726,18 @@ entities: - pos: 5.5,7.5 parent: 2 type: Transform +- proto: Barricade + entities: + - uid: 19525 + components: + - pos: -55.5,8.5 + parent: 2 + type: Transform + - uid: 19526 + components: + - pos: -60.5,6.5 + parent: 2 + type: Transform - proto: BarSignTheCoderbus entities: - uid: 269 @@ -13705,7 +13768,7 @@ entities: - pos: 53.04299,-1.1794463 parent: 2 type: Transform - - nextAttack: 4101.1830654 + - nextAttack: 4101.1830653 type: MeleeWeapon - nextSound: 4101.3830654 type: EmitSoundOnCollide @@ -14011,6 +14074,32 @@ entities: type: Transform - nextSound: 1042.3354324 type: EmitSoundOnCollide +- proto: BedsheetOrange + entities: + - uid: 22846 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 2 + type: Transform + - nextSound: 3590.8349981 + type: EmitSoundOnCollide + - uid: 22847 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 2 + type: Transform + - nextSound: 3591.3848189 + type: EmitSoundOnCollide + - uid: 22848 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 2 + type: Transform + - nextSound: 3592.1184918 + type: EmitSoundOnCollide - proto: BedsheetRD entities: - uid: 20106 @@ -14126,6 +14215,11 @@ entities: - pos: 5.5,22.5 parent: 2 type: Transform + - uid: 22853 + components: + - pos: -16.5,49.5 + parent: 2 + type: Transform - proto: BenchParkLeft entities: - uid: 19231 @@ -15879,6 +15973,13 @@ entities: type: Transform - nextSound: 5949.9655181 type: EmitSoundOnCollide + - uid: 22855 + components: + - pos: -14.56706,46.61383 + parent: 2 + type: Transform + - nextSound: 3762.4512542 + type: EmitSoundOnCollide - proto: BoxFolderWhite entities: - uid: 18684 @@ -16336,48 +16437,27 @@ entities: - pos: -5.5,42.5 parent: 2 type: Transform - - linkedPorts: - invalid: - - Start: Close - - Timer: AutoClose - - Timer: Open - registeredSinks: - Start: - - invalid - Timer: - - invalid + - registeredSinks: + Start: [] + Timer: [] type: DeviceLinkSource - uid: 17116 components: - pos: -5.5,38.5 parent: 2 type: Transform - - linkedPorts: - invalid: - - Start: Close - - Timer: AutoClose - - Timer: Open - registeredSinks: - Start: - - invalid - Timer: - - invalid + - registeredSinks: + Start: [] + Timer: [] type: DeviceLinkSource - uid: 17117 components: - pos: -5.5,46.5 parent: 2 type: Transform - - linkedPorts: - invalid: - - Start: Close - - Timer: AutoClose - - Timer: Open - registeredSinks: - Start: - - invalid - Timer: - - invalid + - registeredSinks: + Start: [] + Timer: [] type: DeviceLinkSource - proto: BrokenBottle entities: @@ -17391,8 +17471,6 @@ entities: - pos: -27.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 209 @@ -17409,8 +17487,6 @@ entities: - pos: -29.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 211 @@ -17427,8 +17503,6 @@ entities: - pos: -31.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 213 @@ -17445,8 +17519,6 @@ entities: - pos: -29.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 215 @@ -17454,8 +17526,6 @@ entities: - pos: -29.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 216 @@ -17463,8 +17533,6 @@ entities: - pos: -29.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 217 @@ -17472,8 +17540,6 @@ entities: - pos: -29.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 218 @@ -17481,8 +17547,6 @@ entities: - pos: -29.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 219 @@ -31770,8 +31834,6 @@ entities: - pos: -26.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 2046 @@ -31779,8 +31841,6 @@ entities: - pos: -26.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 2047 @@ -31815,8 +31875,6 @@ entities: - pos: -32.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 2051 @@ -32895,8 +32953,6 @@ entities: - pos: 29.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 2185 @@ -32904,8 +32960,6 @@ entities: - pos: 29.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 2186 @@ -55065,8 +55119,6 @@ entities: - pos: 29.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4733 @@ -55074,8 +55126,6 @@ entities: - pos: 28.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4734 @@ -55090,8 +55140,6 @@ entities: - pos: 26.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4736 @@ -55257,8 +55305,6 @@ entities: - pos: 23.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4759 @@ -55298,8 +55344,6 @@ entities: - pos: 25.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 4764 @@ -64227,8 +64271,6 @@ entities: - pos: -29.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 5903 @@ -64236,8 +64278,6 @@ entities: - pos: -29.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 5904 @@ -64254,8 +64294,6 @@ entities: - pos: -31.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - fixtures: {} type: Fixtures - uid: 5906 @@ -65833,13 +65871,6 @@ entities: type: Transform - nextSound: 4986.5762079 type: EmitSoundOnCollide - - uid: 17648 - components: - - pos: -45.497463,20.422388 - parent: 2 - type: Transform - - nextSound: 4031.1794443 - type: EmitSoundOnCollide - uid: 17739 components: - pos: -11.508402,-54.188923 @@ -72609,30 +72640,6 @@ entities: pos: -7.5,40.5 parent: 2 type: Transform - - uid: 19417 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,44.5 - parent: 2 - type: Transform - - uid: 19418 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 2 - type: Transform - - uid: 19419 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 2 - type: Transform - - uid: 19420 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,44.5 - parent: 2 - type: Transform - uid: 19432 components: - pos: -22.5,43.5 @@ -72649,24 +72656,6 @@ entities: pos: -14.5,44.5 parent: 2 type: Transform - - uid: 19515 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 2 - type: Transform - - uid: 19525 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,33.5 - parent: 2 - type: Transform - - uid: 19526 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,32.5 - parent: 2 - type: Transform - uid: 19574 components: - pos: 22.5,9.5 @@ -72839,29 +72828,26 @@ entities: type: MeleeWeapon - proto: ChairFoldingSpawnFolded entities: - - uid: 22623 + - uid: 16378 components: - - rot: 1.5707963267948966 rad - pos: -40.58212,6.5886226 + - pos: -40.53645,6.7573743 parent: 2 type: Transform - - nextAttack: 3275.1671054 + - nextAttack: 3291.6032898 type: MeleeWeapon - - uid: 22624 + - uid: 16379 components: - - rot: 1.5707963267948966 rad - pos: -40.592533,6.0882754 + - pos: -40.53645,6.423809 parent: 2 type: Transform - - nextAttack: 3276.0659638 + - nextAttack: 3313.9692935 type: MeleeWeapon - - uid: 22625 + - uid: 16579 components: - - rot: 1.5707963267948966 rad - pos: -40.58212,5.5775037 + - pos: -40.546867,6.069396 parent: 2 type: Transform - - nextAttack: 3276.8855481 + - nextAttack: 3316.7193434 type: MeleeWeapon - proto: ChairOfficeDark entities: @@ -72871,6 +72857,18 @@ entities: pos: -20.5,-14.5 parent: 2 type: Transform + - uid: 16201 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,45.5 + parent: 2 + type: Transform + - uid: 16203 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,44.5 + parent: 2 + type: Transform - uid: 17745 components: - pos: 3.5,-44.5 @@ -72941,6 +72939,18 @@ entities: pos: -23.5,-5.5 parent: 2 type: Transform + - uid: 15792 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + type: Transform + - uid: 15793 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 2 + type: Transform - uid: 17459 components: - rot: 1.5707963267948966 rad @@ -73267,13 +73277,6 @@ entities: type: Transform - nextSound: 5897.3753878 type: EmitSoundOnCollide -- proto: CloningPod - entities: - - uid: 20430 - components: - - pos: 57.5,-9.5 - parent: 2 - type: Transform - proto: CloningPodMachineCircuitboard entities: - uid: 16773 @@ -73283,6 +73286,13 @@ entities: type: Transform - nextSound: 5880.2230765 type: EmitSoundOnCollide + - uid: 22811 + components: + - pos: -28.519606,28.316854 + parent: 2 + type: Transform + - nextSound: 997.9618199 + type: EmitSoundOnCollide - proto: ClosetBase entities: - uid: 17559 @@ -73418,16 +73428,6 @@ entities: type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 11197 - components: - - pos: -74.5,25.5 - parent: 2 - type: Transform - - uid: 11227 - components: - - pos: -72.5,13.5 - parent: 2 - type: Transform - uid: 12514 components: - pos: -73.5,13.5 @@ -73473,6 +73473,16 @@ entities: - pos: -21.5,36.5 parent: 2 type: Transform + - uid: 16719 + components: + - pos: -66.5,25.5 + parent: 2 + type: Transform + - uid: 17315 + components: + - pos: -66.5,13.5 + parent: 2 + type: Transform - uid: 17474 components: - pos: -75.5,25.5 @@ -73543,11 +73553,6 @@ entities: - pos: -68.5,13.5 parent: 2 type: Transform - - uid: 22643 - components: - - pos: -67.5,13.5 - parent: 2 - type: Transform - uid: 22644 components: - pos: -64.5,-1.5 @@ -73558,9 +73563,9 @@ entities: - pos: -68.5,25.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22859 components: - - pos: -67.5,25.5 + - pos: -58.5,-2.5 parent: 2 type: Transform - proto: ClosetFireFilled @@ -73595,11 +73600,31 @@ entities: - pos: 66.5,-2.5 parent: 2 type: Transform + - uid: 16639 + components: + - pos: -74.5,25.5 + parent: 2 + type: Transform + - uid: 16672 + components: + - pos: -72.5,13.5 + parent: 2 + type: Transform + - uid: 16723 + components: + - pos: -67.5,25.5 + parent: 2 + type: Transform - uid: 17057 components: - pos: -43.5,25.5 parent: 2 type: Transform + - uid: 17316 + components: + - pos: -67.5,13.5 + parent: 2 + type: Transform - uid: 18615 components: - pos: -64.5,-0.5 @@ -73610,21 +73635,6 @@ entities: - pos: -18.5,38.5 parent: 2 type: Transform - - uid: 22561 - components: - - pos: -64.5,25.5 - parent: 2 - type: Transform - - uid: 22645 - components: - - pos: -66.5,13.5 - parent: 2 - type: Transform - - uid: 22646 - components: - - pos: -64.5,13.5 - parent: 2 - type: Transform - uid: 22647 components: - pos: -65.5,13.5 @@ -73635,11 +73645,6 @@ entities: - pos: -65.5,25.5 parent: 2 type: Transform - - uid: 22649 - components: - - pos: -66.5,25.5 - parent: 2 - type: Transform - uid: 22793 components: - pos: -21.5,20.5 @@ -73796,6 +73801,11 @@ entities: - pos: -67.5,29.5 parent: 2 type: Transform + - uid: 22858 + components: + - pos: -55.5,-2.5 + parent: 2 + type: Transform - proto: ClosetRadiationSuitFilled entities: - uid: 15954 @@ -73915,6 +73925,20 @@ entities: type: Transform - nextSound: 2881.0322935 type: EmitSoundOnCollide + - uid: 17657 + components: + - pos: -41.1644,22.532766 + parent: 2 + type: Transform + - nextSound: 2846.2044684 + type: EmitSoundOnCollide + - uid: 22645 + components: + - pos: -45.452427,19.747799 + parent: 2 + type: Transform + - nextSound: 3158.3703919 + type: EmitSoundOnCollide - proto: ClothingEyesGlassesMeson entities: - uid: 15724 @@ -74062,6 +74086,18 @@ entities: type: Transform - nextSound: 1191.3873661 type: EmitSoundOnCollide +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 22646 + components: + - desc: Неопрятная маркировка, налепленная на дешёвые изолированные перчатки + name: '"Изолированные перчатки"' + type: MetaData + - pos: -41.490627,18.541739 + parent: 2 + type: Transform + - nextSound: 3024.3372676 + type: EmitSoundOnCollide - proto: ClothingHeadHatAnimalMonkey entities: - uid: 19738 @@ -74130,7 +74166,7 @@ entities: - pos: 66.66877,17.470192 parent: 2 type: Transform - - nextSound: 6402.490663 + - nextSound: 6402.4906629 type: EmitSoundOnCollide - proto: ClothingHeadHatHetmanHat entities: @@ -74173,6 +74209,15 @@ entities: type: Transform - nextSound: 1698.6589846 type: EmitSoundOnCollide +- proto: ClothingHeadHatPirate + entities: + - uid: 22842 + components: + - pos: -42.59895,5.22506 + parent: 2 + type: Transform + - nextSound: 3336.2997415 + type: EmitSoundOnCollide - proto: ClothingHeadHatRichard entities: - uid: 19727 @@ -74262,33 +74307,19 @@ entities: type: EmitSoundOnCollide - proto: ClothingHeadHelmetEVA entities: - - uid: 15648 + - uid: 17591 components: - - pos: -5.35046,20.36478 + - pos: -13.328185,18.415031 parent: 2 type: Transform - - nextSound: 3389.1642381 + - nextSound: 1441.9104469 type: EmitSoundOnCollide - - uid: 15649 + - uid: 17648 components: - - pos: -4.402543,20.354357 + - pos: -13.609435,18.55054 parent: 2 type: Transform - - nextSound: 3391.1482912 - type: EmitSoundOnCollide - - uid: 15790 - components: - - pos: -5.673376,20.57326 - parent: 2 - type: Transform - - nextSound: 3388.4302058 - type: EmitSoundOnCollide - - uid: 15791 - components: - - pos: -4.683793,20.57326 - parent: 2 - type: Transform - - nextSound: 3390.2221591 + - nextSound: 1441.1398819 type: EmitSoundOnCollide - uid: 21774 components: @@ -74388,20 +74419,6 @@ entities: type: Transform - nextSound: 3052.8710466 type: EmitSoundOnCollide - - uid: 21788 - components: - - pos: -13.669819,18.717888 - parent: 2 - type: Transform - - nextSound: 3053.7545332 - type: EmitSoundOnCollide - - uid: 21789 - components: - - pos: -13.440652,18.582376 - parent: 2 - type: Transform - - nextSound: 3054.1383406 - type: EmitSoundOnCollide - proto: ClothingHeadHelmetFire entities: - uid: 15578 @@ -74780,33 +74797,19 @@ entities: type: EmitSoundOnCollide - proto: ClothingOuterHardsuitEVA entities: - - uid: 15650 + - uid: 17593 components: - - pos: -5.41296,20.531563 + - pos: -13.73517,18.836214 parent: 2 type: Transform - - nextSound: 3363.6867971 + - nextSound: 1453.6104577 type: EmitSoundOnCollide - - uid: 15652 + - uid: 17646 components: - - pos: -4.75671,20.719193 + - pos: -13.401837,18.72155 parent: 2 type: Transform - - nextSound: 3365.5140181 - type: EmitSoundOnCollide - - uid: 15792 - components: - - pos: -4.433793,20.531563 - parent: 2 - type: Transform - - nextSound: 3366.4018466 - type: EmitSoundOnCollide - - uid: 15793 - components: - - pos: -5.72546,20.719193 - parent: 2 - type: Transform - - nextSound: 3362.7366401 + - nextSound: 1454.5939042 type: EmitSoundOnCollide - uid: 17968 components: @@ -74815,13 +74818,6 @@ entities: type: Transform - nextSound: 3025.4764292 type: EmitSoundOnCollide - - uid: 17969 - components: - - pos: -13.398986,18.582376 - parent: 2 - type: Transform - - nextSound: 3028.7379132 - type: EmitSoundOnCollide - uid: 17970 components: - pos: -13.763569,20.792244 @@ -74843,13 +74839,6 @@ entities: type: Transform - nextSound: 3024.2379858 type: EmitSoundOnCollide - - uid: 17973 - components: - - pos: -13.753152,18.842974 - parent: 2 - type: Transform - - nextSound: 3027.5653911 - type: EmitSoundOnCollide - uid: 21764 components: - pos: -12.763569,18.863821 @@ -75163,12 +75152,12 @@ entities: type: Transform - nextSound: 6927.6934587 type: EmitSoundOnCollide - - uid: 17928 + - uid: 22804 components: - - pos: -7.5207167,24.47019 + - pos: -8.3891325,24.573786 parent: 2 type: Transform - - nextSound: 6928.5945179 + - nextSound: 734.774191 type: EmitSoundOnCollide - proto: ClothingShoesBootsPerformer entities: @@ -75493,6 +75482,12 @@ entities: pos: -31.5,49.5 parent: 2 type: Transform + - uid: 22860 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-2.5 + parent: 2 + type: Transform - proto: CommonLootSpawner entities: - uid: 17099 @@ -76546,6 +76541,16 @@ entities: - pos: -6.5,-47.5 parent: 2 type: Transform + - uid: 22825 + components: + - pos: 10.5,-34.5 + parent: 2 + type: Transform + - uid: 22826 + components: + - pos: 8.5,-34.5 + parent: 2 + type: Transform - proto: CrateEngineeringSolar entities: - uid: 15684 @@ -76637,11 +76642,6 @@ entities: type: EntityStorage - proto: CrateGenericSteel entities: - - uid: 15710 - components: - - pos: -20.5,-44.5 - parent: 2 - type: Transform - uid: 15794 components: - pos: 35.5,20.5 @@ -76722,6 +76722,27 @@ entities: - pos: 31.5,-15.5 parent: 2 type: Transform +- proto: CrateMaterialGlass + entities: + - uid: 19951 + components: + - pos: -32.5,24.5 + parent: 2 + type: Transform +- proto: CrateMaterialPlasteel + entities: + - uid: 19950 + components: + - pos: -32.5,23.5 + parent: 2 + type: Transform +- proto: CrateMaterialSteel + entities: + - uid: 17652 + components: + - pos: -20.5,-44.5 + parent: 2 + type: Transform - proto: CrateMedicalSupplies entities: - uid: 20539 @@ -76736,6 +76757,13 @@ entities: - pos: 55.5,-30.5 parent: 2 type: Transform +- proto: CrateNPCCow + entities: + - uid: 19957 + components: + - pos: 20.5,-5.5 + parent: 2 + type: Transform - proto: CrateNPCGoose entities: - uid: 7835 @@ -76908,6 +76936,13 @@ entities: type: Transform - nextSound: 2856.6209186 type: EmitSoundOnCollide + - uid: 22841 + components: + - pos: -42.5052,5.9026136 + parent: 2 + type: Transform + - nextSound: 3328.3193287 + type: EmitSoundOnCollide - proto: CrayonMime entities: - uid: 22174 @@ -76978,23 +77013,32 @@ entities: type: MeleeWeapon - nextSound: 4780.8955755 type: EmitSoundOnCollide - - uid: 17646 + - uid: 17653 components: - - pos: -45.5183,18.462692 + - pos: -45.518562,18.873976 parent: 2 type: Transform - - nextAttack: 4009.8637894 + - nextAttack: 2836.5879966 type: MeleeWeapon - - nextSound: 4010.0637894 + - nextSound: 2836.7879966 type: EmitSoundOnCollide - - uid: 17651 + - uid: 17662 components: - - pos: -41.36573,18.631506 + - pos: -45.518562,18.561258 parent: 2 type: Transform - - nextAttack: 4044.8297825 + - nextAttack: 2830.8549873 type: MeleeWeapon - - nextSound: 4045.0297825 + - nextSound: 2831.0549873 + type: EmitSoundOnCollide + - uid: 17749 + components: + - pos: -45.518562,18.717617 + parent: 2 + type: Transform + - nextAttack: 2813.949418 + type: MeleeWeapon + - nextSound: 2814.149418 type: EmitSoundOnCollide - uid: 17797 components: @@ -77059,44 +77103,17 @@ entities: type: MeleeWeapon - nextSound: 3206.9705404 type: EmitSoundOnCollide - - uid: 22634 - components: - - pos: -45.49103,18.629555 - parent: 2 - type: Transform - - nextAttack: 3648.7683742 - type: MeleeWeapon - - nextSound: 3648.9683742 - type: EmitSoundOnCollide - - uid: 22635 - components: - - pos: -45.480614,18.796337 - parent: 2 - type: Transform - - nextAttack: 3649.3520148 - type: MeleeWeapon - - nextSound: 3649.5520148 - type: EmitSoundOnCollide - - uid: 22637 - components: - - pos: -45.489258,18.96859 - parent: 2 - type: Transform - - nextAttack: 3669.4850505 - type: MeleeWeapon - - nextSound: 3669.6850505 - type: EmitSoundOnCollide - - uid: 22638 - components: - - pos: -45.499672,19.145796 - parent: 2 - type: Transform - - nextAttack: 3673.3765439 - type: MeleeWeapon - - nextSound: 3673.5765439 - type: EmitSoundOnCollide - proto: CrowbarRed entities: + - uid: 17651 + components: + - pos: -7.6034718,24.722143 + parent: 2 + type: Transform + - nextAttack: 836.9799997 + type: MeleeWeapon + - nextSound: 837.1799997 + type: EmitSoundOnCollide - uid: 18238 components: - pos: -8.460647,-6.588551 @@ -77158,7 +77175,7 @@ entities: type: Transform - nextAttack: 8290.4743175 type: MeleeWeapon - - nextSound: 8290.6743175 + - nextSound: 8290.6743174 type: EmitSoundOnCollide - uid: 22800 components: @@ -77169,6 +77186,42 @@ entities: type: MeleeWeapon - nextSound: 8291.582519 type: EmitSoundOnCollide + - uid: 22801 + components: + - pos: -7.5409718,24.492817 + parent: 2 + type: Transform + - nextAttack: 837.9051745 + type: MeleeWeapon + - nextSound: 838.1051745 + type: EmitSoundOnCollide + - uid: 22802 + components: + - pos: -7.3951387,24.41985 + parent: 2 + type: Transform + - nextAttack: 837.5404364 + type: MeleeWeapon + - nextSound: 837.7404364 + type: EmitSoundOnCollide + - uid: 22803 + components: + - pos: -7.5097218,24.826382 + parent: 2 + type: Transform + - nextAttack: 835.7750877 + type: MeleeWeapon + - nextSound: 835.9750877 + type: EmitSoundOnCollide + - uid: 22805 + components: + - pos: -7.4888887,24.628328 + parent: 2 + type: Transform + - nextAttack: 836.5628371 + type: MeleeWeapon + - nextSound: 836.7628371 + type: EmitSoundOnCollide - proto: CryoPod entities: - uid: 20573 @@ -82640,6 +82693,80 @@ entities: type: Transform - nextSound: 1258.7856874 type: EmitSoundOnCollide +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 17581 + components: + - pos: -5.6451263,20.489267 + parent: 2 + type: Transform + - nextAttack: 803.3962173 + type: MeleeWeapon + - nextSound: 803.5962173 + type: EmitSoundOnCollide + - uid: 17583 + components: + - pos: -4.6555433,20.510117 + parent: 2 + type: Transform + - nextAttack: 801.1108423 + type: MeleeWeapon + - nextSound: 801.3108423 + type: EmitSoundOnCollide + - uid: 17587 + components: + - pos: -5.3222103,20.541388 + parent: 2 + type: Transform + - nextAttack: 802.5297248 + type: MeleeWeapon + - nextSound: 802.7297248 + type: EmitSoundOnCollide + - uid: 17589 + components: + - pos: -4.3638763,20.583084 + parent: 2 + type: Transform + - nextAttack: 800.1964895 + type: MeleeWeapon + - nextSound: 800.3964895 + type: EmitSoundOnCollide + - uid: 17598 + components: + - pos: -5.4680433,20.364182 + parent: 2 + type: Transform + - nextAttack: 803.0128302 + type: MeleeWeapon + - nextSound: 803.2128302 + type: EmitSoundOnCollide + - uid: 17599 + components: + - pos: -4.2909603,20.46842 + parent: 2 + type: Transform + - nextAttack: 799.6295659 + type: MeleeWeapon + - nextSound: 799.8295659 + type: EmitSoundOnCollide + - uid: 17644 + components: + - pos: -4.4055433,20.343334 + parent: 2 + type: Transform + - nextAttack: 800.5794553 + type: MeleeWeapon + - nextSound: 800.7794553 + type: EmitSoundOnCollide + - uid: 17645 + components: + - pos: -5.1972103,20.312061 + parent: 2 + type: Transform + - nextAttack: 801.9961228 + type: MeleeWeapon + - nextSound: 802.1961228 + type: EmitSoundOnCollide - proto: Dresser entities: - uid: 17750 @@ -82715,33 +82842,6 @@ entities: type: MeleeWeapon - nextSound: 847.929876 type: EmitSoundOnCollide - - uid: 22616 - components: - - pos: -43.66545,10.409399 - parent: 2 - type: Transform - - nextAttack: 3261.6830041 - type: MeleeWeapon - - nextSound: 3261.8830041 - type: EmitSoundOnCollide - - uid: 22617 - components: - - pos: -42.217533,10.669996 - parent: 2 - type: Transform - - nextAttack: 3263.6613822 - type: MeleeWeapon - - nextSound: 3263.8613822 - type: EmitSoundOnCollide - - uid: 22618 - components: - - pos: -39.29045,9.690149 - parent: 2 - type: Transform - - nextAttack: 3265.9635916 - type: MeleeWeapon - - nextSound: 3266.1635916 - type: EmitSoundOnCollide - proto: DrinkFlask entities: - uid: 18258 @@ -82851,6 +82951,15 @@ entities: type: MeleeWeapon - nextSound: 4475.69669 type: EmitSoundOnCollide + - uid: 19952 + components: + - pos: -40.713535,10.666395 + parent: 2 + type: Transform + - nextAttack: 3206.0203704 + type: MeleeWeapon + - nextSound: 3206.2203704 + type: EmitSoundOnCollide - uid: 22673 components: - pos: -60.282974,15.575066 @@ -82882,6 +82991,17 @@ entities: type: MeleeWeapon - nextSound: 811.3040839 type: EmitSoundOnCollide +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 22829 + components: + - pos: -45.321793,20.514378 + parent: 2 + type: Transform + - nextAttack: 2874.8879139 + type: MeleeWeapon + - nextSound: 2875.0879139 + type: EmitSoundOnCollide - proto: DrinkShaker entities: - uid: 18638 @@ -82944,6 +83064,26 @@ entities: type: MeleeWeapon - nextSound: 2954.1307971 type: EmitSoundOnCollide +- proto: DrinkWaterCup + entities: + - uid: 17969 + components: + - pos: -39.213535,10.249439 + parent: 2 + type: Transform + - nextAttack: 3262.68862 + type: MeleeWeapon + - nextSound: 3262.88862 + type: EmitSoundOnCollide + - uid: 22838 + components: + - pos: -39.390617,10.311981 + parent: 2 + type: Transform + - nextAttack: 3263.6187606 + type: MeleeWeapon + - nextSound: 3263.8187606 + type: EmitSoundOnCollide - proto: Dropper entities: - uid: 18678 @@ -83366,6 +83506,13 @@ entities: type: Transform - nextSound: 4576.4413318 type: EmitSoundOnCollide + - uid: 22861 + components: + - pos: -13.6399975,36.43874 + parent: 2 + type: Transform + - nextSound: 3980.0003359 + type: EmitSoundOnCollide - proto: Emitter entities: - uid: 15727 @@ -87477,20 +87624,6 @@ entities: type: Transform - nextSound: 6984.9660858 type: EmitSoundOnCollide - - uid: 17653 - components: - - pos: -41.49073,18.568962 - parent: 2 - type: Transform - - nextSound: 4059.4407096 - type: EmitSoundOnCollide - - uid: 17654 - components: - - pos: -40.511562,18.527267 - parent: 2 - type: Transform - - nextSound: 4060.263637 - type: EmitSoundOnCollide - uid: 17839 components: - pos: -23.615343,13.495466 @@ -87587,6 +87720,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 19515 + components: + - pos: 21.5,-5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures - uid: 21521 components: - pos: 9.5,-16.5 @@ -87685,12 +87825,12 @@ entities: type: EmitSoundOnCollide - proto: FoodBoxDonkpocket entities: - - uid: 18534 + - uid: 18619 components: - - pos: 22.452932,-2.1880786 + - pos: 24.51686,-0.47571433 parent: 2 type: Transform - - nextSound: 997.0733969 + - nextSound: 2452.4062403 type: EmitSoundOnCollide - uid: 20226 components: @@ -87793,6 +87933,31 @@ entities: type: Transform - nextSound: 4531.0450063 type: EmitSoundOnCollide +- proto: FoodCakeBirthday + entities: + - uid: 17973 + components: + - pos: -41.7552,10.697666 + parent: 2 + type: Transform + - nextSound: 3219.13526 + type: EmitSoundOnCollide +- proto: FoodCakeBirthdaySlice + entities: + - uid: 19292 + components: + - pos: -43.526035,9.999266 + parent: 2 + type: Transform + - nextSound: 3228.9864562 + type: EmitSoundOnCollide + - uid: 19956 + components: + - pos: -39.494785,9.936722 + parent: 2 + type: Transform + - nextSound: 3231.4541152 + type: EmitSoundOnCollide - proto: FoodCakeChocolateSlice entities: - uid: 22672 @@ -87843,22 +88008,6 @@ entities: type: Transform - nextSound: 960.9676674 type: EmitSoundOnCollide -- proto: FoodDonutPlain - entities: - - uid: 19644 - components: - - pos: -41.26962,10.826355 - parent: 2 - type: Transform - - nextSound: 3247.7470993 - type: EmitSoundOnCollide - - uid: 19786 - components: - - pos: -39.655033,10.576181 - parent: 2 - type: Transform - - nextSound: 3246.6882722 - type: EmitSoundOnCollide - proto: FoodMealNachosCuban entities: - uid: 22590 @@ -87907,6 +88056,22 @@ entities: type: Transform - nextSound: 5413.6081955 type: EmitSoundOnCollide +- proto: FoodPlateSmallPlastic + entities: + - uid: 22839 + components: + - pos: -42.744785,10.749786 + parent: 2 + type: Transform + - nextSound: 3275.7200384 + type: EmitSoundOnCollide + - uid: 22840 + components: + - pos: -42.619785,10.645548 + parent: 2 + type: Transform + - nextSound: 3276.2534329 + type: EmitSoundOnCollide - proto: FoodPlateSmallTrash entities: - uid: 21667 @@ -87943,13 +88108,6 @@ entities: type: EmitSoundOnCollide - proto: FoodSnackChocolate entities: - - uid: 19643 - components: - - pos: -43.467533,9.742268 - parent: 2 - type: Transform - - nextSound: 3255.9535247 - type: EmitSoundOnCollide - uid: 22674 components: - pos: -57.595474,15.658457 @@ -87989,6 +88147,24 @@ entities: type: Transform - nextSound: 296.6990195 type: EmitSoundOnCollide +- proto: ForkPlastic + entities: + - uid: 17928 + components: + - rot: 1.5707963267948966 rad + pos: -39.5052,10.624699 + parent: 2 + type: Transform + - nextSound: 3240.7036323 + type: EmitSoundOnCollide + - uid: 19417 + components: + - rot: -1.5707963267948966 rad + pos: -43.515617,10.291134 + parent: 2 + type: Transform + - nextSound: 3238.5037073 + type: EmitSoundOnCollide - proto: FrenchHornInstrument entities: - uid: 22696 @@ -88000,12 +88176,12 @@ entities: type: EmitSoundOnCollide - proto: GasAnalyzer entities: - - uid: 16719 + - uid: 17663 components: - - pos: -26.39437,23.459192 + - pos: -38.405125,22.661703 parent: 2 type: Transform - - nextSound: 5812.5915795 + - nextSound: 2852.8044541 type: EmitSoundOnCollide - uid: 17885 components: @@ -88014,6 +88190,13 @@ entities: type: Transform - nextSound: 6548.8283058 type: EmitSoundOnCollide + - uid: 20430 + components: + - pos: -26.361338,23.729593 + parent: 2 + type: Transform + - nextSound: 1541.4769627 + type: EmitSoundOnCollide - proto: GasCanisterBrokenBase entities: - uid: 20560 @@ -121288,15 +121471,6 @@ entities: type: PowerCellDraw - nextSound: 1923.776029 type: EmitSoundOnCollide - - uid: 16723 - components: - - pos: -26.561037,23.365377 - parent: 2 - type: Transform - - nextUpdate: 5809.3031251 - type: PowerCellDraw - - nextSound: 5809.5031251 - type: EmitSoundOnCollide - uid: 18986 components: - pos: -16.584557,38.810566 @@ -121306,6 +121480,15 @@ entities: type: PowerCellDraw - nextSound: 3535.7696058 type: EmitSoundOnCollide + - uid: 19418 + components: + - pos: -26.62933,23.530228 + parent: 2 + type: Transform + - nextUpdate: 1547.9416465 + type: PowerCellDraw + - nextSound: 1548.1416465 + type: EmitSoundOnCollide - uid: 21094 components: - pos: -13.399265,-36.431213 @@ -121353,13 +121536,6 @@ entities: type: EmitSoundOnCollide - proto: HandLabeler entities: - - uid: 17598 - components: - - pos: -42.559223,4.695457 - parent: 2 - type: Transform - - nextSound: 3566.3845018 - type: EmitSoundOnCollide - uid: 17863 components: - pos: -19.45426,18.525394 @@ -121430,6 +121606,13 @@ entities: type: Transform - nextSound: 6013.0928892 type: EmitSoundOnCollide + - uid: 22843 + components: + - pos: -42.4427,4.630897 + parent: 2 + type: Transform + - nextSound: 3342.2532003 + type: EmitSoundOnCollide - proto: HandTeleporter entities: - uid: 18240 @@ -122042,32 +122225,23 @@ entities: - type: InsideEntityStorage - proto: KitchenKnife entities: - - uid: 20879 + - uid: 22827 components: - - pos: 23.385712,0.59879017 + - pos: 22.256443,-2.2060826 parent: 2 type: Transform - - nextAttack: 425.8051301 + - nextAttack: 2443.5560351 type: MeleeWeapon - - nextSound: 426.00513 + - nextSound: 2443.7560351 type: EmitSoundOnCollide - - uid: 21940 + - uid: 22828 components: - - pos: 23.594044,0.56751823 + - pos: 22.42311,-2.27905 parent: 2 type: Transform - - nextAttack: 427.1376525 + - nextAttack: 2443.8900905 type: MeleeWeapon - - nextSound: 427.3376525 - type: EmitSoundOnCollide - - uid: 21941 - components: - - pos: 23.489878,0.57794213 - parent: 2 - type: Transform - - nextAttack: 426.4306723 - type: MeleeWeapon - - nextSound: 426.6306723 + - nextSound: 2444.0900905 type: EmitSoundOnCollide - proto: KitchenMicrowave entities: @@ -122137,6 +122311,13 @@ entities: type: Transform - proto: KnifePlastic entities: + - uid: 18620 + components: + - pos: -41.057285,10.57258 + parent: 2 + type: Transform + - nextSound: 3197.5206342 + type: EmitSoundOnCollide - uid: 22224 components: - flags: InContainer @@ -122351,7 +122532,7 @@ entities: type: Transform - nextAttack: 4111.9978801 type: MeleeWeapon - - nextSound: 4112.1978801 + - nextSound: 4112.19788 type: EmitSoundOnCollide - proto: Lighter entities: @@ -122530,6 +122711,21 @@ entities: - pos: -10.5,34.5 parent: 2 type: Transform + - uid: 22849 + components: + - pos: -12.5,36.5 + parent: 2 + type: Transform + - uid: 22850 + components: + - pos: -11.5,36.5 + parent: 2 + type: Transform + - uid: 22851 + components: + - pos: -10.5,36.5 + parent: 2 + type: Transform - proto: LockerFreezer entities: - uid: 15555 @@ -123099,6 +123295,28 @@ entities: - links: - 11547 type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 19643 + components: + - pos: 57.5,-9.5 + parent: 2 + type: Transform + - uid: 19644 + components: + - pos: 56.5,-17.5 + parent: 2 + type: Transform + - uid: 19770 + components: + - pos: 55.5,-9.5 + parent: 2 + type: Transform + - uid: 22815 + components: + - pos: 61.5,-17.5 + parent: 2 + type: Transform - proto: MachineTraversalDistorter entities: - uid: 10181 @@ -123488,23 +123706,29 @@ entities: - pos: 48.5,-10.5 parent: 2 type: Transform -- proto: MedicalScanner +- proto: MedicalScannerMachineCircuitboard entities: - - uid: 20281 + - uid: 22812 components: - - pos: 56.5,-17.5 + - pos: -31.118387,26.501308 parent: 2 type: Transform - - uid: 20282 + - nextSound: 1126.0765358 + type: EmitSoundOnCollide + - uid: 22813 components: - - pos: 61.5,-17.5 + - pos: -31.055887,26.699364 parent: 2 type: Transform - - uid: 20431 + - nextSound: 1126.5118634 + type: EmitSoundOnCollide + - uid: 22814 components: - - pos: 55.5,-9.5 + - pos: -31.26422,26.605549 parent: 2 type: Transform + - nextSound: 1127.4954778 + type: EmitSoundOnCollide - proto: MedicalTechFab entities: - uid: 20561 @@ -123725,9 +123949,9 @@ entities: type: EmitSoundOnCollide - proto: Mirror entities: - - uid: 18276 + - uid: 19786 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 type: Transform @@ -123912,6 +124136,11 @@ entities: - pos: 69.5,-47.5 parent: 2 type: Transform + - uid: 22856 + components: + - pos: -56.5,-0.5 + parent: 2 + type: Transform - proto: Multitool entities: - uid: 16073 @@ -123935,6 +124164,15 @@ entities: type: Transform - nextSound: 3943.323283 type: EmitSoundOnCollide + - uid: 17654 + components: + - pos: -40.41771,18.62513 + parent: 2 + type: Transform + - lastUseAttempt: 3004.1994958 + type: NetworkConfigurator + - nextSound: 3004.3994958 + type: EmitSoundOnCollide - uid: 19988 components: - pos: 75.43203,-17.178019 @@ -124240,6 +124478,16 @@ entities: - pos: 69.5,-13.5 parent: 2 type: Transform + - uid: 19947 + components: + - pos: -38.5,4.5 + parent: 2 + type: Transform + - uid: 19948 + components: + - pos: -38.5,3.5 + parent: 2 + type: Transform - uid: 20575 components: - pos: 42.5,-23.5 @@ -125142,6 +125390,34 @@ entities: type: Transform - nextSound: 7196.6373747 type: EmitSoundOnCollide + - uid: 22807 + components: + - pos: -19.083168,-11.335545 + parent: 2 + type: Transform + - nextSound: 907.4313696 + type: EmitSoundOnCollide + - uid: 22808 + components: + - pos: -19.135252,-11.356394 + parent: 2 + type: Transform + - nextSound: 907.0946454 + type: EmitSoundOnCollide + - uid: 22809 + components: + - pos: -19.041502,-11.325121 + parent: 2 + type: Transform + - nextSound: 907.6394213 + type: EmitSoundOnCollide +- proto: PaperBin5 + entities: + - uid: 19420 + components: + - pos: -42.5,6.5 + parent: 2 + type: Transform - proto: PaperWrittenAMEScribbles entities: - uid: 15921 @@ -125282,6 +125558,13 @@ entities: type: Transform - nextSound: 5121.6767885 type: EmitSoundOnCollide + - uid: 22817 + components: + - pos: -26.543829,-32.413506 + parent: 2 + type: Transform + - nextSound: 1648.3359197 + type: EmitSoundOnCollide - proto: Pen entities: - uid: 15947 @@ -125468,6 +125751,28 @@ entities: type: Transform - nextSound: 7203.2208702 type: EmitSoundOnCollide + - uid: 22810 + components: + - pos: -19.224785,-11.510956 + parent: 2 + type: Transform + - nextSound: 916.1282361 + type: EmitSoundOnCollide + - uid: 22844 + components: + - pos: -42.359367,5.4856577 + parent: 2 + type: Transform + - nextSound: 3357.6337242 + type: EmitSoundOnCollide + - uid: 22854 + components: + - rot: -1.5707963267948966 rad + pos: -14.3795595,46.488747 + parent: 2 + type: Transform + - nextSound: 3755.7011543 + type: EmitSoundOnCollide - proto: PersonalAI entities: - uid: 19592 @@ -125798,41 +126103,21 @@ entities: - pos: 11.5,39.5 parent: 2 type: Transform - - uid: 17587 - components: - - pos: -38.5,6.5 - parent: 2 - type: Transform - uid: 17588 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 17589 - components: - - pos: -38.5,5.5 - parent: 2 - type: Transform - uid: 17590 components: - pos: -37.5,5.5 parent: 2 type: Transform - - uid: 17591 - components: - - pos: -38.5,4.5 - parent: 2 - type: Transform - uid: 17592 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 17593 - components: - - pos: -38.5,3.5 - parent: 2 - type: Transform - uid: 17594 components: - pos: -37.5,3.5 @@ -126266,13 +126551,6 @@ entities: - pos: 76.5,-26.5 parent: 2 type: Transform -- proto: PottedPlant5 - entities: - - uid: 17599 - components: - - pos: -40.5,7.5 - parent: 2 - type: Transform - proto: PottedPlant7 entities: - uid: 17399 @@ -126280,6 +126558,21 @@ entities: - pos: -51.5,7.5 parent: 2 type: Transform + - uid: 19949 + components: + - pos: -42.5,7.5 + parent: 2 + type: Transform + - uid: 22867 + components: + - pos: -64.5,13.5 + parent: 2 + type: Transform + - uid: 22868 + components: + - pos: -64.5,25.5 + parent: 2 + type: Transform - proto: PottedPlant8 entities: - uid: 17181 @@ -126317,6 +126610,13 @@ entities: type: Transform - nextSound: 6330.8450555 type: EmitSoundOnCollide + - uid: 22834 + components: + - pos: -43.553127,22.481974 + parent: 2 + type: Transform + - nextSound: 3105.9704556 + type: EmitSoundOnCollide - proto: PowerCellMedium entities: - uid: 16448 @@ -130437,6 +130737,11 @@ entities: pos: -29.5,38.5 parent: 2 type: Transform + - uid: 22824 + components: + - pos: 23.5,-20.5 + parent: 2 + type: Transform - proto: Protolathe entities: - uid: 20339 @@ -130864,16 +131169,6 @@ entities: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 16638 - components: - - pos: -32.5,24.5 - parent: 2 - type: Transform - - uid: 16639 - components: - - pos: -32.5,23.5 - parent: 2 - type: Transform - uid: 16640 components: - pos: -30.5,29.5 @@ -131396,6 +131691,13 @@ entities: type: Transform - nextSound: 7228.2517243 type: EmitSoundOnCollide + - uid: 18276 + components: + - pos: -40.82396,18.62513 + parent: 2 + type: Transform + - nextSound: 3017.8374208 + type: EmitSoundOnCollide - uid: 18677 components: - pos: -59.314224,15.533369 @@ -131601,6 +131903,91 @@ entities: - pos: 88.5,-20.5 parent: 2 type: Transform +- proto: RandomPosterLegit + entities: + - uid: 22561 + components: + - rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 2 + type: Transform + - uid: 22616 + components: + - rot: 3.141592653589793 rad + pos: -18.5,39.5 + parent: 2 + type: Transform + - uid: 22617 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 2 + type: Transform + - uid: 22618 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-44.5 + parent: 2 + type: Transform + - uid: 22623 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 2 + type: Transform + - uid: 22624 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-25.5 + parent: 2 + type: Transform + - uid: 22625 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-21.5 + parent: 2 + type: Transform + - uid: 22635 + components: + - rot: 3.141592653589793 rad + pos: -55.5,4.5 + parent: 2 + type: Transform + - uid: 22637 + components: + - rot: 3.141592653589793 rad + pos: 19.5,42.5 + parent: 2 + type: Transform + - uid: 22638 + components: + - rot: 3.141592653589793 rad + pos: 12.5,35.5 + parent: 2 + type: Transform + - uid: 22639 + components: + - rot: 3.141592653589793 rad + pos: -33.5,20.5 + parent: 2 + type: Transform + - uid: 22643 + components: + - rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + type: Transform + - uid: 22649 + components: + - rot: 3.141592653589793 rad + pos: 17.5,47.5 + parent: 2 + type: Transform + - uid: 22845 + components: + - pos: -39.5,6.5 + parent: 2 + type: Transform - proto: RandomSoap entities: - uid: 22656 @@ -131777,8 +132164,28 @@ entities: - pos: 39.5,-4.5 parent: 2 type: Transform + - uid: 22857 + components: + - pos: -56.5,1.5 + parent: 2 + type: Transform - proto: RandomVending entities: + - uid: 21788 + components: + - pos: 54.5,6.5 + parent: 2 + type: Transform + - uid: 21789 + components: + - pos: -38.5,12.5 + parent: 2 + type: Transform + - uid: 21918 + components: + - pos: -42.5,12.5 + parent: 2 + type: Transform - uid: 22004 components: - pos: 31.5,5.5 @@ -136570,7 +136977,7 @@ entities: - pos: 43.732708,14.590622 parent: 2 type: Transform - - nextAttack: 5258.4368712 + - nextAttack: 5258.4368711 type: MeleeWeapon - nextSound: 5258.6368712 type: EmitSoundOnCollide @@ -136748,6 +137155,16 @@ entities: type: EmitSoundOnCollide - proto: Screwdriver entities: + - uid: 15791 + components: + - rot: 1.5707963267948966 rad + pos: -45.696793,20.44141 + parent: 2 + type: Transform + - nextAttack: 2871.6818461 + type: MeleeWeapon + - nextSound: 2871.8818461 + type: EmitSoundOnCollide - uid: 15916 components: - pos: 1.6404712,-55.831287 @@ -136757,14 +137174,14 @@ entities: type: MeleeWeapon - nextSound: 1456.1791828 type: EmitSoundOnCollide - - uid: 17662 + - uid: 22836 components: - - pos: -39.440983,22.698181 + - pos: -39.59479,22.700876 parent: 2 type: Transform - - nextAttack: 4171.8514797 + - nextAttack: 3132.3991978 type: MeleeWeapon - - nextSound: 4172.0514796 + - nextSound: 3132.5991978 type: EmitSoundOnCollide - proto: SecurityTechFab entities: @@ -136796,16 +137213,6 @@ entities: type: MeleeWeapon - nextSound: 183.244289 type: EmitSoundOnCollide - - uid: 17749 - components: - - rot: -1.5707963267948966 rad - pos: -55.854843,8.579489 - parent: 2 - type: Transform - - nextAttack: 279.0985893 - type: MeleeWeapon - - nextSound: 279.2985893 - type: EmitSoundOnCollide - uid: 22041 components: - pos: -59.719563,5.9373517 @@ -136815,6 +137222,15 @@ entities: type: MeleeWeapon - nextSound: 184.3154172 type: EmitSoundOnCollide + - uid: 22830 + components: + - pos: -56.344902,8.713604 + parent: 2 + type: Transform + - nextAttack: 2668.2524431 + type: MeleeWeapon + - nextSound: 2668.4524431 + type: EmitSoundOnCollide - proto: SheetGlass entities: - uid: 15763 @@ -136981,6 +137397,13 @@ entities: type: Transform - nextSound: 3090.7357785 type: EmitSoundOnCollide + - uid: 16638 + components: + - pos: -24.314663,-32.496895 + parent: 2 + type: Transform + - nextSound: 1647.2322706 + type: EmitSoundOnCollide - uid: 22186 components: - pos: -7.7113285,-47.273014 @@ -137060,6 +137483,13 @@ entities: type: Transform - nextSound: 3094.1377484 type: EmitSoundOnCollide + - uid: 20282 + components: + - pos: -24.356329,-33.54971 + parent: 2 + type: Transform + - nextSound: 1646.1759232 + type: EmitSoundOnCollide - uid: 20334 components: - pos: 59.25488,0.66803074 @@ -140078,6 +140508,30 @@ entities: pos: 80.5,-26.5 parent: 2 type: Transform + - uid: 22869 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,25.5 + parent: 2 + type: Transform + - uid: 22870 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,13.5 + parent: 2 + type: Transform + - uid: 22871 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,13.5 + parent: 2 + type: Transform + - uid: 22872 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,25.5 + parent: 2 + type: Transform - proto: SignSurgery entities: - uid: 20604 @@ -140592,6 +141046,13 @@ entities: type: EmitSoundOnCollide - proto: SoapHomemade entities: + - uid: 19953 + components: + - pos: -56.896984,8.109016 + parent: 2 + type: Transform + - nextSound: 2682.6387959 + type: EmitSoundOnCollide - uid: 22765 components: - pos: -56.34985,9.597067 @@ -140601,27 +141062,6 @@ entities: type: EmitSoundOnCollide - proto: SoapNT entities: - - uid: 18619 - components: - - pos: -43.5327,22.736574 - parent: 2 - type: Transform - - nextSound: 3658.6665295 - type: EmitSoundOnCollide - - uid: 18620 - components: - - pos: -43.543114,22.548943 - parent: 2 - type: Transform - - nextSound: 3658.2023336 - type: EmitSoundOnCollide - - uid: 22639 - components: - - pos: -43.05512,10.662506 - parent: 2 - type: Transform - - nextSound: 3681.3522332 - type: EmitSoundOnCollide - uid: 22640 components: - pos: -44.636547,0.77403355 @@ -141964,6 +142404,30 @@ entities: - pos: 58.5,-22.5 parent: 2 type: Transform +- proto: SpawnMobButterfly + entities: + - uid: 22818 + components: + - pos: 29.5,31.5 + parent: 2 + type: Transform + - uid: 22819 + components: + - pos: 32.5,31.5 + parent: 2 + type: Transform + - uid: 22820 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 + type: Transform + - uid: 22821 + components: + - rot: 3.141592653589793 rad + pos: 31.5,28.5 + parent: 2 + type: Transform - proto: SpawnMobCatRuntime entities: - uid: 20658 @@ -141985,13 +142449,6 @@ entities: - pos: 10.5,4.5 parent: 2 type: Transform -- proto: SpawnMobCow - entities: - - uid: 19292 - components: - - pos: 20.5,-5.5 - parent: 2 - type: Transform - proto: SpawnMobDrone entities: - uid: 21730 @@ -143358,6 +143815,12 @@ entities: type: Transform - proto: SurveillanceCameraGeneral entities: + - uid: 20207 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-0.5 + parent: 2 + type: Transform - uid: 21857 components: - rot: 3.141592653589793 rad @@ -143788,12 +144251,6 @@ entities: - pos: 62.5,6.5 parent: 2 type: Transform - - uid: 21918 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-0.5 - parent: 2 - type: Transform - proto: SurveillanceCameraSupply entities: - uid: 21877 @@ -144191,6 +144648,12 @@ entities: pos: 68.5,-46.5 parent: 2 type: Transform + - uid: 16251 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,46.5 + parent: 2 + type: Transform - uid: 16297 components: - pos: 34.5,14.5 @@ -145276,12 +145739,6 @@ entities: - pos: 58.5,-23.5 parent: 2 type: Transform - - uid: 20207 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - type: Transform - uid: 20236 components: - pos: 62.5,-42.5 @@ -145989,6 +146446,12 @@ entities: - pos: 42.5,-27.5 parent: 2 type: Transform + - uid: 22852 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,50.5 + parent: 2 + type: Transform - proto: TablePlasmaGlass entities: - uid: 19867 @@ -147084,6 +147547,17 @@ entities: pos: -35.5,38.5 parent: 2 type: Transform +- proto: ToolboxArtistic + entities: + - uid: 22833 + components: + - pos: -36.51971,20.17039 + parent: 2 + type: Transform + - nextAttack: 2914.7326192 + type: MeleeWeapon + - nextSound: 2914.9326192 + type: EmitSoundOnCollide - proto: ToolboxElectricalFilled entities: - uid: 15853 @@ -147095,33 +147569,6 @@ entities: type: MeleeWeapon - nextSound: 1209.966354 type: EmitSoundOnCollide - - uid: 16672 - components: - - pos: -32.51212,23.543737 - parent: 2 - type: Transform - - nextAttack: 5371.9179867 - type: MeleeWeapon - - nextSound: 5372.1179867 - type: EmitSoundOnCollide - - uid: 16673 - components: - - pos: -32.51212,24.554857 - parent: 2 - type: Transform - - nextAttack: 5371.320348 - type: MeleeWeapon - - nextSound: 5371.520348 - type: EmitSoundOnCollide - - uid: 17645 - components: - - pos: -45.47663,19.54678 - parent: 2 - type: Transform - - nextAttack: 4000.6947233 - type: MeleeWeapon - - nextSound: 4000.8947233 - type: EmitSoundOnCollide - uid: 17976 components: - pos: -7.423604,26.505974 @@ -147167,6 +147614,15 @@ entities: type: MeleeWeapon - nextSound: 541.5772411 type: EmitSoundOnCollide + - uid: 19419 + components: + - pos: -26.470493,23.226679 + parent: 2 + type: Transform + - nextAttack: 1533.2894698 + type: MeleeWeapon + - nextSound: 1533.4894698 + type: EmitSoundOnCollide - uid: 20115 components: - pos: 83.53089,-15.41683 @@ -147176,6 +147632,15 @@ entities: type: MeleeWeapon - nextSound: 6328.1088689 type: EmitSoundOnCollide + - uid: 20431 + components: + - pos: -36.51729,20.691584 + parent: 2 + type: Transform + - nextAttack: 2954.9041354 + type: MeleeWeapon + - nextSound: 2955.1041354 + type: EmitSoundOnCollide - uid: 21103 components: - pos: -4.488163,-36.34536 @@ -147185,6 +147650,15 @@ entities: type: MeleeWeapon - nextSound: 6198.3970829 type: EmitSoundOnCollide + - uid: 22816 + components: + - pos: -26.55675,23.0081 + parent: 2 + type: Transform + - nextAttack: 1518.8865188 + type: MeleeWeapon + - nextSound: 1519.0865188 + type: EmitSoundOnCollide - proto: ToolboxEmergencyFilled entities: - uid: 15239 @@ -147205,6 +147679,15 @@ entities: type: MeleeWeapon - nextSound: 9024.7347592 type: EmitSoundOnCollide + - uid: 22831 + components: + - pos: -43.34479,22.773844 + parent: 2 + type: Transform + - nextAttack: 3111.2540727 + type: MeleeWeapon + - nextSound: 3111.4540727 + type: EmitSoundOnCollide - proto: ToolboxGoldFilled entities: - uid: 15562 @@ -147236,15 +147719,6 @@ entities: type: MeleeWeapon - nextSound: 1331.79922 type: EmitSoundOnCollide - - uid: 17644 - components: - - pos: -36.41413,20.464085 - parent: 2 - type: Transform - - nextAttack: 3998.0968265 - type: MeleeWeapon - - nextSound: 3998.2968265 - type: EmitSoundOnCollide - uid: 17977 components: - pos: -5.465271,26.578941 @@ -147344,6 +147818,15 @@ entities: type: MeleeWeapon - nextSound: 880.2190467 type: EmitSoundOnCollide + - uid: 20879 + components: + - pos: -45.491714,19.314034 + parent: 2 + type: Transform + - nextAttack: 3177.2535283 + type: MeleeWeapon + - nextSound: 3177.4535283 + type: EmitSoundOnCollide - uid: 21101 components: - pos: -7.571496,-36.376633 @@ -147353,6 +147836,15 @@ entities: type: MeleeWeapon - nextSound: 6192.8818304 type: EmitSoundOnCollide + - uid: 22832 + components: + - pos: -36.51729,19.63877 + parent: 2 + type: Transform + - nextAttack: 2970.203992 + type: MeleeWeapon + - nextSound: 2970.403992 + type: EmitSoundOnCollide - proto: ToyAi entities: - uid: 18370 @@ -147936,6 +148428,15 @@ entities: - pos: 47.5,-42.5 parent: 2 type: Transform +- proto: VehicleKeyATV + entities: + - uid: 22806 + components: + - pos: -19.64065,-11.436081 + parent: 2 + type: Transform + - nextSound: 893.5128782 + type: EmitSoundOnCollide - proto: VehicleKeyJanicart entities: - uid: 15527 @@ -148067,15 +148568,6 @@ entities: type: Transform - nextEmpEject: 5211.6509091 type: VendingMachine - - uid: 19770 - components: - - flags: SessionSpecific - type: MetaData - - pos: 54.5,6.5 - parent: 2 - type: Transform - - nextEmpEject: 2040.7507362 - type: VendingMachine - uid: 20953 components: - flags: SessionSpecific @@ -148105,6 +148597,15 @@ entities: type: Transform - nextEmpEject: 1808.1462519 type: VendingMachine + - uid: 20281 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,0.5 + parent: 2 + type: Transform + - nextEmpEject: 2456.6234043 + type: VendingMachine - proto: VendingMachineCoffee entities: - uid: 11971 @@ -148261,17 +148762,6 @@ entities: type: Transform - nextEmpEject: 4739.7134194 type: VendingMachine -- proto: VendingMachineDiscount - entities: - - uid: 17581 - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,12.5 - parent: 2 - type: Transform - - nextEmpEject: 3455.2516941 - type: VendingMachine - proto: VendingMachineDonut entities: - uid: 18644 @@ -148607,15 +149097,6 @@ entities: type: Transform - nextEmpEject: 1350.0138425 type: VendingMachine - - uid: 17583 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,12.5 - parent: 2 - type: Transform - - nextEmpEject: 3469.527353 - type: VendingMachine - uid: 17777 components: - flags: SessionSpecific @@ -148883,6 +149364,14 @@ entities: type: Transform - nextSound: 5475.1774237 type: EmitSoundOnCollide +- proto: WallmountTelescreen + entities: + - uid: 22634 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,33.5 + parent: 2 + type: Transform - proto: WallmountTelevision entities: - uid: 17585 @@ -148926,11 +149415,6 @@ entities: pos: -77.5,10.5 parent: 2 type: Transform - - uid: 8219 - components: - - pos: 23.5,-22.5 - parent: 2 - type: Transform - uid: 10182 components: - rot: 3.141592653589793 rad @@ -159344,6 +159828,11 @@ entities: - pos: -28.5,40.5 parent: 2 type: Transform + - uid: 22822 + components: + - pos: 24.5,-20.5 + parent: 2 + type: Transform - proto: WallSolid entities: - uid: 11074 @@ -167614,14 +168103,14 @@ entities: type: MeleeWeapon - nextSound: 1645.4994298 type: EmitSoundOnCollide - - uid: 17657 + - uid: 22835 components: - - pos: -36.469894,19.673897 + - pos: -38.93854,22.596638 parent: 2 type: Transform - - nextAttack: 4085.6018345 + - nextAttack: 3128.6870657 type: MeleeWeapon - - nextSound: 4085.8018345 + - nextSound: 3128.8870657 type: EmitSoundOnCollide - proto: WelderIndustrial entities: @@ -168149,17 +168638,6 @@ entities: pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 19954 - components: - - pos: 68.5,-18.5 - parent: 2 - type: Transform - - uid: 19957 - components: - - rot: 3.141592653589793 rad - pos: 68.5,-18.5 - parent: 2 - type: Transform - uid: 20028 components: - pos: 73.5,-25.5 @@ -168367,6 +168845,18 @@ entities: type: Transform - proto: WindowDirectional entities: + - uid: 16673 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,25.5 + parent: 2 + type: Transform + - uid: 17175 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,25.5 + parent: 2 + type: Transform - uid: 17439 components: - pos: -35.5,-4.5 @@ -168417,11 +168907,28 @@ entities: pos: -55.5,9.5 parent: 2 type: Transform + - uid: 18534 + components: + - pos: -41.5,18.5 + parent: 2 + type: Transform - uid: 19793 components: - pos: 51.5,5.5 parent: 2 type: Transform + - uid: 19954 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 + type: Transform + - uid: 19955 + components: + - rot: 3.141592653589793 rad + pos: -41.5,18.5 + parent: 2 + type: Transform - uid: 20103 components: - pos: 83.5,-17.5 @@ -168466,6 +168973,12 @@ entities: pos: 14.5,3.5 parent: 2 type: Transform + - uid: 21941 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 + type: Transform - uid: 22039 components: - rot: -1.5707963267948966 rad @@ -168538,6 +169051,42 @@ entities: pos: 69.5,6.5 parent: 2 type: Transform + - uid: 22651 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,13.5 + parent: 2 + type: Transform + - uid: 22862 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,13.5 + parent: 2 + type: Transform + - uid: 22863 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + type: Transform + - uid: 22864 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,25.5 + parent: 2 + type: Transform + - uid: 22865 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,25.5 + parent: 2 + type: Transform + - uid: 22866 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,13.5 + parent: 2 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 11216 @@ -169636,67 +170185,6 @@ entities: pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 19945 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-15.5 - parent: 2 - type: Transform - - uid: 19946 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-16.5 - parent: 2 - type: Transform - - uid: 19947 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-17.5 - parent: 2 - type: Transform - - uid: 19948 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-18.5 - parent: 2 - type: Transform - - uid: 19949 - components: - - pos: 71.5,-18.5 - parent: 2 - type: Transform - - uid: 19950 - components: - - pos: 70.5,-18.5 - parent: 2 - type: Transform - - uid: 19951 - components: - - pos: 69.5,-18.5 - parent: 2 - type: Transform - - uid: 19952 - components: - - pos: 66.5,-18.5 - parent: 2 - type: Transform - - uid: 19953 - components: - - pos: 67.5,-18.5 - parent: 2 - type: Transform - - uid: 19955 - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-18.5 - parent: 2 - type: Transform - - uid: 19956 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 2 - type: Transform - uid: 19958 components: - rot: -1.5707963267948966 rad @@ -169980,15 +170468,6 @@ entities: type: MeleeWeapon - nextSound: 3939.1253862 type: EmitSoundOnCollide - - uid: 17663 - components: - - pos: -39.48265,22.468853 - parent: 2 - type: Transform - - nextAttack: 4176.7461591 - type: MeleeWeapon - - nextSound: 4176.9461591 - type: EmitSoundOnCollide - uid: 17886 components: - pos: -18.640215,10.468033 @@ -170007,6 +170486,15 @@ entities: type: MeleeWeapon - nextSound: 6505.4607002 type: EmitSoundOnCollide + - uid: 22837 + components: + - pos: -39.57396,22.461126 + parent: 2 + type: Transform + - nextAttack: 3134.6538868 + type: MeleeWeapon + - nextSound: 3134.8538868 + type: EmitSoundOnCollide - proto: WoodDoor entities: - uid: 16505 @@ -170039,16 +170527,6 @@ entities: type: MeleeWeapon - nextSound: 4211.6942815 type: EmitSoundOnCollide - - uid: 17652 - components: - - rot: -1.5707963267948966 rad - pos: -40.574062,18.631506 - parent: 2 - type: Transform - - nextAttack: 4052.4154495 - type: MeleeWeapon - - nextSound: 4052.6154495 - type: EmitSoundOnCollide - uid: 19300 components: - pos: -9.48127,67.425476 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index bf726f2e53..2c5d6e04ae 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -50,7 +50,7 @@ icon: { sprite: /Textures/Objects/Weapons/Melee/e_sword.rsi, state: icon } productEntity: EnergySword cost: - Telecrystal: 8 + Telecrystal: 10 categories: - UplinkWeapons @@ -1393,7 +1393,7 @@ description: uplink-mobcat-microbomb-desc icon: { sprite: /Textures/Mobs/Pets/cat.rsi, state: syndicat } productEntity: MobCatSyndy - cost: + cost: Telecrystal: 10 categories: - UplinkMisc diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index d369d03996..dd58bcabc9 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -157,7 +157,7 @@ - type: Store preset: StorePresetUplink balance: - Telecrystal: 0 + Telecrystal: 10 - type: UserInterface interfaces: - key: enum.StoreUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 9040dba931..94c55d46b1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -233,8 +233,8 @@ - type: IncreaseDamageOnWield damage: types: - Slash: 15 - Heat: 13 + Slash: 7.5 + Heat: 7.5 - type: MeleeWeapon attackRate: 1 - type: Reflect diff --git a/Resources/Prototypes/World/worldgen_default.yml b/Resources/Prototypes/World/worldgen_default.yml index 9d2481ef71..86c69bc445 100644 --- a/Resources/Prototypes/World/worldgen_default.yml +++ b/Resources/Prototypes/World/worldgen_default.yml @@ -6,8 +6,8 @@ biomes: - AsteroidsFallback - Failsafe - - CombatRimAsteroidsStandard - - CombatRimAsteroidsWastes + #- CombatRimAsteroidsStandard + #- CombatRimAsteroidsWastes - CombatRimAsteroidsEmptiness - type: StructurePlacement structures: